Wordpress: “HTTP Error.” When Uploading Files

前端 未结 12 1871
既然无缘
既然无缘 2020-12-06 06:10

I\'m running WP 3.0.1 on a shared host using PHP5. I\'m having issues uploading files that are a little larger via the media uploader in the admin section of WP.

Eve

12条回答
  •  遥遥无期
    2020-12-06 06:32

    The problem, as you've already inferred, is in the size of your file upload. Just to remind you, HTTP isn't really built for transferring large files ... it can do it, but not always, and not very well. You're running into an issue where your host is cutting off the transfer because the file is too large. It's most likely a server setting somewhere that you don't have access to.

    Since "they don't support 3rd party scripts" I'm guessing you're in a shared hosting environment, which is why something could change on your server without you doing anything. Possible solutions:

    1. Get a different host
    2. Use a dedicated server
    3. Transfer your larger files via FTP rather than from within WordPress.

提交回复
热议问题