Chris

Results 7 comments of Chris

Thanks James for your prompt response. This is what I had suspected. I have an idea for a solution but it would require knowing in advance the path to the...

Yes, but I would use mod_rewrite to check if the directory and file exist via RewriteCond, which I presume would be relatively faster. If not, use RewriteRule to redirect to...

Will do, though I'm running into a challenge. I realized that if I set $PHPTHUMB_CONFIG['cache_default_only_suffix'] then my $_GET parameters are ignored. I'm curious to why this is the case and...

So I'm pleased to report that serving a thumbnail directly from the cache (assuming it exists) with the help of mod_rewrite rules is faster than via phpThumb. Of course, this...

I could be wrong, but I think the source of the problem is the fact that the defaults are assigned to $_GET and this conditional statement that ignores them: ```...

The problem is still that $PHPTHUMB_DEFAULTS_DISABLEGETPARAMS is set to TRUE if $PHPTHUMB_CONFIG['cache_default_only_suffix'] is not empty. Thus, only the 'src' parameter will be set using the setParameter() method. Plus, moving the...

I should note that I implemented my original idea noted above and it is working as expected.