私はキャッシュをTRUEに設定しており、キャッシュフォルダーも今のところ777に設定しています。
しかし、画像パスを表示すると、元のファイル名とパスが表示されますか?
代わりに、キャッシュされた画像へのパスを表示することは想定されていませんか?
ティムサム設定:
define ('CACHE_SIZE', 100); // number of files to store before clearing cache
define ('CACHE_CLEAR', 20); // maximum number of files to delete on each cache clear
define ('CACHE_USE', TRUE); // use the cache files? (mostly for testing)
define ('VERSION', '1.25'); // version number (to force a cache refresh)
define ('DIRECTORY_CACHE', '../cache'); // cache directory
define ('MAX_WIDTH', 5000); // maximum image width
define ('MAX_HEIGHT', 3000); // maximum image height
define ('ALLOW_EXTERNAL', FALSE); // allow external website (override security precaution - not advised!)
define ('MEMORY_LIMIT', '128M'); // set PHP memory limit
define ('MAX_FILE_SIZE', 12582912); // file size limit to prevent possible DOS attacks (roughly 12 megabytes)
define ('CURL_TIMEOUT', 10); // timeout duration. Tweak as you require (lower = better)
私が抱えている問題は、URL画像のパスがこれです:
http://mydomain.com/includes/crop.php?src=images/art/urban/alleyway.jpg&h=250&w=958&q=95
そして、キャッシュを有効にすると、次のようになると思いました:
http://mydomain.com/cache/a051f7c9e5d039708ac92dece9a07901.jpg
何か間違ったことをしている場合は教えてください。
乾杯ジョン