•  » Extensions
  •  » Community plugin, new generation for Piwigo 2.2+

#46 2011-05-05 14:54:25

kiddy-admin
Translation Team
Moscow
2009-05-16
116

Re: Community plugin, new generation for Piwigo 2.2+

ok

Offline

 

#47 2011-05-13 00:46:34

the-outdoorsman
Member
2009-05-17
84

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#48 2011-05-13 07:36:04

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7329

Re: Community plugin, new generation for Piwigo 2.2+

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.


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 

#49 2011-05-13 13:25:01

the-outdoorsman
Member
2009-05-17
84

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#50 2011-05-14 22:03:51

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
14048

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#51 2011-05-14 22:06:18

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
14048

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#52 2011-05-14 23:48:38

the-outdoorsman
Member
2009-05-17
84

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#53 2011-05-15 10:29:51

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
14048

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#54 2011-05-15 10:31:52

mol
Piwigo Team Germany
germany
2010-05-26
108

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#55 2011-05-15 17:03:26

the-outdoorsman
Member
2009-05-17
84

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#56 2011-06-03 15:40:41

farukisin
Guest

Re: Community plugin, new generation for Piwigo 2.2+

hi plg
will you add avatar pict. in this extention which will be great.

 

#57 2011-06-03 15:47:03

mistic100
Former Piwigo Team
Lyon (FR)
2008-09-27
3277

Re: Community plugin, new generation for Piwigo 2.2+

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

 

#58 2011-06-12 18:13:39

Brecht
Guest

Re: Community plugin, new generation for Piwigo 2.2+

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!

 

#59 2011-06-12 18:20:45

Brecht
Guest

Re: Community plugin, new generation for Piwigo 2.2+

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!"

 

#60 2011-06-13 16:23:35

farukisin
Member
www.fotolobia.com
2011-06-09
20

Re: Community plugin, new generation for Piwigo 2.2+

hi there,
after uploading picture i want the information page pop up and to be filled by the uploader
is this possible.

Offline

 
  •  » Extensions
  •  » Community plugin, new generation for Piwigo 2.2+

Board footer

Powered by FluxBB

github linkedin newsletter Piwigo.org © 2002-2026 · Contact