romerocw
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Mingle Forum] WPMU supportThank you. I’m guessing the dev. will be easier now that both WP and WPMU are running 3.0.
Keep up the good work.
Forum: Plugins
In reply to: [Plugin: Alkivia Open Community] Error using WP InstallSame zip error. Maybe the zip was corrupted when it was created on WP’s server. Can you try to upload again to WP so that WP recreates the zip archive?
Thanks for your work.
Forum: Plugins
In reply to: [Plugin: User Community] System max is: 0 bytes for pic uploadsI finally had time to track down this bug.
Here’s the issue…
If a user compiles php w/out –enable-memory-limit then the php.ini directive for memory_limit is left out at run time and therefore ignored by php scripts.
In filesystem.php the script is asking php.ini for the value of memory_limit. Because it isn’t compiled in it returns a value of ‘0’. This is then interpreted by filesystem.php as the lowest value of upload_max_filesize and post_max_size and is chosen as the maximum accepted upload size.
In my opinion memory_limit should be eliminated from the filesystem.php script. Or if it is left in then the value returned should be overlooked if 0 is the returned value.
In my case I changed this line:
// $mem = ak_return_bytes(ini_get(‘memory_limit’));to:
$mem = ‘134217728’;and set it at 256MB and then I don’t have to worry about it anymore. ??
Thanks for the great plugin.
-Charlie
Forum: Plugins
In reply to: [Plugin: User Community] System max is: 0 bytes for pic uploadsHi Txanny,
Yes, all my php upload variables are set correctly. I can upload w/out any problems via WP and my other non-WP scripts.
It seems that the variable is being ignored. The default install of User Community assigns a value of:
Max. Upload Size: 2048 kb
(Maximum size for each image file an user can upload in Kb. System max is: 0 bytes)Regardless of what I change “Max. Upload Size” to from within User Community the variable is ignored. If I change it to 4096 it will record the variable correctly in the form field but it is still ignored by User Community and the footnote still displays System max size is: 0 bytes.
Like I wrote above. I can upload photos with my base WordPress install as well as with NGG Gallery plugin without any problems.
Thanks,
-Charlie