wat is fout?
Edwin
21/06/2005 17:10:00hallo,
ik had iets gemaakt voor mijn site.
een reclame systeem.
het is de bedoeling dat de site een include ging uitvoeren naar: reclame.txt
Dat is gelukt.
maar ik had er ook een admin systeem bij gemaakt.
en daar zit een fout in.
ik weet niet wat :s
ik heb reclame.txt gechmod naar 777
en toch wil hij niet.
hier is het script:
Kunnen jullie me vertellen wat er fout is.
hij geeft aan:
Warning: fopen(): Access to remote files/urls using the URL fopen wrapper ist not allowed due to security reasons. in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 8
Warning: fopen(http://baed.ba.funpic.org/esdert/reclame.txt): failed to open stream: no suitable wrapper could be found in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 8
Warning: fputs(): supplied argument is not a valid stream resource in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 9
Reclame verzonden!
Thnx
ik had iets gemaakt voor mijn site.
een reclame systeem.
het is de bedoeling dat de site een include ging uitvoeren naar: reclame.txt
Dat is gelukt.
maar ik had er ook een admin systeem bij gemaakt.
en daar zit een fout in.
ik weet niet wat :s
ik heb reclame.txt gechmod naar 777
en toch wil hij niet.
hier is het script:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?php
if (!$_POST['submit'])
{
echo "<form action=index.php method=post>Reclame Bericht: <input type=text name=btext><input type=submit name=submit value='Zend'></form><a href='javascript:history.back()'>Terug</a>";
}
else
{
$file = fopen ("http://baed.ba.funpic.org/esdert/reclame.txt","w");
fputs ($file,$_POST['btext']);
echo "Reclame verzonden!"
?>
if (!$_POST['submit'])
{
echo "<form action=index.php method=post>Reclame Bericht: <input type=text name=btext><input type=submit name=submit value='Zend'></form><a href='javascript:history.back()'>Terug</a>";
}
else
{
$file = fopen ("http://baed.ba.funpic.org/esdert/reclame.txt","w");
fputs ($file,$_POST['btext']);
echo "Reclame verzonden!"
?>
Kunnen jullie me vertellen wat er fout is.
hij geeft aan:
Warning: fopen(): Access to remote files/urls using the URL fopen wrapper ist not allowed due to security reasons. in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 8
Warning: fopen(http://baed.ba.funpic.org/esdert/reclame.txt): failed to open stream: no suitable wrapper could be found in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 8
Warning: fputs(): supplied argument is not a valid stream resource in /usr/export/www/hosting/baed/esdert/adminreclame/index.php on line 9
Reclame verzonden!
Thnx
Gewijzigd op 21/06/2005 17:11:00 door Edwin