I am using timthumbs in my wordpress site. But I included all the changes which I found when I search for this problem.
I have enabled the "ALLOW_EXTERNAL" and "ALLOW_ALL_EXTERNAL_SITES" .
//Image fetching and caching
if(! defined('ALLOW_EXTERNAL') )
define ('ALLOW_EXTERNAL', TRUE);
// Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
if(! defined('ALLOW_ALL_EXTERNAL_SITES') )
define ('ALLOW_ALL_EXTERNAL_SITES', true);
I have recreated my .htaccess file . I Have also included the following code in my .htaccess file.
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
But it is not working in my domain. But it is working in other domain.
Image URL which I tried to access is
I am getting 403 forbidden, I gave 0755 permission to cache folder as well.