I have a small plugin, what provided a shortcode to the editor, to show phone numbers in the posts asa dinamically created image.
The plugin uses a php file, what creates the image based on the url parameters.
In an installation, the browsers was not showed the images, and when we tried to call the php directly from the browser, we got 404 error. The file was on the appropriate place, under the plugins folder.
After some investigation I found the following rows in the cpanel error log;
[Wed May 09 10:02:01 2012] [error] [client x.x.131.2] SoftException in Application.cpp:601: Directory “/home/site/public_html/wp-content” is writeable by group, referer: http://www.site.ie/wp-content/plugins/utdplugin1/callus.php?number=01825990
[Wed May 09 10:01:59 2012] [error] [client x.9x2.131.2] SoftException in Application.cpp:601: Directory “/home/site/public_html/wp-content” is writeable by group
Based on these messages I checked the permissions of the wp-content folder, and saw, that has been set to 777.
Changing the permissions to 755 has been fixed the problem.



















