PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Bugs From 1.0.0 (http://www.photopost.com/forum/bugs-1-0-0/)
-   -   Error replacing image (http://www.photopost.com/forum/bugs-1-0-0/117594-error-replacing-image.html)

rbl February 14th, 2005 10:38 PM

Error replacing image
 
Hi!
Whenever I replace an image using the new RC3 feature, I get the following error on top of the action successful page:
Warning: unlink(/home/... /files/7/4/): Is a directory in /fotoblog/editimage.php on line 93

Line 93 is: unlink($folderstring . '/' . $oldoriginalname);
The above path was edited and that userid (74) changes accordingly to the user's id.

I have set my config to discard original images, can that be it? Since there is no originalname it is trying to unlink the dir.

Also related, I have given some usergroups the ability to edit but not delete their images. I thought they would be able to use the replace feature but they get an error message about lack of permissions.

Brian February 15th, 2005 08:51 AM

Re: Error replacing image
 
The error message you're getting isn't creating any problems. It's just trying to delete the original size image as well, which of course isn't there. If you'll look in your editimage.php file for three instances of 'unlink' (all three will be in a row) and add a @ sign in front of them then that will take care of the error at the top of the screen.
For the permissions issue, try looking for this code:
Code:

Content visible to verified customers only.
Replace with this:
Code:

Content visible to verified customers only.
And that should take care of the problem.

rbl February 15th, 2005 03:27 PM

Re: Error replacing image
 
It did! Thanks Brian! =)


All times are GMT -5. The time now is 07:01 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97