PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro How Do I...? (http://www.photopost.com/forum/photopost-pro-how-do-i/)
-   -   upload goes to blank screen (http://www.photopost.com/forum/photopost-pro-how-do-i/133310-upload-goes-blank-screen.html)

Silver_2000 September 15th, 2007 07:25 PM

upload goes to blank screen
 
some users upload pictures and the upload never finish it says preparing to process list them refreshes to end at a blank page with the following URL

http://www.prowltalk.com/gallery/bul...ll=no&dthumbs=

I can upload as admin and using a test user - I matched the user groups of the test user to the users that are having trouble, was able to duplicate the issue with that one user but havent yet fixed it

I updated the usergroups from VB and confirmed that all the groups the user is in are allowed to upload

Chuck S September 16th, 2007 11:29 AM

Common issue when using GD2. FTP to your site clear all directories under your photopost uploads directory and then apply the php ini_set line to give PHP more memory. Your server image processor GD2 which is part of PHP is chocking on the upload.

http://www.photopost.com/forum/showp...45&postcount=2

frapedopoulos November 6th, 2007 03:01 PM

Quote:

Originally Posted by Chuck S (Post 1204750)
Common issue when using GD2. FTP to your site clear all directories under your photopost uploads directory and then apply the php ini_set line to give PHP more memory. Your server image processor GD2 which is part of PHP is chocking on the upload.

http://www.photopost.com/forum/showp...45&postcount=2

Where do you put the php ini_set to? Or how I dont understand..

Chuck S November 6th, 2007 03:17 PM

The ini_set line goes near the top of pp-inc.php file as noted right under error_reporting line. Let me know if you need more help there.

frapedopoulos November 6th, 2007 03:37 PM

One does it matter if its a shared server? Im under a hosting plan..
Two is that all I put is this ini_set ?

Chuck S November 6th, 2007 03:39 PM

yes the edit is as noted. Does not matter if your on a hosting plan.

frapedopoulos November 6th, 2007 03:44 PM

Ok so I added the ini_set right under error reporting and I still get this error.. :confused: Lol dont get it...

Code:

Content visible to verified customers only.

Chuck S November 6th, 2007 05:08 PM

right but what are setting the memory to 40M okay so did you clear out your uploads folder like suggested and try uploading a file. How big is the file? You can try smaller files to see what size will cause issues and set your filesize limit in edit usergroups accordingly. You can also try making your max image height width in upload options a bit smaller.

frapedopoulos November 6th, 2007 06:14 PM

Quote:

Originally Posted by Chuck S (Post 1209723)
right but what are setting the memory to 40M okay so did you clear out your uploads folder like suggested and try uploading a file. How big is the file? You can try smaller files to see what size will cause issues and set your filesize limit in edit usergroups accordingly. You can also try making your max image height width in upload options a bit smaller.

You mean delete all the pictures in the upload file? Also I even attempted to upload a picture 100 x 100 pixels and it didnt work got the same error message.. Also another member which I asked just uploaded an image with no problem. Its seems to affect only me..

Chuck S November 7th, 2007 07:39 AM

Yes clear your uploads directory then try that one file.

frapedopoulos November 7th, 2007 08:04 AM

Ok thanks that seemed to work by deleting the files in the upload directory.

Chuck S November 7th, 2007 08:10 AM

No problem have a good day.

frapedopoulos December 5th, 2007 11:57 AM

Im having that same problem again.. It only happens when I upload pictures.

Chuck S December 5th, 2007 12:25 PM

The link I posted is in post 2 should help but here is another again common gd2 issue

http://www.photopost.com/forum/showp...66&postcount=6

Alfa1 December 13th, 2007 01:47 PM

I have got the same error.

My phpini file has a limit of 20MB.

Photopost admin settings:
Max allowable image width/height in pixels: 25000
Upload File Size Limit (kB) for administrators: 50000

In my upload folder there are many subfolders. (if i understand this correctly these contain the photo's in my image gallery)
New uploads are uploaded to the folder named '1', but this folder is empty. Please advise.

Chuck S December 13th, 2007 02:38 PM

You can increase your php memory to 32 or 40 if you wish. Now your photopost images are located in the data folder not uploads. You can clear your uploads folder. You can increase your memory in php as noted and I would suggest more reasonable max image height width statements in upload options like 800-1200. As far as max file allowed to upload that can be no more than your php max filesize which is usually 2mb which would be 2048 so 50000 is way too high.

Alfa1 December 25th, 2007 03:24 PM

I have changed the max height/width to 1200.
Is there a difference between the PHP limit and the limit in phpini?
If not, then the limit is 20MB, so then I should set the Upload File size limit for usergroups to 20.480. Is that correct?

Chuck S December 25th, 2007 06:41 PM

Well yes phpinfo is your php limit. Now there are several things you need to change in php to allow big uploads like the memory limit, max upload filesize, post max size and max execution time. You redo your php restart the server and yes put the correct filesize in upload options in admin.

Alfa1 December 29th, 2007 10:15 PM

What settings would you recommend?

I am now getting this error:

Quote:

Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 3072 bytes) in /home/mydomain/domains/my-forum.com/public_html/photopost/image-inc.php on line 103

Chuck S December 29th, 2007 10:17 PM

Maybe this

memory limit 40M
max execution time 0
post max size 10M
max upload filesize 10M


All times are GMT -5. The time now is 10:50 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