file_maxsize[SOLVED]

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
bastain
Posts: 122
Joined: Sat 11. Dec 2004, 15:59

file_maxsize[SOLVED]

Post by bastain »

Hi there,

I got no problems to upload a file less than 5mb to my site, via phpwcms. Any file, which size is bigger isn't working. I got no "size-error", but a red error-message "Please select file to upload".

So I looked in the con.inc.php and found

Code: Select all

// content values
$phpwcms["file_maxsize"]      = 10485760 ; //Bytes (50 x 1024 x 1024)
and changed this to

Code: Select all

// content values
$phpwcms["file_maxsize"]      = 50485760 ; //Bytes (50 x 1024 x 1024)
Its still the same error-message.

Any hint?

Thanx!
Bastian
Last edited by bastain on Thu 26. Oct 2006, 13:14, edited 1 time in total.
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Post by juergen »

hi

this deals with Server Ram for php.ini

If server ram less configurated you won't achieve anything with this change. You can find in your phpinfo() max filesize and RAM for PHP

Jürgen
bastain
Posts: 122
Joined: Sat 11. Dec 2004, 15:59

Post by bastain »

Thanx...thats it!
Post Reply