And how do I integrate with the index.php? Do you mean the index.php of my website, or index.php of plogger?
As I have done it now, I have tried to integrate it in my website file called images.php and this is the source kode:
<?php require("/plogger/gallery.php"); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html> <head> <?php the_gallery_head(); ?> <title>Loco kodo</title> <link rel="STYLESHEET" type="text/css" href="style.css"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="distribution" content="Global" > <meta name="rating" content="General" > <meta name="robots" content="ALL INDEX" > <meta name="keywords" content="loco,kodo,guild,wow,world of warcraft, loco kodo" > <meta name="description" content="Welcome to the webiste of the Loco Kodo guild!" > <meta name="author" content="Loco Kodo" > <meta name="copyright" content="lmkmlmlkmlm" > </head> <body> <?php the_gallery(); ?> <div id="wrapper2"> <div id="wrapper"> <div id="top"><img class="title" src="images/top_kodo.gif" width=500 height=231 alt="Loco kodor" border="0"> </div> <div id="menu"> <ul> <li><a href="index.html">home</a> <li><a href="about.html">about us</a> <li><a href="gallery.html">gallery</a> <li><a href="http://snodigfilm.com/locokodobb">forum</a> <li><a href="index.html">links</a> </ul> </div> <h3>Loco kodo - gallery </h3> <div id="main"> <h4>11 August 2006 --- New URL!</h4> <p> The new URL to the webpage is now http://www.locokodo.info </p> </div> <div id="foot"> <p> World of Warcraft and Blizzard Entertainment are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. These terms and all related materials, logos, and images are copyright Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment. </div> </div> </div> </body> </html>
And this it the error i get when i visit the page:
Warning: main(/plogger/index.php) [function.main]: failed to open stream: No such file or directory in /home/snodigfi/public_html/locokodo/images.php on line 1
Fatal error: main() [function.require]: Failed opening required '/plogger/index.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/snodigfi/public_html/locokodo/images.php on line 1
The index.php of Plogger, which can also be the index.php of your website ...
You might also try first fixing your paths to "./plogger/index.php" instead of "/plogger/index.php", which are very different paths, and see if that helps.
Whoho! That actually got me somewhere :) the "." did its thing. But now i have other problems, the gallery was all strange so I changed the "index.php" to "gallery.php" and it actually was much better. But it still has problems with actually showing the pictures in the gallerys and for some reason there is a 2. gallery on the top of the page. have a look: www.locokodo.info/gallery.php
My sourcekode is now this:
<?php include("./plogger/gallery.php"); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <?php the_gallery_head(); ?> <?php the_gallery_head(); ?> <title>Loco kodo</title> <link rel="STYLESHEET" type="text/css" href="style.css"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="distribution" content="Global" > <meta name="rating" content="General" > <meta name="robots" content="ALL INDEX" > <meta name="keywords" content="loco,kodo,guild,wow,world of warcraft, loco kodo" > <meta name="description" content="Welcome to the webiste of the Loco Kodo guild!" > <meta name="author" content="Loco Kodo" > <meta name="copyright" content="mmølmlømlm" > </head> <?php the_gallery_head(); ?> <body> <?php the_gallery(); ?> <div id="wrapper2"> <div id="wrapper"> <div id="top"><img class="title" src="images/top_kodo.gif" width=500 height=231 alt="Loco kodor" border="0"> </div> <div id="menu"> <ul> <li><a href="index.html">home</a> <li><a href="about.html">about us</a> <li><a href="gallery.html">gallery</a> <li><a href="http://snodigfilm.com/locokodobb">forum</a> <li><a href="index.html">links</a> </ul> </div> <h3>Loco kodo - gallery </h3> <div id="main"> <h4>11 August 2006 --- New URL!</h4> <p> The new URL to the webpage is now http://www.locokodo.info </p>
<?php the_gallery(); ?>
</div> <div id="foot"> <p> World of Warcraft and Blizzard Entertainment are all trademarks or registered trademarks of Blizzard Entertainment in the United States and/or other countries. These terms and all related materials, logos, and images are copyright Blizzard Entertainment. This site is in no way associated with or endorsed by Blizzard Entertainment. </div> </div> </div> </body> </html>