Well my photohosting has been going great, and just out of the blue, never touched a thing...I get this funky error message:
Click Here: http://www.jerzeedevil.com/gallery/upload.php
Does anyone know what could have caused this?
Warning: is_dir(): Stat failed for ./albums/edit/. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 432
Warning: filemtime(): Stat failed for ./albums/edit/. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 440
Warning: unlink(./albums/edit/.): Permission denied in /home/labella/public_html/gallery/upload.php on line 453
Warning: is_dir(): Stat failed for ./albums/edit/.. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 432
Warning: filemtime(): Stat failed for ./albums/edit/.. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 440
Warning: unlink(./albums/edit/..): Permission denied in /home/labella/public_html/gallery/upload.php on line 453
I got this message:
QuoteYou don't have permission to perform this operation.
But maybe that's because you don't allow unregistered visitors to upload. What is the message that you see?
Here it is, thanks for replying so fast, I got people PMing me on my forum complaining, lol.
Warning: is_dir(): Stat failed for ./albums/edit/. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 432
Warning: filemtime(): Stat failed for ./albums/edit/. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 440
Warning: unlink(./albums/edit/.): Permission denied in /home/labella/public_html/gallery/upload.php on line 453
Warning: is_dir(): Stat failed for ./albums/edit/.. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 432
Warning: filemtime(): Stat failed for ./albums/edit/.. (errno=13 - Permission denied) in /home/labella/public_html/gallery/upload.php on line 440
Warning: unlink(./albums/edit/..): Permission denied in /home/labella/public_html/gallery/upload.php on line 453
did you search this board for the error message "Warning: is_dir(): Stat failed for ./albums/edit/. (errno=13 - Permission denied)"? This has been discussed in detail already.
Joachim
chmod edit folder to 777
open up include/picmgmt.inc.php
find this code
@mkdir($CONFIG['fullpath'].'edit',0666);
Replace with this
//@mkdir($CONFIG['fullpath'].'edit',0666);
@mkdir($CONFIG['fullpath'].'edit',0777);
This should solve your problem.
Quote from: tanfwc on November 07, 2004, 01:45:42 PM
chmod edit folder to 777
open up include/picmgmt.inc.php
find this code
@mkdir($CONFIG['fullpath'].'edit',0666);
Replace with this
//@mkdir($CONFIG['fullpath'].'edit',0666);
@mkdir($CONFIG['fullpath'].'edit',0777);
This should solve your problem.
Weird, Did the fix but I cant access or Chmod the edit folder, any suggestions? o.oU
If it exists, but you cannot chmod or delete it, try renaming it, and then create a new edit folder with the correct permissions.
If you can't dothat, ask your host to chown the file to you.