Forum Moderators: coopster
Question:
What INI file do they mean?
Can i create a new INI file in the root?
What's the name of this INI file?
Is it easier to modify the fsockopen declaration? if so how is that to be done?
This is on a dedicated server.
<added> line 1260: $connection = fsockopen($host , 80, &$errorNumber, &$errorString, 10);
</added>
Thank you very much.
Note that the errno and errstr arguments will always be passed by reference.
a function call as such will cause the error
$var = myfunction($var1,$var2,&$var3);
given that passing by reference is a no go. So we do it the other way around
function myfunction($var1,$var2,&$var3) {
and then the function call
$var = myfunction($var1,$var2,$var3);
I do it every once in a while and it takes a minute to remember what I have done wrong. Just thought I would mention it though it doesn't specifically apply here. ;)