Making a simple Web Page in PHP-Nuke.

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Making a simple Web Page in PHP-Nuke.
figtab
CZ Newbie
figtab has been a member for over 18 year's 18 Year Member
Gender: Male
Status: Offline
Joined: Jun 23, 2006
0.00 posts per day
Posts: 3
Points: 0
   
How can i make a simple web page in php-nuke and make a link for it in the module block????



Back to top Reply with quote
#2   re: Making a simple Web Page in PHP-Nuke.
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 43
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
You could use CZiframe
[ Register or login to view links on this board. ]

Some general knowledge of html would be required.



Back to top Reply with quote
#3   re: Making a simple Web Page in PHP-Nuke.
figtab
CZ Newbie
figtab has been a member for over 18 year's 18 Year Member
Gender: Male
Status: Offline
Joined: Jun 23, 2006
0.00 posts per day
Posts: 3
Points: 0
   
Well how do i make a page in PHP nuke ad then add the link to the module without CZIframe.



Back to top Reply with quote
#4   re: Making a simple Web Page in PHP-Nuke.
floppydrivez
CZ Addict
 Codezwiz Site Donator
floppydrivez has been a member for over 18 year's 18 Year Member
usa.gif mississippi.gif
Occupation: graphic design
Age: 43
Gender: Male
Website:
Status: Offline
Joined: Feb 26, 2006
0.08 posts per day
Posts: 518
Points: 4,848
AIM Address Yahoo Messenger MSN Messenger 
1st. Create a folder, Name it Iframe.
2nd. Inside that folder create a file named index.php
3rd. Copy this code below inside that index.php and save
4th. Upload the Iframe folder to root/modules.

<?
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
  die ("You can't access this file directly...");
}
if(!IsSet($mainfile)) { include ("mainfile.php"); }
$go_to_address1="http://www.yoursite.com/example.html";
$go_to_address=rawurldecode($go_to_address1);
include("header.php");
OpenTable();
echo "<iframe SRC=\"".$go_to_address."\" width=\"100%\" height=\"1200\"
framespacing=0 frameborder=no border=0 scrolling=auto></iframe>";
CloseTable();
include("footer.php");
die;
?>


Note: You need to change http://www.yoursite.com/example.html to lead to your .html file you uploaded.


Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum