• Hey people, when I am trying to add photos and videos to my blog I receive this error message:

    The uploaded file exceeds the upload_max_filesize directive in php.ini.

    Maximum upload file size: 4MB

    Surely I haven’t maxed out on my potential limit!? I don’t have many photos on my blog. How do I go about getting my photos on, so I am not further behind?

    Cheers in advance

    (a very confused) Anthony

Viewing 1 replies (of 1 total)
  • Its the amount of uploads allowed per upload. Like each filesize and batch has a limit.

    You may be able to raise theese however, you’ll need to investigate with your host if they allow it.

    Its a very simple edit to, or creation of, a php.ini file

    memory_limit = 25000M
    post_max_size = 9000M
    file_uploads = On
    max_execution_time = 3000000000
    max_input_time = 30000000000
    upload_max_filesize = 9000M

    is an example of php.ini code (note..just an example…those limits are cartoonishly huge)

Viewing 1 replies (of 1 total)
  • The topic ‘maximum upload of photos’ is closed to new replies.