views:

43

answers:

1

Hello,

Does anyone know what this error means FATAL: Autorisation no longer valid.704

It happens when I try to write to this file, but the permissions are set to 755 and 0644 The temp folder is in the rootfolder of this subdomain.

if ($handle = fopen( 'temp/mylog.log'"a+") )
                {
    if( !fwrite( $handle, $json ) )
    {
    throw new Exception("can't write to ...");
    }
    fclose( $handle );
    }

thanks, Richard

+1  A: 
Adnan
Do you mean with full path, like so--- /home/woonbel/public_html/tsa.nl/temp/tsa.log
Richard
This stuff is for if you own the server, right?? I am on a shared host, but I can mail this to the hoster if it's neccasary?
Richard
I will try something to put the code in a new file, so that i am absolutely sure it's not coming from something else Right now it was setup in an excepction class. I just had my hoster on the phone and he also suggested the path I wrote abobe, but I still get the same error.
Richard
got it, it came from the exception class
Richard