• Hi ,
    I have installed the wordPress 2.5 on subfolder in my site ( http://www.*****.com/wordpress

    The word press is runing fine but i can not UPLOAD any image , I get the error message : HTTP error.

    I tried to set the uploads folder that located in wp-content folder to the permission 777 & 755 and the same error message continues ..

    I contacted my host and the told me that phpsuexec is runing on our server and better to ask the WORDpress support about the right permission for phpsuexec server

    Thanks alot

Viewing 15 replies - 31 through 45 (of 66 total)
  • Tammy Hart

    (@tammyhart)

    LSRN94’s answer worked for me. Seems like a pretty big error to have to be hunted down and fixed like this…

    shini

    (@shini)

    LSRN94 Thanks so much for the help, being a bit of a noob I got all confused how to add the

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    into the .htaccess file. So I’ll explain for those of who are here for the blogging and not the backstage pass.
    If you have that Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error. with uploading your photos in WordPress, log into your ftp and you should find a .htaccess file. Download it, open it in Notepad or any code-editing application.
    Copy Paste the code between

    # BEGIN WordPress and # END WordPress

    save and reupload. It should work. At least it did for me…

    joehamilton

    (@joehamilton)

    ahhh!!! this is doing my head it!
    When i put the code suggested into the .htaccess file i just get a
    “500 Internal Server Error”
    I already have code in there for permalinks and also “RewriteEngine off” because it is a parked domain.

    This is what it looks like before adding the code suggested

    `
    RewriteEngine off
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress`

    I have tried putting it at the end and at the start and between the rewrite engine off and wordpress code. Nothings seems to work. 500 internal errors all round. πŸ™

    anything else to try? anyone else having this problem?

    tanker

    (@tanker)

    My blog fixed itself when I turned off Bad Behavior. I tried the .htaccess fix, but it didn’t work. I read somebody’s message bout Bad Behavior and the problem went away.

    I’m having this problem as well – just get the error

    An error occurred in the upload. Please try again later.
    not sure why trying later would work – strange thing to add to a error message

    This is a development blog, so there’s NO PLUGINS ACTIVATED, just a raw WP install

    I’ve got index’s turned off in the root .htaccess and in the wp directory this is my .htaccess

    AuthType Basic
    AuthName “*****”
    AuthUserFile “/****/passwd”
    require valid-user
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    # END WordPress

    hope this get’s fixed soon.

    JonasBang

    (@jonasbang)

    I’m all new to WordPress, just installed the 2.5 release.

    It works fine, but I can not upload any images. I get this error:

    HTTP error
    An error occurred in the upload. Please try again later.

    I have not added any plugins, it is a raw WP 2.5 installation.

    I created a .htaccess file and uploaded to my WP root dir:

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    Still does not work πŸ™

    If I wanna edit the .htaccess file, how do I do that? I can not see any .htaccess file with my FTP program (WS_FTP)?

    My WP installation are located directly on the top domain, i.e. not under a /wordpress/ folder.

    I hope someone can help, not much fun in a blog without any images.

    Br,
    Jonas

    JonasBang

    (@jonasbang)

    This solved the ‘HTTP error’ for me (see my problem and setup above) :
    Read this post

    My latest uploaded .htaccess file to root dir looks like this :

    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Br,
    Jonas

    zhu8

    (@zhu8)

    @jonasbang
    Thank You Very much! Your .htaccess works in my wordpress!

    AldebaranJill

    (@aldebaranjill)

    I had this issue as well…and here’s how I fixed it, I disabled the password protected directory setting I had on my blog’s admin directory.

    Once that was deleted, the uploading worked fine. Hope this helps someone.

    I’ve tried all of the solutions presented, but no luck. I’m “allowed” to upload, but I get a blank photo. I can insert the photo into my post, by no image. Help! It seems for such a major issue, wordpress would create an official help document.

    I have the same problem as everone else: HTTP error when I try to upload an Image. All the Word press files are in a directory named latest which is at root level. What level is the .htacess file that is being talked about? There is an .ht access file at root level but there is not one in my wordpress directory. I tried creating one with the lines from JonasBangs post and uploaded it to the wordpress directory but after that I could not access anything, just got a 500 internal server error message. So I quickly deleted the file and at least all the other wordpress funtions are back. Can anyone give some very specific instrutions about this .htaccess file. should it be a new file or additional lines to an existing file and what directory should it be in?

    None of the above fixes worked for me. I have found one thing that has worked though. I have not tested this “workaround” extensively, but it looks like my problem is related to the size of the picture. My original files are 2896×1944 and I get the HTTP error when trying to upload. If I resize it to 800×537, it works fine. Anyone else run into this or anyidea if there is a size limitation?

    Edit: I was just reading another post http://wordpress.org/support/topic/164999?replies=1 and pictures that are too big are a known problem.

    I’m frustrated. I’ve been researching this issue on and off for two weeks and I have not had any luck. I’ve tried all of the solutions
    presented in this post and numerous others.

    I’m using a mac 10.4.11, and firefox or safari (same exact issue with both).

    I have three WP installs in three directories on my site (the real production one and two to test things out). Two of the installs run 2.5.1 and the other is on 2.3. The real (production) install has all its files in a /wp folder, but has a copy of the index file in the root directory. I’ve even done multiple installs (deleted all the files and reinstalled everything.

    When I attempt to upload an image, it crunches, but no image is presented. It doesn’t save a file. Here is a link to an image. I have adjusted and readjusted the permissions on the upload folder. I’ve even entered the full path on the misc. screen in the settings.

    I have multiple .htaccess files (one in each directory and one in the root. I’ve adjusted them all.

    Any suggestions would be appreciated.

    We were having the HTTP Error problem, and when I tried disabling the Bad Behavior plugin, it worked!!! We can now upload pictures without a hitch. I tried that fix first, cuz I am defiantly not a techie person who can deal with codes and paths and all that jazz. (-= I can’t suggest any other ways to fix the problem, but before you go changing things all over, just give this a try.

    I have tried ALL above solutions, with no joy.

    I am on Dreamhost and used their 1-click install. Get http error when the file ‘crunches’.

    Have tried adding all suggestions to htaccess, no luck

    Have CHMOD’d correctly

    AGH

    Can anyone help

Viewing 15 replies - 31 through 45 (of 66 total)
  • The topic ‘Upload error’ is closed to new replies.