I am getting similar error. I tried uninstalling whole mobile joomla, removing tables in the db, and I am still getting the error when importing the database.
I read a forum, where guys identified it as a problem of mysql version, but I have to use mysql 5.x so not applicable for me.
Can anyone help please?
SQL query: Documentation
--
-- Database: `rt2`
--
DELIMITER $$--
-- Procedures
--
CREATE DEFINER = `root`@`localhost` PROCEDURE `j25_TeraWurfl_FallBackDevices` ( current_fall_back VARCHAR( 64 ) ) BEGIN WHILE current_fall_back != 'root' DO SELECT capabilities
FROM j25_TeraWurflMerge
WHERE deviceID = current_fall_back;
SELECT fall_back
FROM j25_TeraWurflMerge
WHERE deviceID = current_fall_back
INTO current_fall_back;
END WHILE;
END$$
MySQL said: Documentation
#1227 - Access denied; you need the SUPER privilege for this operation
[ Back ]