Miki88wp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 500 Internal Server error after image uploadOk, in my case it was file permissions for temp php file upload folder.
I tried lot’s of ways messing with .htaccess and web.config but it didn’t help me. This one makes more sense when you get only problem with images that is, with images that are actually originals and not resized versions that WordPress creates after upload.
I am glad you solved problem! 🙂
And i hope this post will be a good answer to all others that have same issue.Forum: Fixing WordPress
In reply to: 500 Internal Server error after image uploadHello, I don’t know if you managed to solve your problem but i HAD exactly the same problem.
Images are not displaying in post creation and after published but only the original images. Everything is explained here and the solution is quite easy: http://www.aheil.de/2012/08/12/wordpress-internal-server-error-500-for-uploaded-images/Turns out that windows temp folder or whatever folder is set in php.ini as temp folder need to have permissions for IIS_IUSRS.
So no matter which permissions you set for your uploads folder original file inherit folder permissions of temp folder.
Make sense doesn’t it?I hope this would help you! GL!
Cheers!Forum: Themes and Templates
In reply to: Border radiusHello to all, i have figure it out
I used this:
border-top-left-radius:5px; -moz-border-top-left-radius:5px; -webkit-border-top-left-radius:5px; border-top-right-radius:5px; -moz-border-top-right-radius:5px; -webkit-border-top-right-radius:5px;And here is the useful link:
http://www.css3.info/preview/rounded-border/http://www.the-art-of-web.com/css/border-radius/
Now i need SHADOW css code!
I have put a shadow around the page (content area), and around the footer ant the shadow around the footer is showing on content area, how can i remove that?