PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Weird problem with uploading (http://www.photopost.com/forum/photopost-pro-installation-upgrades/109095-weird-problem-uploading.html)

Repec July 11th, 2004 03:40 PM

Weird problem with uploading
 
Everytime i click the upload photo link i get this error:

Warning: main(image-inc.php): failed to open stream: No such file or directory in /home/www/xxxxxx/forum/gallery/uploadphoto.php on line 17

Fatal error: main(): Failed opening required 'image-inc.php' (include_path='') in /home/www/xxxxxx/forum/gallery/uploadphoto.php on line 17

I checked all the files where i had to alter paths but couldnt find anything wrong. Also tried experimenting with files and folder permissions to no avail.
Hope someone can help me out.

/Repec
ps Im using the vb3 integrated setup.

Chuck S July 11th, 2004 04:03 PM

Well if you do indeed have an image-inc.php file uploaded in the same directory as uploadphoto.php I do not see why you would get this error as just about every single file in Photopost's distribution has this line

require "pp-inc.php";

So if the image-inc file exists I would think you should be getting an error trying to find pp-inc as well.

You can take this line in uploadphoto.php at the top of the file

require "image-inc.php";

change it to this and try

require "{$Globals['PP_PATH']}/image-inc.php";

Repec July 11th, 2004 06:24 PM

thx for the support, i already fixed it by adding the full path to the upload file.


All times are GMT -5. The time now is 09:54 PM.

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