Hallo,
Mijn webhost heeft recent de PHP versie verhoogd naar 5.3.x . Sindsdien heb ik problemen met een klein stukje script. Is er iemand die weet hoe ik dit moet aanpassen om het weer "correct" te krijgen?
<?php
$fp=fopen("counter/mario_adventure_counter.txt","r+");
flock($fp,1);
$count=fgets($fp,6);
$count+=1;
rewind($fp);
fputs($fp,$count);
flock($fp,3);
fclose($fp);
header ("location: http://www.okimpala.com/patches/Mario_Adventure.zip");
exit();
?>
En de foutmeldingen die ik nu krijg:
Warning: fopen(counter/mario_adventure_counter.txt) [function.fopen]: failed to open stream: Permission denied in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 2
Warning: flock() expects parameter 1 to be resource, boolean given in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 3
Warning: fgets(): supplied argument is not a valid stream resource in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 4
Warning: rewind(): supplied argument is not a valid stream resource in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 6
Warning: fputs(): supplied argument is not a valid stream resource in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 7
Warning: flock() expects parameter 1 to be resource, boolean given in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 8
Warning: fclose(): supplied argument is not a valid stream resource in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 9
Warning: Cannot modify header information - headers already sent by (output started at /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php:2) in /home/okimpa01/domains/okimpala.com/public_html/download/mario_adventure_download.php on line 10
Alvast bedankt voor de hulp!
1.502 views