
Originally Posted by
garrettroyce
I don't think ini_set() works on free hosting. At any rate, you can't connect to servers over port 80 (the default http port) unless they are whitelisted. So attempting to open any stream by any method to a remote http server will timeout because the server. In anticipation of your question, we cannot open ports for individual users nor whitelist servers based on your user's needs.
Sorry to be so discouraging. Hopefully you can think of another way of doing this or refining what your service does. However, paid hosting does allow you to do this if you are convinced this is what you want to do.
Hi garrettroyce,
Thanks for your reply. I plan to purchase paid hosting in the near future, please see my intro post for an explaination of my circumstances.
As for the ini_set(), it appears to work in this context:
Code:
<?php
session_save_path("/home/floyd/public_html/tmp");
ini_set("session.gc_maxlifetime", 86400);
ini_set("session.gc_probability", 1);
ini_set("session.gc_divisor",200);
ini_set("session.bug_compat_warn", off);
?>
I'll see what else I can do on the scan function.
Thanks again and I'll be sure to click to your rep...