FFMPEG Error - HELP!

Discussion in 'Site & Server Administration' started by Matagascar, Apr 29, 2009.

  1. #1
    Hi,

    So I've completed a website which is a video sharing website where once a user uploads a video they are presented with a URL to view it. I've installed FFMPEG to deal with the video and uploading, but once the uploading gets to 100% an error appears and it says:

    ERROR
    IO: io errorError #2038

    I'm seriously stumped, I have no idea what to do. I have a fully managed, unmetered server with www.choopa.com and I am pretty sure it has something to do with the server. Do we need anything installed, anything configured?! Please help!
     
    Matagascar, Apr 29, 2009 IP
  2. Atulya

    Atulya Guest

    Messages:
    142
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Please check the following in php.ini configuration.

    upload_max_filesize = 1024M (or more if you want to)
    post_max_size = 1024M (or more, equivalent to the upload_max_filesize)

    Also short_open_tag = on must be set in the php.ini, or you get errors.

    If the above php.ini configuration are in correct then add the below two lines in your .htaccess file at the root folder.

    SECFILTERENGINE OFF
    SECFILTERSCANPOST OFF
     
    Atulya, Apr 29, 2009 IP
    Matagascar likes this.