Hi everybody,
i have a artists/dj's website on www.bevibed.be, where members can make artists & dj's, upload a image, etc.
Now i want to nuke my website.
Somebody knows a way make for example a new file where i include my files? So i want to make custom pages within PN, with my old content.
Just like they included phpbb in PN, get it?
Hope somebody can help me.
greets,
tom
Login
Donate to Zikula
Installation, Configuration, & Upgrades
::
custom postnuke pages
-
-
Quote
Just like they included phpbb in PN, get it?
Not very much like that, but you can still do this. You can go down the line of using modules such as htlmpages 1.1, PostWrap, NukeWrapper, etc, or you can just add a .php file in a module folder and include header.php and footer.php.
Example:
inde.php in root/modules/artists/
Code
<?php
include 'header.php';
// code here. HTML or PHP
// For HTML close the PHP the start agian. Eg:
?>
<img src="">
<?php
include 'footer.php';
?>
