I am getting this error when I run botloader.php
Quote:
Warning: fopen("subs.inc", "w+") - Permission denied in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 85
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
Warning: fwrite(): supplied argument is not a valid File-Handle resource in /home/dfrsqu2/public_html/forums/alice/src/admin/botloaderfuncs.php on line 77
DONE LOADING
Inserted 41126 categories into database
|
Can anyone help?
Here are lines 70 - 90 in botloaderfunctions.php
Quote:
return $newtesta;
}
function addtosubs($string){
global $fp;
fwrite($fp,$string);
}
function createsubfile(){
global $fp;
$fp = fopen ("subs.inc", "w+");
}
function findwordid($word,$parent){
|