• Hi!

    I have set my php ini file to:

    memory_limit = 100M
    $max_upload_size = 10485760;

    But i have still a problem with file uploads. Download monitor plug in won’t upload files biger as 2mb.

    Can someone please help me?

    Thanx

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try contacting your hosts for assistance.

    Try adding/changing the “upload_max_filesize” integer. (see php.info).

    Another thing to check for (depending on your host) is whether you’re using php5 and need to create a php5.ini file.

    Thread Starter Martin

    (@mcundric)

    Hi, I fixe it.
    My php.ini file_

    #memory_limit = 100M
    #max_upload_size = 10485760;
    #post_max_size = 100M
    
    file_uploads = On
    upload_max_filesize = 50M
    post_max_size = 50M

    .htaccess file:

    suPHP_ConfigPath /home/your_user_name/public_html/php.ini

    It is IMPORTANT to put this code to the top.

    Thanx and have a nice day.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘php.ini problem’ is closed to new replies.