Deletion of directory "results"
|
12-30-2014, 02:17 AM
Post: #1
|
|||
|
|||
Deletion of directory "results"
When I run a server only as a relay test server and the "results" directory is empty, then the "delete.php" script, not only removes the "relay" subdirectory and its contents but also removes the "results" directory. To prevent this I did the above change in the "delete.php":
Original code: // delete empty directories above this one do { $testPath = rtrim($testPath, "/\\"); $testPath = dirname($testPath); rmdir($testPath); } while( strpos($testPath, 'relay') ); changed to: // delete empty directories above this one while(strpos($testPath, 'relay')) { $testPath = rtrim($testPath, "/\\"); $testPath = dirname($testPath); rmdir($testPath); } |
|||
12-30-2014, 04:50 AM
Post: #2
|
|||
|
|||
RE: Deletion of directory "results"
Thanks, just pushed your change. Should be in the next release: https://github.com/WPO-Foundation/webpag...57847c01c7
|
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)