Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 51
2 members and 49 guests
buynm6ymobcha8b, health46ev26
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
» .:.

Go Back   Nukemods Forum > NM Staff > Purged Topics

Reply
 
LinkBack Thread Tools Display Modes
Nuke Wrapper?
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 48
Join Date: Nov 2002
Location: Florida
Nuke Wrapper? - 02-04-2003, 01:45 PM

I wanted to add some plain html sites(with tables to match fiapple) to my site.

Also, I have a search engine script in php that I wanted to add along as well. Since it is a main part of my site. It is a pretty simple search engine script.

I hear people talking about Nuke Wrapper, but can someone assist me with more information?

-Rider
 Send a message via ICQ to Rider Send a message via Yahoo to Rider Send a message via AIM to Rider Send a message via MSN to Rider  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Moderator
 
dar63's Avatar
 
Status: Offline
Posts: 473
Join Date: Oct 2002
Location: UK
02-04-2003, 02:19 PM

Why not use the trusty iframe
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
02-04-2003, 02:27 PM

I-frame is good, Nukewrapper is hard to config, but a newer thing called magic addon works great and it's so easy to config that a baby could do it. It turns any script into a module which puts it in your menu automatically! And the script can be anywhere (even in another country!) Get it from me [Here!]
Man I get excited just thinking about it!
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
02-04-2003, 02:59 PM

Quote:
Originally Posted by Martin
I-frame is good, Nukewrapper is hard to config, but a newer thing called magic addon works great and it's so easy to config that a baby could do it. It turns any script into a module which puts it in your menu automatically! And the script can be anywhere (even in another country!) Get it from me [Here!]
Man I get excited just thinking about it!
amazing how those little things will do that to Martin..hehe

mikem
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Member
 
Status: Offline
Posts: 359
Join Date: Nov 2002
Location: Michigan, USA
02-04-2003, 03:22 PM

me thinks iframe is easiest, as long as you know how. but then again, once you setup magic addon, thats even easier.
  Send a message via AIM to ReNeGaDe  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Quick Question.
Old
  (#6 (permalink))
Junior Member
 
Status: Offline
Posts: 48
Join Date: Nov 2002
Location: Florida
Quick Question. - 02-04-2003, 03:34 PM

Okay, I have a quick question for Magick Addon and adding a search engine to it.

So, I have a form:
Code:
<form action="search\search.php" method="post"><table width="900" border="0" cellspacing="0" cellpadding="0">
<font size="1" face="arial">Search A Gamer: <input type="text" name="UserInput" size="10"> <input type="submit" value="Search"></font></form>
Do I just set the file path to Search/search.php and name the module whatever? Will it work when someone clicks Search?

-Rider
 Send a message via ICQ to Rider Send a message via Yahoo to Rider Send a message via AIM to Rider Send a message via MSN to Rider  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#7 (permalink))
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
02-04-2003, 03:48 PM

Yes, put "magic" folder in the modules folder. Config the path to the file you want in magic/index.php. Go to modules in admin page and activate magic module. Edit the module on that page to change the title from magic to what you want it to be. Config magic index.php to right blocks on or off if you want.
Use the full file path (http:// bla bla bla.com/ / /search.php)

If you want to put a link to it on a page the url will be modules.php?name=magic
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Whoa.
Old
  (#8 (permalink))
Junior Member
 
Status: Offline
Posts: 48
Join Date: Nov 2002
Location: Florida
Whoa. - 02-04-2003, 03:55 PM

I just changed the index.php about a bit to:

Code:
<?php

/********************************************************************/
/*  Magic Addon 2.0                                                 */
/*                                                                  */
/*    Copyright (c) 2002 by Francisco Burzi                         */
/*    http://phpnuke.org                                            */
/*                                                                  */
/*    php Magic Addon 1.0 - Copyright (c) 2002 by Charles Peyatt    */
/*    http://www.ez-webhosting.net                                  */
/*    if you need any help e-mail me webmaster@ez-webhosting.net    */
/********************************************************************/

 if (!eregi("modules.php", $PHP_SELF)) {
	die ("You can't access this file directly...");
    }

///////////////////////////////////////////////
//$index = 0; // right side off
$index = 1;
$magic = "About";
include("header.php");
$height = 600;
///////////////////////////////////////////////
$magic_block = "

<iframe frame name=\"center\" frameborder=\"0\" src=\"http://www.fla-gamers.com\about.html\" width=\"100%\" height=\"$height\"  border=\"0\">
</iframe>


<hr noshade><div align=\"right\">
&copy; 2002 Copyright <a href=\"http://www.ez-webhosting.net\">EZ WebHosting & Design</a>
</div>

";
if ($opi != "ds") {

	echo "$magic_block";
}
//////////////////////////////////

    include("footer.php");
?>
I then went into "Modules" folder and created "About" and it worked just fine. Here is an example:

http://www.fla-gamers.com/modules.php?name=About

-Rider
 Send a message via ICQ to Rider Send a message via Yahoo to Rider Send a message via AIM to Rider Send a message via MSN to Rider  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#9 (permalink))
Senior Member
 
Status: Offline
Posts: 619
Join Date: Oct 2002
Location: Alabama, USA
02-04-2003, 04:00 PM

I'm sorry this module isn't active. You will have to activate about module now.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Oops.
Old
  (#10 (permalink))
Junior Member
 
Status: Offline
Posts: 48
Join Date: Nov 2002
Location: Florida
Oops. - 02-04-2003, 04:19 PM

Forgot. I guess it works because I am the admin and all.

"Activating..."

Okay then. Sorry about that.

-Rider
 Send a message via ICQ to Rider Send a message via Yahoo to Rider Send a message via AIM to Rider Send a message via MSN to Rider  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31