idonotknow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Easy Post Types – HTTP ERROR 500Thank you very much! I was able to solve the problem, it was memory issue, I’ve edited the existing PHP.INI file (upload_max_size’ , ’64M’ ‘post_max_size’, ’64M’ ‘max_execution_time’, ‘300’), now everything works fine.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2Now I’m able to upload small images, the bigger ones I get the HTTP error, but for a few minutes after reinstalling I had no problem with the bigger images.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2Well, I said it too soon, the problem is back again. For a few minutes I was able to upload the images and then the http error was back again.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2Thanks very much connevio, reinstalling the version of WP worked. I’m finally able to upload images to my media library.
Thank you all, I’m finally able to fix this issue, which was bugging me for the past few days.Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2No, I’ll ask about Imagick to my host.
And yes, when I try the browser uploder I see a blank screen after uploading the file, will try this one solution now.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2I’ve tried:
1- Put this is your themes function.phpadd_filter( ‘wp_image_editors’, ‘change_graphic_lib’ );
function change_graphic_lib($array) {
return array( ‘WP_Image_Editor_GD’, ‘WP_Image_Editor_Imagick’ );
}2- add this to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64MB’);3-Connect to your website using the FTP client and then go to /wp-content/ directory. There you will see /uploads/ folder. Right click on the uploads directory and give file permission 755.
4- add to the .htaccess file:
SetEnv MAGICK_THREAD_LIMIT 15. I’ve added the plugin Default to GD
6. I’ve added the plugin WordPress Flash Uploader
7. I’ve disabled all my plugins
8. I’ve changed the theme
9. I’ve tried: mod_security might be causing problems. Disable it to see if that is the problem. To do this, make an .htaccess file in your wp-admin directory. Add this to it:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>Those are the ones I remember now, because I’ve tried so many things already.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2I’ve tried everything in this thread and nothing worked.
Forum: Fixing WordPress
In reply to: HTTP error when uploading images after worpress update 4.5.2I’ve also noticed that the files were uploaded to the FTP, but they don’t show in the media library. And it’s not a plugin problem, because I had disabled them all and the issue persisted, I’ve also changed the theme for a new one, and still got the HTTP error.
Forum: Fixing WordPress
In reply to: Parse error and Fatal error after updateThank you very much, David, I manage to get access to the FTP and I changed the wp-load file and now everything is working fine.
The only problem I have now is the wp-admin page in the english site, which is not opening since I’ve updated.Again, thank you very much!