My application uses WideImage successfully to crop & resize images. I call this on images using the following:
<img src="<?=asset_url()?>scripts/thumb.php?src=<?=$post['picture']?>" />
Where asset_url() is a function that returns the path to my assets folder. The folder structure is:
| assets
| application
| system
This works fine, but my assets folder should just contain images, JS files and CSS.
If I try and move the thumb.php file to any folder within the application directory, I get a 403 error.
Is this a feature of CodeIgniter to stop direct access to files? If so, how do I get around it?
I'm using a default .htaccess file, which looks something like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
Thanks!
thumb.phpwhich and the file is in the normal Views folder. – Joe Jul 15 '11 at 11:56