phpmyadmin + white page

pppplus

Verified User
Joined
Dec 19, 2008
Messages
523
Hi

strange problem today. I've a white page in PhpMyAdmin.

I have it on 1 table, when I want to edit one value (I click on the pen button).
Same thing for each value I want edit in this table.

No problem with other tables. I do not find anything in logs, I don't know where I can search.

Same thing in different computers, and in FF and Opera.

Thanks for your suggestions.
 
white page in html source also
I have only the left column, and the frame is empty

url of the frame is : /phpmyadmin/tbl_row_action.php
 
Last edited:
You get white page only when there is something wrong with the PHP tags, which version of phpmyadmin do you use? Possible your PHP version is not compatible with phpmyadmin.

PHP and phpmyadmin version?
 
PHPMyAdmin Version: 3.3.9
PHP 5.2.17 (cli)

if there is a php error, how can I print it ?

Thanks for your help
 
Do you have display_errors = on in your php.ini?

If not I always use:

ini_set('display_errors','on');

in the php file.
 
Did you check /var/log/httpd/error_log

You might also try reinstalling phpmyadmin with custombuild

cd /usr/local/directadmin/custombuild
./build update
./build clean
./build phpmyadmin d

If your not getting any errors it is going to be hard to determine what is wrong.
 
Hello pppplus,

Do you use any apache's mods for security? Anything like a mod_security? Check apache's error logs, in some cases they can cause such problems, when configured a bit wrong.
 
I remove suhosin to solve another problem in prestashop and zencart.
And problem disappears in phpmyadmin...

So, something wrong with suhosin, but I don't know what.
Thanks for your help
 
Back
Top