Remark: The user name is NOT snl23019@% but snl23019 so where the @% is coming from....?Top Operating System
Name Total Percents
phpOpenTracker Error: Access denied for user: 'snl23019@%' to database 'snl23019'
Anyone?
Remark: The user name is NOT snl23019@% but snl23019 so where the @% is coming from....?Top Operating System
Name Total Percents
phpOpenTracker Error: Access denied for user: 'snl23019@%' to database 'snl23019'
Sorry, no help, but i have the same problem. I think it doesn't work after update to RC4DrubusCulubus wrote: phpOpenTracker Error: Access denied for user: 'xxx@%' to database 'xxx'
When I activatedDrubusCulubus wrote:phpOpenTracker Error: Access denied for user: 'XXX@YYY' to database 'ZZZ'
Code: Select all
$PHPOPENTRACKER_CONFIGURATION['debug_level'] = 2;
Code: Select all
OpenTracker Error: Table 'ZZZ.pot_temporary_table' doesn't exist
changed "CREATE TEMPORARY TABLE" to "CREATE TABLE"
WOW!!!Mironas wrote:It was problem with mysql TEMPORARY TABLEs creation on my hosting ("CREATE TEMPORARY TABLE ..." statement)
I changed "CREATE TEMPORARY TABLE" to "CREATE TABLE"
in:
/include/inc_ext/phpOpenTracker/phpOpenTracker/API/plugins/top.php line: 262
/include/inc_ext/phpOpenTracker/phpOpenTracker/API/plugins/search_engines.php line: 180
and it helped.
Kapiert? Also - in z.B. PhpMyAdmin dem user Rechte für CREATE TEMPORARY TABLES für diese Datenbank vergeben und alles funktioniert weider PRIMA !!!!!!!!Don't know if anybody already answered this problem, but it has to do with mySQL privileges. Basically, the database user does not have permission to create temporary tables. This can be solved by a GRANT statement, like:
GRANT CREATE TEMPORARY TABLES ON usr_web33_1.* TO web33@localhost; "