![]() |
|
.jpeg files not displaying - 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: .jpeg files not displaying (/thread-10528.html) |
.jpeg files not displaying - dlongnecker - 2012-10-23 I just installed Zenphoto. Created an Album and uploaded some pictures. Some pictures would not display -- just a box with a little x in the them. Did some further research and found the ones that are not displaying properly have an extension of .jpeg. The ones that display properly have one of .jpg. I simply renamed the .jepg to .jpg and they display now. Since I don't want to do this all the time, is there something I am missing on some zenphoto setting? .jpeg files not displaying - acrylian - 2012-10-23 .jpeg or .jpg should really not matter for Zenphoot and it does not for me (http://zenphoto.maltem.de/Test/Cosmos01.jpeg.php). I suspect an wrong setup graphic libary extensions. Please look at your server error log. .jpeg files not displaying - dlongnecker - 2012-10-24 If you look at a photo in this album that has jpeg extensions: You can see in the html source Please take a look on tag, you can see that path to jpeg file contains leading "&s=100&c=1&cw=100&ch=100&q=75&t=1&wmk=!" after the file extension and preceding "i.php?a..." before file name. And this is what for jpg extensions: http://www.gloriadeikids.org/zenphoto/index.php?album=christmas/christmas-2009/ as you may see, source path is well-formed here. This looks like a code-related issue, besides, direct access to jpeg file is working fine: http://www.gloriadeikids.org/zenphoto/albums/christmas/christmas-2010/DSC_2091.jpeg .jpeg files not displaying - acrylian - 2012-10-24 Both links are correct. THe first is a link to the image processor i.php to create the cached image and the 2nd is the link to an already cached image. Again, please review your server log for errors and clear all possible caches. As proofed Zenphoto does work with both suffixes. It still may be an issue with the graphics libary on your server. In that case you need to contact your host about this. .jpeg files not displaying - vincent3569 - 2012-10-24 Hi It seems that I have a related issue :
the two first doesn't work, and the last one does. Notice that I am with the latest version : Zenphoto version 1.4.3.3 [10902] and of course, the issue is the same with offical zenpage theme. .jpeg files not displaying - acrylian - 2012-10-24 And what does the server log say? .jpeg files not displaying - vincent3569 - 2012-10-24 I have no error log and no debug error. .jpeg files not displaying - sbillard - 2012-10-24 You know the drill on finding image rendering problems: Quote:Zenphoto Image Processing Error: Too few arguments! Image not found. Request URI: [ //zp-core/i.php?a=images/i-feel-dirty&i=theme.png&s=700&q=85&wmk=!&debug ] .jpeg files not displaying - vincent3569 - 2012-10-25 hi it seems to be an issue introduce with latest releases and whether published pictures or not are concerned. you can follow this link of my pre-prod website : http://test.vincentbourganel.fr/20120720-vacances-ete-2012-bretagne/img_7818.jpg.html can I set some debug trace somewhere ? .jpeg files not displaying - vincent3569 - 2012-10-25 if I use the same syntax as you :
.jpeg files not displaying - vincent3569 - 2012-10-25 another try with the same published picture :
it's the same image : with a size of 700, it's work, but with a size of 900 it doesn't (and if I ckear theh cache for this picture, the firt try always works) and with this one : .jpeg files not displaying - dlongnecker - 2012-10-25 I posted my second response because I did report the problem to my webservice provider and they looked and didn't see any problem they said "This looks like a code-related issue of your application, besides, direct access to jpeg file is working fine: I deleted the cache files and it recreated them, but not for the .jpeg ones. For the .jpeg ones, the zenphoto code wants to do the weird source code. When I try to point my browser to it, I get a HTTP404 webpage can't be found message. If I put debug on it: I get: Zenphoto Image Processing Error: Too few arguments! Image not found. Request URI: [ /zenphoto/zp-core/i.php?a=christmas/christmas-2010&i=DSC_2148.jpeg&s=100&c=1&cw=100&ch=100&q=75&t=1&wmk=!&debug ] .jpeg files not displaying - sbillard - 2012-10-25 The error message is coming form insert after that line:
The test above insures that an album ($_GET['a']) and an image ($_GET['i']) have been passed. The url you show does pass those items ( You might also try removing any .htaccess files in case they are removing these parameters. (Of course, then you would need to un-set the zenphoto mod_rewrite option.) .jpeg files not displaying - dlongnecker - 2012-10-25 Here are the results (The zenphoto mod_rewrite is not set) array(10) { ["a"]=> string(24) "christmas/christmas-2010" ["amp;i"]=> string(13) "DSC_2148.jpeg" ["amp;s"]=> string(3) "100" ["amp;c"]=> string(1) "1" ["amp;cw"]=> string(3) "100" ["amp;ch"]=> string(3) "100" ["amp;q"]=> string(2) "75" ["amp;t"]=> string(1) "1" ["amp;wmk"]=> string(1) "!" ["debug"]=> string(0) "" } array(10) { ["a"]=> string(24) "christmas/christmas-2010" ["amp;i"]=> string(13) "DSC_2148.jpeg" ["amp;s"]=> string(3) "100" ["amp;c"]=> string(1) "1" ["amp;cw"]=> string(3) "100" ["amp;ch"]=> string(3) "100" ["amp;q"]=> string(2) "75" ["amp;t"]=> string(1) "1" ["amp;wmk"]=> string(1) "!" ["debug"]=> string(0) "" } Zenphoto Image Processing Error: Too few arguments! Image not found. Request URI: [ /zenphoto/zp-core/i.php?a=christmas/christmas-2010&i=DSC_2148.jpeg&s=100&c=1&cw=100&ch=100&q=75&t=1&wmk=!&debug ] .jpeg files not displaying - sbillard - 2012-10-25 Ok, the problem is something is screwing up your url parameters. Where you see things like BTW, you should always encolse pasted text from these debug statemennts in the code back ticks. There is no way I can know if the problem exists in the submission or has happened somewhere else because the display of If it has Zenphoto has done no processing prior to the debug display, so it cannot have made the changes. If you did remove the zenphoto So maybe there is some other |