MasterACE14 Posted July 6, 2008 Share Posted July 6, 2008 Hi guys, I'm Running Abyss Web Server X2, PHP 6.0.0 dev and MySQL 5 on windows XP. I use WizMySQLAdmin a database management program made in PHP. It works in PHP 5.2, But I am getting errors using it in PHP 6.0 here are the errors: Deprecated: Function mysql_list_tables() is deprecated in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 147 Deprecated: Function mysql_list_tables() is deprecated in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 260 Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 264 Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 264 and when I click on a table to open in WizMySQLAdmin windows comes up with this message/box: CGI / FastCGI has encountered a problem and needs to close. We are sorry for the inconvenience. if you were in the middle of something, the information you were working on might be lost. ... etc etc. Send Error Report, Don't Send, Debug etc etc... Any ideas? Link to comment https://forums.phpfreaks.com/topic/113397-solved-php-600-phpini-settings-problem-i-believe/ Share on other sites More sharing options...
MasterACE14 Posted July 6, 2008 Author Share Posted July 6, 2008 actually, i just tested it in PHP 5.2, and it shows only these errors. but still seems to work fine: Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 264 Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\Program Files\Abyss Web Server\htdocs\WizMySQLAdmin\wizmysqladmin.php on line 264 It doesn't show the Deprecated messages. Link to comment https://forums.phpfreaks.com/topic/113397-solved-php-600-phpini-settings-problem-i-believe/#findComment-582621 Share on other sites More sharing options...
trq Posted July 6, 2008 Share Posted July 6, 2008 It seems mysql_list_tables is depricated in php6, meaning you should no longer use it. As for your other warning, its likely you are attempting to use the result of a query without first checking it succeeded. Link to comment https://forums.phpfreaks.com/topic/113397-solved-php-600-phpini-settings-problem-i-believe/#findComment-582882 Share on other sites More sharing options...
PFMaBiSmAd Posted July 6, 2008 Share Posted July 6, 2008 FYI - For the deprecated error messages, in php6 E_STRICT is part of E_ALL. Link to comment https://forums.phpfreaks.com/topic/113397-solved-php-600-phpini-settings-problem-i-believe/#findComment-582887 Share on other sites More sharing options...
MasterACE14 Posted July 9, 2008 Author Share Posted July 9, 2008 ok, thanks. Link to comment https://forums.phpfreaks.com/topic/113397-solved-php-600-phpini-settings-problem-i-believe/#findComment-585198 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.