How to install a new moddivider

In this section we will show you how to expand the Nuke Evolution functionality by installing and configuring additional mods.

We will complete the InfoBar mod installation. First you need to download the InfoBar mod from thefollowing Nuke Evolution resource web site. Then extract the archive file on your local computer. Open the file called install_infobar_100_evo_20x.txt and follow the detailed installation instructions listed in it. Basically you need to copy the html/themes/YOUR_THEME/style/cbackinfo.css file from your local computer to public_html/nuke_folder/themes/YOUR_THEME/style/cbackinfo.css on the server. This can be performed using cPanel -> FileManager.

Replace nuke_folder with your actual Nuke Evolution folder and YOUR_THEME with the name of your default theme. If the script is the main one for your account and it is installed directly under the public_html directory, the file should be uploaded under public_html/themes/YOUR_THEME/style/.

Using cPanel -> FileManager find the header.php file for your Nuke Evolution script. Edit the file.

Find the following line:

themeheader();.

After it add the following code:

/*****[BEGIN]******************************************
[ Mod: InfoBar on Top v1.0.0 ]
******************************************************/
global $name;
if (!is_user() AND $name != 'Your_Account') {
echo "<link rel="stylesheet" href="themes/$ThemeSel/style/cbackinfo.css" type="text/css" />n";
echo " <table width="100%" border="0" cellspacing="0" cellpadding="0">n";
echo " <tr>n";
echo " <td>n";
echo " <div id="infobar" align="center">
<a href="modules.php?name=Your_Account&amp;op=new_user">
You are not logged in. Please log in. If you have not registered, please click here.</a>
</div>n";
echo " </td>n";
echo " </tr>n";
echo " </table>n";
echo "<br />n";
}
/*****[END]********************************************
[ Mod: InfoBar on Top v1.0.0 ]
******************************************************/

Save the file and log out from your Nuke Evolution web site. Then you will see the following message in the header of the web site:

You are not logged in. Please log in. If you have not registered, please click here.

38