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
https://forums.phpfreaks.com/topic/283132-php-stat-issue/
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
https://forums.phpfreaks.com/topic/283132-php-stat-issue/#findComment-1454691
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.