ftsakonitis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Featured Image won't respect my thumbnail cropCan you please mention what it was to check in my theme also?
Forum: Fixing WordPress
In reply to: Featured Image won't respect my thumbnail cropHello all,
I am facing the same issue. Despite the fact that in admin section the featured image is the correct one (cropped), on category page, the image shown is the original with the cropped image’s dimensions. WordPress 3.5.1 and Avenue Theme.
Thanks for any help!
Forum: Fixing WordPress
In reply to: HTTP Error- Uploading ImagesOne of our clients, had the same issue.
Finally we found out that the wordpress “HTTP Error” when uploading images, was happening due to a change on the server side. The hosting comany, decided to add APC accelerate to the server in order to increase server’s stability and speed. APC accelerate should work only with FastCGI and not with su, so they set PHP to run as FastCGI.
When using PHP as FastCGI, if you try to upload a file larger than 128KB, an error “mod_fcgid: HTTP request length 131388 (so far) exceeds MaxRequestLen (131072)” occurs and causes an 550 internal server error. This happens because the value of MaxRequestLen directive is set to 131072 bytes (128KB) by default. One way to correct this (if server uses Plesk), is to edit /etc/httpd/conf.d/fcgid.conf and set MaxRequestLen to a higher value, for example 15MB (MaxRequestLen 15728640). If server uses cPanel, this change can be done via the WHM of the server.
So, if you can upload images up to 128KB, this is the solution to your problem.
Forum: Fixing WordPress
In reply to: HTTP Error during Picture Uploads in Version 3.3.1One of our clients, had the same issue.
Finally we found out that the wordpress “HTTP Error” when uploading images, was happening due to a change on the server side. The hosting comany, decided to add APC accelerate to the server in order to increase server’s stability and speed. APC accelerate should work only with FastCGI and not with su, so they set PHP to run as FastCGI.
When using PHP as FastCGI, if you try to upload a file larger than 128KB, an error “mod_fcgid: HTTP request length 131388 (so far) exceeds MaxRequestLen (131072)” occurs and causes an 550 internal server error. This happens because the value of MaxRequestLen directive is set to 131072 bytes (128KB) by default. One way to correct this (if server uses Plesk), is to edit /etc/httpd/conf.d/fcgid.conf and set MaxRequestLen to a higher value, for example 15MB (MaxRequestLen 15728640). If server uses cPanel, this change can be done via the WHM of the server.
So, if you can upload images up to 128KB, this is the solution to your problem.