ZenphotoCMS Forum
no thumb - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: no thumb (/thread-486.html)



no thumb - drebin - 2006-05-05

hi,

(ps: sorry for my english)

i have a simple issue:
i use easyphp (apache 1.3.33 for windows and my sql 4.1.9) php 4.3.10 with gd 2.0.28 support.

in the cache folder, the thumbs are created but on my browser, i can't see them, instead of the thumbs, there is the picture name. however it seems to work correctly when i upload my website to my provider server.

my second question:
when and how the cache folder gets empty?

thanks in advance for your advices!!




no thumb - Chilifrei64 - 2006-05-05

In the config.php there are path overrides.. modify those with the correct paths and see if that fixes your probleme.

as far as the cache goes.. the cache goes.. there is a value called maxcache in the config.php Maximum size in Megabytes of the cache folder (where processed images are stored). After this is hit, a cleanup function will run and delete some least recently used resized images.




no thumb - drebin - 2006-05-05

ok, i'll try that, thanks for your answers




no thumb - trisweb - 2006-05-05

The max_cache isn't used yet; you have to clean it up on your own.

Everyone's going to need to delete all their cache anyway when you upgrade to 1.0.3 (it's organized differently), so don't worry about it ;-)




no thumb - jethan - 2006-05-09

Hi
I am sorry to ask again and again the same question. Everything worked fine (installation easy, db creation ...). But no pictures displayed and I get a 404 file not found. I know it's the path but I cannot fix it.
I tried the webpath and serverpath but it doesn't work.
My URL : http://madison-mg.com/zenphoto/
I checked the config ; the i-php ..
I am not very familiar with php ..
Thank you for your help.




no thumb - trisweb - 2006-05-09

[b]jethan[/b] -- your server doesn't have mod_rewrite support. In the config.php, change $conf['mod_rewrite'] = 'true'; to $conf['mod_rewrite'] = 'false';




no thumb - jethan - 2006-05-09

Great it works. Thank you so much.
Actually I tried with the 'false' between quotes it didnn't work and then I tried the false without quotes and it did work. Why ? I don't know. Again thank you for your help




no thumb - trisweb - 2006-05-10

Oh, right, no quotes. False without quotes means False, but false with quotes, False is a string, and strings evaluate to True no matter what they are

Sorry for the confusion.