Phpmyadmin "logout" not working.

hostingdivine

Verified User
Joined
Jan 4, 2011
Messages
17
I am trying to logout from phpmyadmin for login in another database but cant logout.

Anyone facing problem like this? I cant transfer my sites frequently due to this problem.
 
It has nothing to do with directadmin. Worse case you can report it to phpmyadmin if you want.
 
Check that the phpmyadmin is updated on your directadmin server then.

cd /usr/local/directadmin/custombuild
./build update
./build clean
./build phpmyadmin
 
I am facing another problem with wordpress installation, plugin, themes uploading thru wordpress admin dashboard.
Code:
Unable to create directory /home/admin/domains/example.tld/public_html/wp-content/uploads/2011/01. Is its parent directory writable by the server?

how can I solve this?
 
I am trying to logout from phpmyadmin for login in another database but cant logout.

Anyone facing problem like this? I cant transfer my sites frequently due to this problem.

Switch to cookie auth type:

Code:
$cfg['Servers'][$i]['auth_type'] = 'cookie';

Don't forget to set blowfish_secret

Code:
/*
 * This is needed for cookie based authentication to encrypt password in
 * cookie
 */
$cfg['blowfish_secret'] = '; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

Changes should be done in config.inc.php. And this file should be updated after each phpmyadmin update.

Related feature request http://www.directadmin.com/forum/showthread.php?t=38979
 
Switch to cookie auth type:

Code:
$cfg['Servers'][$i]['auth_type'] = 'cookie';

Don't forget to set blowfish_secret

Code:
/*
 * This is needed for cookie based authentication to encrypt password in
 * cookie
 */
$cfg['blowfish_secret'] = '; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

Changes should be done in config.inc.php. And this file should be updated after each phpmyadmin update.

Related feature request http://www.directadmin.com/forum/showthread.php?t=38979

I change it on
Code:
/var/www/html/phpMyAdmin-3.3.9-all-languages/config.inc.php
Hope this is ok.
Works great. Thank you very much.

And now I am facing a problem with uploading plugin/theme thru wordpress dashboard. Showing error as below:
Unable to create directory /home/admin/domains/sexeducations.info/public_html/wp-content/uploads/2011/01. Is its parent directory writable by the server?
 
Back
Top