Results 1 to 4 of 4

Thread: [ERROR: 1] The uploaded file exceeds the upload_max_filesize

  1. #1
    Join Date
    Oct 2007
    Posts
    4

    Default [ERROR: 1] The uploaded file exceeds the upload_max_filesize

    Hi,
    I have been trying to upload a video to my site, everytime I try to upload I get this message:

    [ERROR: 1] The uploaded file exceeds the upload_max_filesize directive in php.ini


    I have increased the upload file max size from admin yet I still get the same message.

    Can you help?

    Have a great day
    Glenn

  2. #2
    Join Date
    Apr 2007
    Posts
    2,202

    Default Re: [ERROR: 1] The uploaded file exceeds the upload_max_filesize

    Your php.ini do not allow big file uploads. Ask your host to increase valye of "upload_max_filesize" to 200 MB (or more as needed).

    You need to modify php.ini and make following changes

    * safe_mode = off
    * register_globals = on
    * open_basedir = (no value)
    * output_buffering = on
    * upload_max_filesize = 200M (or more)
    * post_max_size = 200M (or more)
    * max_execution_time = 6000 (or more)
    * max_input_time = 6000 (or more)
    * memory_limit = 32M (or more)
    * error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
    * display_errors = On
    * file_uploads = On
    * session.gc_maxlifetime = 14000 (or more)
    More details available at

    http://www.vshare.in/requirements.html

  3. #3
    Join Date
    Oct 2007
    Posts
    4

    Default Re: [ERROR: 1] The uploaded file exceeds the upload_max_filesize

    Hi,
    I have fixed this problem, now I have another.
    After uploading the video I now get this error message:

    Fatal error: Class 'ffmpeg_movie' not found in /home/oztralas/public_html/video/include/functions_upload.php on line 174


    Can you please help

    Best regards
    Glenn

  4. #4
    Join Date
    Apr 2007
    Posts
    2,202

    Default Re: [ERROR: 1] The uploaded file exceeds the upload_max_filesize

    ffmpeg-php is not installed or not working properly on your server.

    http://www.google.com/custom?domains=fo ... %3A1&hl=en

Similar Threads

  1. -PHP Warning: POST Content-Length exceeds limit-
    By bren13240 in forum Installation Support
    Replies: 6
    Last Post: 06-24-2008, 01:07 PM
  2. Upload Original Uploaded File **NEEDED**
    By Inferno in forum Feature Requests
    Replies: 0
    Last Post: 02-10-2008, 03:46 AM
  3. Help me, vshare error [ERROR: 3] The uploaded file was only?
    By joako30 in forum General Discussions
    Replies: 1
    Last Post: 08-02-2007, 08:12 PM
  4. video_edit.php: Incorrect File uploaded date showing
    By grynmoors in forum Fixed Bugs
    Replies: 3
    Last Post: 07-07-2007, 09:46 AM
  5. Create video record with existing uploaded file
    By dlevancho in forum Feature Requests
    Replies: 0
    Last Post: 06-06-2007, 06:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •