I get all the way to step three and I enter all my database information and then I click next and get the "page cannot be displayed" error.
I am missing a step somewhere, maybe in the database setup? Maybe I screwed up the PHP setup? I've already changed all the permissions on the folders and everything.
Any help is appreciated!
HTTP 500 Internal Server Error - Installation
Moderator: mkoch227
You both do have MySQL enabled in PHP, right (it's not with the default PHP 5.x installation)?
Try creating a new file in Notepad, name it "dbtest.php", and paste this inside:
Replace mysql_user with your mysql username, mysql_password with your password and my_dbname with your database name.
Upload to your server, open in browser and see what messages/errors you get.
Try creating a new file in Notepad, name it "dbtest.php", and paste this inside:
Code: Select all
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Not connected : ' . mysql_error());
}
$db_selected = mysql_select_db('foo', $link);
if (!$db_selected) {
die ('Can\'t use foo : ' . mysql_error());
}
echo "All working!";
?>
Upload to your server, open in browser and see what messages/errors you get.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Sorry for the Triple Post;
Search your server for libmysql.dll. Delete any instance of libmysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
Search your server for php_mysql.dll. Delete any instance of php_mysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
Open your C:\%WIN%\php.ini file in a text editor (Notepad will work).
Search for the line that looks like...
;extension=php_mysql.dll
Change this line to...
extension=php_mysql.dll
Save the modified php.ini file.
Copy C:\PHP\libmysql.dll and C:\PHP\ext\php_mysql.dll to the C:\%WIN%\system32 folder.
Restart IIS and test it out.
Try that, got mine working.
Search your server for libmysql.dll. Delete any instance of libmysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
Search your server for php_mysql.dll. Delete any instance of php_mysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
Open your C:\%WIN%\php.ini file in a text editor (Notepad will work).
Search for the line that looks like...
;extension=php_mysql.dll
Change this line to...
extension=php_mysql.dll
Save the modified php.ini file.
Copy C:\PHP\libmysql.dll and C:\PHP\ext\php_mysql.dll to the C:\%WIN%\system32 folder.
Restart IIS and test it out.
Try that, got mine working.