Hi-
I have a script that uses PHP and a MySQL database. Just learning PHP now makes it hard to decipher certain problems I'm having just getting it installed.
It's actually one of those where you call install.php from your browser and a few text boxes appear to get certain info.
I placed all of the .php files, the inc folder and all that in the WWW directory.
It asks for database host, name, username and password which get sent I guess over to it's variable counter-parts in the script. However, when I press install I get these errors...
QUOTE
Warning: fopen("inc/db.inc.php", "w+") - Permission denied in /home/www/mysite/organizer/install.php on line 404
Line 404-> $fp_db_file = fopen ($db_file, 'w+');
QUOTE
Warning: Supplied argument is not a valid File-Handle resource in /home/www/mysite/organizer/install.php on line 406
Kann die Datei nicht locken.
Line 406-> flock ($fp_db_file, 2) or die("Kann die Datei nicht locken.");
What could this mean, did something with PHP itself change with the new version? Thanks for any help!