OK...here's a way that
may fix your fopen errors. It fixed mine. May not work on Windblows:
OPEN: tomstalkerbot.php
FIND:
PHP Code:
$rss = preg_replace("#^(.*)\[/quote\]#ies","",$message);
$ff = fopen($ttb_alicelocation . "?input=" . urlencode($rss),"r");
$response = fread($ff,10000);
fclose($ff);
REPLACE IT WITH:
PHP Code:
$rss = preg_replace("#^(.*)\[/quote\]#ies","",$message);
shell_exec("fetch -o /tmp/alice \"$ttb_alicelocation input=".urlencode($rss)."\"");
$ff = fopen("/tmp/alice","r");
$response = fread($ff,10000);
fclose($ff);
You can replace /tmp/alice with whatever you like...