Jump to content

PHP stat() issue


Sonzai

Recommended Posts

Hello,

 

  I have a program in which I make a call to stat() simply to determine whether a file exists, which it initially doesn't - the next time the program is called it will exist but I am still getting a warning - I am passing an absolute path to state and the files in questions are pipes to a C process. Any suggestions/ideas? additionally, everything exists in the same directory

 

Thank you for any and all help!

Link to comment
Share on other sites

php calling script

    define("logdir", "/var/www/html/");

    $toDebugger = logdir."OUT".$_SESSION['uniqueID'];
    $fromDebugger = logdir."IN".$_SESSION['uniqueID'];    
        $fileCheckO = stat($toDebugger);                      
        $fileCheckI = stat($fromDebugger);                    
           
           if(($fileCheckO == 0)&&($fileCheckI == 0))         
              { system("./interfaceg ".$_SESSION['uniqueID']." > output.txt &");
                usleep(10000);                                
              }                                               
           else                                               
              {                                               
                if(($fdtoDbg = fopen($toDebugger, 'w')) == 0 )
                 print "not opened"; //put error here         
                                                              
                if(($fdfrmDbg = fopen($fromDebugger, 'r')) == 0)
                 print "not opened"; //put error here         
                                                              
                                                              
              }  

Warning: stat(): stat failed for /var/www/html/OUTstandinID in /var/www/html/compile_debug.php on line 36

Warning: stat(): stat failed for /var/www/html/INstandinID in /var/www/html/compile_debug.php on line 37

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.