Hi,
I'm a php newbie with a problem here🙂) I get the following error from my script:
Warning: fopen("http://...@www.nhpcorp.com/optin/admin/sendman.php","r+") - Operation timed out in /home/allen/nhpcorp.com/optin/admin/mansend.php on line 48
Warning: Supplied argument is not a valid File-Handle resource in /home/allen/nhpcorp.com/optin/admin/mansend.php on line 49
The lines in the script are:
$url = "http://$admin_user:$admin_pass@$script_path2/admin/sendman.php";
$fp = fopen("$url", "r+");
fclose($fp);
I've searched through the forums and it seems most of these problems are related to permissions. I've chmod'd them every which way and also chown'd them to the apache user(nobody). So far, no luck. If anyone has a suggestion I'd be greatful. Many thanks in advance.