Page 7 of 8

Posted: Fri 2. Feb 2007, 15:07
by culda_a
I try to install the lightbox , the first problem was that I try to download the files from this topic but is not working, second I have copy from another site the files but when I press on the picture is apear only the picture without efects

Posted: Fri 2. Feb 2007, 15:46
by marcus@localhorst
culda_a wrote:I try to install the lightbox , the first problem was that I try to download the files from this topic but is not working, second I have copy from another site the files but when I press on the picture is apear only the picture without efects

Posted: Tue 13. Feb 2007, 07:45
by culda_a
why is not working the lightbox anymore???? it apears a lot of images and is not working

Posted: Tue 13. Feb 2007, 09:57
by marcus@localhorst
culda_a wrote:why is not working the lightbox anymore???? it apears a lot of images and is not working
sorry for no reply, the last time i've answered, i could not posting, because I was kicked out by spam protection of this forum.
I've changed the links on my first post.
please download again and try.
If it not work, please send me a link if possible.
best
marcus

article image (enlarge image)...use lightbox?

Posted: Thu 15. Feb 2007, 06:03
by anthony.abraira
does anyone know if its possible to implement the lightbox feature to all articles that have the "enlarge image" option checked off in their article settings?

Re: article image (enlarge image)...use lightbox?

Posted: Thu 15. Feb 2007, 08:35
by marcus@localhorst
anthony.abraira wrote:does anyone know if its possible to implement the lightbox feature to all articles that have the "enlarge image" option checked off in their article settings?
must correct this - it's not easy to solve, because of lack of the full sized picture information!
m

Posted: Thu 22. Mar 2007, 02:59
by metti
I did not read the all of this thread, but:
To get lightbox enhancement startet in phpwcms 1.30 and possibly in 1.28 / 1.29 when your phpwcms root is not your site root it is necessary to change the code of lightbox.php beginning at line 44:

Code: Select all

    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".$phpwcms['templates']."inc_app/lightbox/js/prototype.js\"></script>\n";
    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".$phpwcms['templates']."inc_app/lightbox/js/scriptaculous.js?load=effects\"></script>\n";
    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".$phpwcms['templates']."inc_app/lightbox/js/lightbox.js\"></script>\n";
    $block["htmlhead"] .="<link href=\"".$phpwcms['templates']."/inc_app/lightbox/css/lightbox.css\" rel=\"stylesheet\" type=\"text/css\" />\n";
has to look like this:

Code: Select all

    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".ltrim($phpwcms['templates'], "/")."inc_app/lightbox/js/prototype.js\"></script>\n";
    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".ltrim($phpwcms['templates'], "/")."inc_app/lightbox/js/scriptaculous.js?load=effects\"></script>\n";
    $block["htmlhead"] .="<script type=\"text/javascript\" src=\"".ltrim($phpwcms['templates'], "/")."inc_app/lightbox/js/lightbox.js\"></script>\n";
    $block["htmlhead"] .="<link href=\"".ltrim($phpwcms['templates'], "/")."/inc_app/lightbox/css/lightbox.css\" rel=\"stylesheet\" type=\"text/css\" />\n";
There is just a slash at the begining of $phpwcms['templates'], that has to be trimed with ltrim().
Bye,
Metti

Posted: Tue 3. Apr 2007, 14:45
by marcus@localhorst
I've update the install instructions (now in german too) and post a new package for lightbox 2.02 which run by default on fresh phpwcms 1.3.0 installations. If you have still a folder phpwcms_templates - then you need to change a little bit more ;-) but it is not so much.
SEE THE STARTPOSTING!
Test and report bugs.

best marcus

Posted: Wed 4. Apr 2007, 14:28
by mckingtom
It works for me on both 1.2.6DEV and 1.3.0. Very easy installation (on 1.2.6dev one needs to add the three lines mentioned in the installation guidelines in conf.template_default.inc)

Many thanks for this script!

Posted: Wed 4. Apr 2007, 15:12
by splette
yes, I can only agree. Very simple installation. Works like a charm. Thanks Marcus!

Posted: Wed 4. Apr 2007, 16:07
by pepe
Great job markus, and very easy to install... real "newbee-like"!

Now it only integrates into the html-head, if there is at least one image or more on the special page...

Would be a little bit better, if the inclusion works only, if the images have popup-marks.
Pages with small thumbs only - without any popup marks - do now render with the included code too! Do you think its possible....?


But nevertheless "good work man"!

Kann es sein dass man noch etwas einbinden muß?

Posted: Wed 4. Apr 2007, 20:41
by cbraun75
Nachdem ich es nach anleitung installiert habe und
In der config...

Code: Select all

$template_default['article']['imagelist_table_class']		= 'imagelisttable';
$template_default['article']['imagelist_table_bgcolor']		= '';
$template_default['article']['imagelist_bgcolor']			= '';
$template_default['article']['imagelist_align']				= '';
$template_default['article']['imagelist_valign']			= '';
$template_default['article']['imagelist_border']			= 0;
$template_default['article']['imagelist_class']				= 'imagelisttd';
$template_default['article']['imagelist_imgclass']			= 'imagelistimg';
$template_default['article']['imagelist_caption_class']		= 'imglistcaption';
eingetragen habe und nun mein Bild klicke passiert leider gar nichts.

Muß man noch etwas einbauen (Javascripts oder CSS?)?? Bekomme nur ein einfaches Fenster das sich öffnet. Habe Version 1.3.

Vielleicht kannst Du das auch noch in die Anleitung mitaufnehmen?

Posted: Wed 4. Apr 2007, 22:11
by splette
ausser dem Hochladen der Files und dem Eintrag in der config Datei muss man nichts weiter tun. Das sollte eigentlich funktionieren... :roll:

Posted: Thu 5. Apr 2007, 10:01
by mochito
Hi,

hatte das gleiche Problem - wichtig scheint zu sein den Browser-Cache und CMS-Cache zu löschen, ein Reload reichte nicht aus.

Seit dem gehts...

cu, juergen

Problem gelöst

Posted: Thu 5. Apr 2007, 12:45
by cbraun75
Habe in der vorlage Datei die javascript funktionen eingebunden und das CSS file unter Vorlage Header. Jetzt klappt es auch. Das wäre vielleicht nicht schlecht noch in die Anleitung zu schreiben ...

Trotzdem Danke für die Beantwortung.