Pont Posted May 9, 2009 Report Share Posted May 9, 2009 Hi! I tried the PDO-fix found here (using php-5.2.9-2-Win32.zip, couldn't find the -1 version of that file) and it worked perfectly. However - when I open phpMyAdmin and try to view a database the server crashes. If I restore the libmysql.dll to the older version phpMyAdmin works as it should, but PDO doesn't. Is there something more I need to do to make it work? /Pont Quote Link to comment Share on other sites More sharing options...
Ric Posted May 9, 2009 Report Share Posted May 9, 2009 Hi PontThis looks like incompatible binaries, revert your set-up so you get PDO working but have the phpMyAdmin crashing. To prvent phpMyAdmin crashing edit file UniServer\udrive\home\admin\www\phpMyAdmin\config.inc.php Locate this line (66):$cfg['Servers'][$i]['extension'] = 'mysqli'; // The php MySQL extension to use ('mysql' or 'mysqli')Change to:$cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli') All the bestRic Quote Link to comment Share on other sites More sharing options...
Pont Posted May 10, 2009 Author Report Share Posted May 10, 2009 Thanks, Ric! Works perfectly. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.