it was 2 weeks i got confused with this, so far my script run well before my hosting company disable many function at php.ini and it was so crap for me, all their reason for security and security
here my code
$url = "http://www.mydomain.com/get.php";
$postdata['memberid'] = $memberid;
$postdata['name'] = $name;
$postdata['name'] = $address;
$useragent= "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" ;
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt");
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS,$postdata);
$result= curl_exec ($ch);
curl_close ($ch);
so all my script not run because of this disable_function.
pack,escapeshellarg,escapeshellcmd,exec,shell_exec,system,ini_alter
i was try fopen, fputs and bla bla bla, but not run that cause of disable function
there is a way to post data to remote server with to many disable function like that?