Icyrizard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image uploading issuesYep, works for me too! 4.2.2 has fixed the bug apparently. Took me a lot time, cuz I thought it was my fault…
Anyway, put this on resolved I guess?
Forum: Fixing WordPress
In reply to: Images don't appearIve encountered the same problem. And tried everything Tara suggested.
There are already two Threads issueing this problem on this forum. I guess it’s a problem for a lot people since wordpress 4.2.
The other issues:
https://wordpress.org/support/topic/image-uploading-issues-3?replies=3
https://wordpress.org/support/topic/cannot-upload-images-anymore-1?replies=2Seems like a good choice to merge these threads into one. I haven’t found a solution this yet.
Forum: Fixing WordPress
In reply to: Image uploading issuesSomeone with the same issue: https://wordpress.org/support/topic/cannot-upload-images-anymore-1?replies=2
Forum: Fixing WordPress
In reply to: Image uploading issuesI have the exact same issue on wordpress 4.2.1, gray images after image upload and the file has never been created on the server ( I’ve checked that through ftp ).
I go to the admin panel > media > upload new file. All goes correctly and I get a success response back from the server. The directory structures have been created uploads/2015/05/ However, the image is never put there.
The image I’ve uploaded a 1.4MB JPEG of 4128 x 2322. I’ve also tried a range of different image sizes so this doesn’t seem to matter. If it did, wordpress would complain by responding with an error message.
.htaccess 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