If I modify the index.php, my includes aren't handled right (I am on a level deeper now), but when I just put the 3 line of code on ingebruik.php, is also gives problems with the levels. Is there a solution so I can make it working??
I'm afraid your gallery page (ingebruik.php) has to be in the same folder as gallery.php. Just move it up into album folder, change your includes ( require("album/gallery.php"); becomes require("gallery.php"); and include("header.inc.php"); becomes include("../header.inc.php"); etc.).
Mike, it is doable if we modify the value of $config["baseurl"] in plog-load_config.php file. Instead of using $_SERVER predefined variable to determine the baseurl, we can assign it manually in this case.
Koko, open plog-load_config.php and set $config["baseurl"] as the following: $config["baseurl"] = "http://kokohuyb.dyndns.org:8084/~koko/ChronosCSS/album";
Then in your ingebruik.php file just include the gallery.php file using <?php require("album/gallery.php"); ?>
I did it successfully in : http://bne.neoboffinhosting.com/test which actually showing the album I previously installed in http://bne.neoboffinhosting.com
I hope I correctly understood the issue here... and I hope this helps
Koko, in that case you have to modify the generate_url function in plog-functions.php as well. Rename your plog-functions.php file and replace it with this: http://www.sourcematic.com/library/plog-functions.zip