Setting higher upload limit

How can I change the standard 7MB upload limit?

I have full shell and admin access to my WordPress blog.

Related posts

Leave a Reply

2 comments

  1. add this to your .htaccess file in the root of WordPress installation directory:

    php_value upload_max_filesize 20M
    php_value post_max_size 20M
    

    and you can change 20 to whatever you want, unless your hosting server is limiting it it should work just fine.

    Update:

    Create the php.ini File and add the Following:

    memory_limit = 20M
    upload_max_filesize = 192M
    post_max_size = 20M
    file_uploads = On
    

    then Upload the File to your wp-admin Directory.

  2. I installed the wordpress plugin Tuxedo Big File Uploads.
    Now I have a upload limit of 988 GB.
    Using this plugin you don’t need to edit php.ini or .htaccess files.
    You are even able to disable the plugin later if you want.