wordpress q!
wordpress q!
- Started
- Last post
- 7 Responses
- to
hey any wordpress-user online?
i want to limit the upload size, without changing the php.ini. maybe someone has an idea...of course i tried already google and the wp-forums!
- jamble0
I don't think you can limit it without setting it in php.ini
- to0
that's some bad news ;)
- doctor0
How do you handle the uploads? Does the user submit via HTML forms that is parsed by PHP?
- to0
i want the user to upload a picture...for his/hers post
- to0
someone?
- fugged0
.htaccess
- drgs0
in .htaccess as fugged says, example 1 mb:
php_value upload_max_filesize 1Malternatively
ini_set('upload_max_filesize', '1M');
which most likely will fail, bc this change takes some time