One Hat Cyber Team
Your IP :
216.73.216.216
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sam
/
public_html
/
go
/
fusionnews
/
docs
/
View File Name :
ReadMe.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <!-- $Id: ReadMe.html 218 2008-02-24 10:55:49Z xycaleth $ --> <head> <title>Fusion News ReadMe File</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="./stylesheet.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="layout"> <div id="header"> <img src="./images/header.png" alt="Fusion News" title="Fusion News" width="604" height="117" /> </div> <div id="content"> <div id="text"> <div id="links"><a href="#requirements">Requirements</a> | <a href="#installation">Installation</a> | <a href="#upgrading">Upgrading</a> | <a href="#problems">Reporting Problems</a> | <a href="#showingnews">Showing News</a></div> <h1><a name="requirements" id="requirements"></a>Requirements</h1> <p>The following are required for Fusion News to function:</p> <ul> <li>PHP 4.1 or better</li> </ul> <p>The following are optional, but add extra functionality to Fusion News, each of which are explained.</p> <ul> <li>GD Library 2.0 or better<br />To generate visual confirmation for comments to prevent web bots from posting spam.</li> <li>File uploads enabled<br />Allows images to be uploaded when adding a new post, so they can be shown in the post.</li> </ul> <p>( <a href="#">Back to top</a> )</p> <h1><a name="installation" id="installation"></a>New Installation</h1> <p>You should upload all of the files located in the 'upload' directory to a directory on your website. If you are using a FTP client, all *.html, *.php, *.css , and *.js files should be uploaded in <strong>ASCII</strong> mode, and the remaining files in <strong>Binary</strong> mode. Most FTP clients available will do this automatically, but make sure that it is uploading the files correctly.</p> <p>The installation script has been made to make it as easy to use as possible, and with the least amount of user input necessary. To begin the installation process, go to the install.php file through your web browser. If your domain name is http://www.mydomain.com, and you uploaded Fusion News to a directory called 'news', you would type in the address http://www.mydomain.com/news/install.php.</p> <p>From there, you can follow the instructions. Once you have installed Fusion News, please <strong>make sure you delete the install.php file</strong> to prevent any one from attempting to reinstall Fusion News.</p> <p>( <a href="#">Back to top</a> )</p> <h1><a name="upgrading" id="upgrading"></a>Upgrading</h1> <h2>From 3.8.x or below</h2> <p>To upgrade, you should upload <strong>only the /upgrade directory</strong> to begin with, which is located in the 'upload' directory. Then run the /upgrade/index.php file from your browser and follow the on-screen instructions. Once the upgrade process has finished, upload the files stated in the list given.</p> <p>After finishing upgrading, make sure you delete the /upgrade directory.</p> <h3>Important Changes</h3> <p>There are some important changes to the functionality of Fusion News from 3.8.x or below, which you should know about:</p> <ul> <li>static_news.html has been removed, and replaced with news.php. See below for how you should display your news.</li> </ul> <h2>From 3.9.x</h2> <p>Create backups of the following files:</p> <ul> <li>archive.php</li> <li>comments.php</li> <li>common.php</li> <li>fullnews.php</li> <li>functions.php</li> <li>headlines.php</li> <li>index.php</li> <li>language.db.php</li> <li>news.php</li> <li>rss.php</li> <li>search.php</li> <li>send.php</li> <li>skins/fusion/index.html</li> <li>skins/fusion/stylesheet.css</li> </ul> <p>Overwrite these old files, with the new versions provided in the ZIP file.</p> <p>( <a href="#">Back to top</a> )</p> <h1><a name="problems" id="problems"></a>Reporting Problems</h1> <p>Please report any problems you find to the Fusion News forum of the <a href="http://www.fusionnews.net/forums/index.php" onclick="window.open(this.href); return false;">FusionNews.net Support Forum</a>.</p> <p>( <a href="#">Back to top</a> )</p> <h1><a name="showingnews" id="showingnews"></a>Showing News</h1> <h2>On Your Website</h2> <p>To make the news appear on your website, you will need to first make sure that the page you want it to show on is a PHP page (i.e. a *.php file). If not, you will need to rename the file.</p> <p>Where you want to display the news, you should put this in the page's source code:</p> <p class="phpcode"> <span class="style1"><?php</span><br / <span class="style2">include</span> <span class="style3">'news/news.php'</span><span class="style2">;</span><br /> <span class="style1">?></span> </p> <p>The path must be relative from the page you are placing this code. For example, if your website file is two directories down from the Fusion News files, it would be something like this:</p> <p class="phpcode"> <span class="style1"><?php</span><br /> <span class="style2">include</span> <span class="style3">'directory1/news/news.php'</span><span class="style2">;</span><br /> <span class="style1">?></span> </p> <p>To show news from a single category, the variable <code>$fn_category</code> should be specified before including the news. For example:</p> <p class="phpcode"> <span class="style1"><?php</span><br /> $fn_category = <span class="style1">1</span><span class="style2">;</span><br /> <span class="style2">include</span> <span class="style3">'news/news.php'</span><span class="style2">;</span><br /> <span class="style1">?></span> </p> <p>This would display all the news from category ID 1. The category IDs can be found in the Manage Categories page of the admin panel.</p> <h2>Headlines</h2> <p>Headlines can be displayed in a similar way to the news:</p> <p class="phpcode"> <span class="style1"><?php</span><br /> <span class="style2">include</span> <span class="style3">'news/headlines.php'</span><span class="style2">;</span><br /> <span class="style1">?></span> </p> <p>Or to display a single category:</p> <p class="phpcode"> <span class="style1"><?php</span><br /> $fn_category = <span class="style1">1</span><span class="style2">;</span><br /> <span class="style2">include</span> <span class="style3">'news/headlines.php'</span><span class="style2">;</span><br /> <span class="style1">?></span> </p> <h2>RSS Feeds</h2> <p>To begin with, ensure that RSS feeds have been enabled. To do this, click the <strong>Addon Options</strong> link on the <strong>Admin</strong> page. The checkbox under the <strong>RSS Feed</strong> section, labelled 'Enable RSS Feed' should be checked.</p> <p>Below that, the RSS feed name, description and encoding can be changed, and changes will come into affect once the settings have been saved.</p> <p>Every time a new post is made, or a post is changed the RSS feed file will be updated accordingly. The RSS feed file is called <strong>rss.php</strong>. To receive feeds of a particular category, <code>?fn_category=category_id</code> should be used, where category_id is the ID of the desired category.</p> <p>( <a href="#">Back to top</a> )</p> </div> <div id="footer"> <img src="./images/table_bottom.png" alt="" width="604" height="25" /> <p>Powered by <a href="http://www.fusionnews.net/" onclick="window.open (this.href); return false;">Fusion News</a> © 2007, FusionNews.net</p> </div> </div> </div> </body> </html>