I just upgraded from v1.81 to v2.2b. The slide show works correctly, I can click on a thumbnail and use the right/left arrows and play slideshow. However, the thumbnails now load in the upper left corner of the page instead of inside the division tag. It works the same in both IE8 and FF 3.5.7 The page was validated at
http://validator.w3.org/ as an XHTML transistional 1.0 page. The link to the page is
http://www.karensgarden.net/KGDPhoto.php
I attached the code for the page. I just realized my menu tabs do not work on the page after the thumbnails load (they are dynamic links written in php).
Change the following code part:
PHP Code:
<div class="koschtitgallery" title="2010">
<h2>Click on a photo to view larger size or 'Next' to advance thumbnails</h2>
</div>
to
PHP Code:
<div class="koschtitgallery" title="2010"></div>
You can't place anything else inside the koschtitgallery-div. This will result in a wrong script behaviour.
(02-17-2010 02:55 AM)kkokus Wrote: [ -> ]Change the following code part:
PHP Code:
<div class="koschtitgallery" title="2010">
<h2>Click on a photo to view larger size or 'Next' to advance thumbnails</h2>
</div>
to
PHP Code:
<div class="koschtitgallery" title="2010"></div>
You can't place anything else inside the koschtitgallery-div. This will result in a wrong script behaviour.
I made the changes, but no difference. Is koschtitgallery-div not allowed inside nested div's?
(02-17-2010 03:16 AM)ok6@embarqmail.com Wrote: [ -> ]I made the changes, but no difference. Is koschtitgallery-div not allowed inside nested div's?
You can place the div anywhere but, for some reason it doesn't work on your webserver. When I copy your code to my localhost everything is placed correctly. Did you modify the "ki_include.php"? Is the php-function ob_start() disabled on your server?
(02-17-2010 12:13 PM)kkokus Wrote: [ -> ] (02-17-2010 03:16 AM)ok6@embarqmail.com Wrote: [ -> ]I made the changes, but no difference. Is koschtitgallery-div not allowed inside nested div's?
You can place the div anywhere but, for some reason it doesn't work on your webserver. When I copy your code to my localhost everything is placed correctly. Did you modify the "ki_include.php"? Is the php-function ob_start() disabled on your server?
I used the ki_include.php included with the new version (copied to public_html directory). The php-function ob_start() was disabled, I set output_buffering=on, but the problem still occurs (I tried copying php.ini to the public_html directory and the ki_base directory). What other php settings might I need to change?
(02-17-2010 06:56 PM)ok6@embarqmail.com Wrote: [ -> ]The php-function ob_start() was disabled, I set output_buffering=on, but the problem still occurs (I tried copying php.ini to the public_html directory and the ki_base directory). What other php settings might I need to change?
It doesn't help to just copy the php.ini into those directories. If you are not the server admin and the ob_start-function is disabled you can't do anything about it, except ask the server admin to turn that feature on.
But you can set the css-height and width of your gallery manually. To do so try this:
PHP Code:
<div class="koschtitgallery" title="..." style="position:relative; padding: 0px; overflow:hidden; width:XXpx; height:YYpx; background:ZZ;"></div>
Replace XX, YY and ZZ with the values you desire ...
(02-17-2010 08:55 PM)kkokus Wrote: [ -> ] (02-17-2010 06:56 PM)ok6@embarqmail.com Wrote: [ -> ]The php-function ob_start() was disabled, I set output_buffering=on, but the problem still occurs (I tried copying php.ini to the public_html directory and the ki_base directory). What other php settings might I need to change?
It doesn't help to just copy the php.ini into those directories. If you are not the server admin and the ob_start-function is disabled you can't do anything about it, except ask the server admin to turn that feature on.
But you can set the css-height and width of your gallery manually. To do so try this:
PHP Code:
<div class="koschtitgallery" title="..." style="position:relative; padding: 0px; overflow:hidden; width:XXpx; height:YYpx; background:ZZ;"></div>
Replace XX, YY and ZZ with the values you desire ...
Yes, that fixed the problem (I used XX=1000, YY=700, ZZ=none). I will try to have the site administrator turn on ob_start().
Thank you