Thanks for the great work on this plugin. Could you tell me what the max file size or pixels that the photo can be? I am having trouble uploading pics that are larger in size.
Offline
the-outdoorsman wrote:
Thanks for the great work on this plugin. Could you tell me what the max file size or pixels that the photo can be? I am having trouble uploading pics that are larger in size.
The limit is set by your host.
Offline
ddtddt wrote:
the-outdoorsman wrote:
Thanks for the great work on this plugin. Could you tell me what the max file size or pixels that the photo can be? I am having trouble uploading pics that are larger in size.
The limit is set by your host.
When I use ploader the picture uploads just fine so it must be something else or does ploader work differently.
I also looked at the php.ini file in the root and it says
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
Last edited by the-outdoorsman (2011-05-14 01:22:31)
Offline
the-outdoorsman wrote:
When I use ploader the picture uploads just fine so it must be something else or does ploader work differently.
Yes, pLoader works completely differently (it sends small chunks and then Piwigo merges them into a single file).
the-outdoorsman wrote:
I also looked at the php.ini file in the root and it says
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
OK fine, and what's the value for post_max_size ?
Offline
the-outdoorsman wrote:
Could you tell me what the max file size or pixels that the photo can be? I am having trouble uploading pics that are larger in size.
Good question also: what is the resolution (width x height) of your uploaded photos?
While upload_max_filesize may force you to avoid files bigger than 10MB, if you have a 4500x3245 pixels photo, you may go beyond the memory limit, whatever the filesize.
Offline
This is what it says in the php.ini for uploads. I can't find anything about resolution size limits anywhere in the php.ini file. The photo I tried to upload was 4320x3220. Maybe the resource limits is where the problem is.
Maximum size of POST data that PHP will accept.
post_max_size = 8M
File Uploads ;
;;;;;;;;;;;;;;;;
; Whether to allow HTTP file uploads.
file_uploads = On
; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 64M ; Maximum amount of memory a script may consume (16MB)
Offline
HI the-outdoorsman,
OK, so considering post_max_size = 8M and upload_max_filesize = 10M, then you can't upload more than a 8MB file (post_max_size should always be greater than upload_max_filesize)
A 4320x3220 pixels photo is huge. It will take a huge memory. We can find many details about this memory usage on http://php.net/manual/en/function.image … omjpeg.php let's say that your photo will take :
4320x3220x8 (8bits depth) x 1.5 (fudge factor) = 166MB
So try to change your memory_limit to 200MB in your php.ini (just for the test)
Offline
The photo I tried to upload was 4320x3220.
thats much too big for memory_limit = 64M (64MB is your part of the Webserver RAM). Your home PC has between 1-8 Gigabyte RAM, on a Webserver (with hundreds of userrs), you have only a small part, "your 64 Megabyte"
For graphical operations the file size does not matter, the size of the bitmap in memory depends exclusively on the image dimensions (height / width), the file size is not important.
For the limit of 64MB Ram for processing of images from 10MP cameras, approximately (for piwigo), for wordpress under 8MegaPixel, for a very small php script maybee 12Megapixel, because the programm needs also a small part of the RAM.
pLoader has no limits in this way, because it works on your local pc, with probably between 1-4 GB of memory
Offline
Well I changed that to 200mb and now the file uploads and I get the green box saying it was uploaded but there is no photos showing up. I uploaded a smaller photo and it works fine still. Not sure what else to try. Also I had a look at my site through ftp and there is a folder created in upload/2011/05/15/ which has the pwg_high and the thumbnail directory with the photo I was uploading. I tried different things five times and the photo along with the thumbnail was there with five different file names but they do not show up on my website.
Last edited by the-outdoorsman (2011-05-17 00:29:17)
Offline
hi plg
will you add avatar pict. in this extention which will be great.
what will be great is a real community management plugin : private and public profile, avatar, private message, "wall", all linked with user albums
but it's a lot of work and I don't know if it must be implemented in Community or in another plugin...
Offline
I've got the new dutch version, but it's also running on 2.2.3
I tried to search for anything like you said to give users permissions. But I can't find the option anywhere!
Please help!
Brecht wrote:
I've got the new dutch version, but it's also running on 2.2.3
I tried to search for anything like you said to give users permissions. But I can't find the option anywhere!
Please help!
When I installed it, I wanted to go to my admin panel and I get a message
"Hacking attempt!"
hi there,
after uploading picture i want the information page pop up and to be filled by the uploader
is this possible.
Offline