I downloaded the blank.php but i still have some problems with the paths.
PostNuke itself is in /pn and my old site with
HTML pages is in /site. I'd like to make a file multimedia.php that includes the htm file and then i just make a link to the
PHP file in my main menu. I use this to include the htm file:
<?php include include ("http://leerlingensite.jasonereese.com/site/multimedia.htm"); ?>
Where should i place the
PHP file? i like not to place it in the root of
PostNuke. And what should i put in the include_path?
$currentpath = ini_get("include_path");
$mypath = ":..:.:/pn/site/:/path 2to subdirectory/";
$newpath = $currentpath . $mypath;
ini_set ("include_path", $newpath);
I use this piece of code to change the include path. but it doesn't work. How should I do it?