• Ok, so I’m running a fresh install of WP 4.4.2 on a new dedicated WP server for testing (domainspricedright.com). When I upload an image over about 200 KB I’m getting an HTTP error, and the image is not showing up in my library as a thumbnail, but it displays the file name and other info fine. It also displays the original image file once you click on it, or apply it to any page/post.

    This is unacceptable, as I’m setting this up so the company can upload and make changes on their own without me.

    I am running the Oshin theme (paid), and ONLY the plug-ins they bundle with it.

    I tried adding a php.ini to bump memory limit, even though I knew that wasn’t the problem. It didn’t do anything, so I deleted it.

    this is my ht access file:

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

    Please let me know if you have any ideas on what is causing this HTTP error. It hasn’t happened on small .png’s or jpegs under 200 kb.

    Thanks!

    Jimmy

Viewing 2 replies - 1 through 2 (of 2 total)
  • The issue was the hosting company did not know that the Managed WP ini file needed a period in front of it.

    It should be named “.user.ini” once I did this, the execution times etc. immediately solved the problem.

    I’m having the exact same issue. I’ve tried several fixes that people across the net recommend, using now WP4.5, PHP 5.5.3, my .htaccess file looks like this:

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

    # END WordPress

    I’ve tried editing that, changing wp-content/uploads permissions to 777, and nothing works.

    I searched my entire public_html folder for a “user.ini” or “.user.ini” and it’s not found.

    Any other suggestions?

    Thanks,
    Brandon

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTTP Error Image Upload, file is there, no thumbnail in library’ is closed to new replies.