***********************************************************************
Summary of this readme file:
-----------------------------
1. Introduction
2. Disclaimer
3. Licence
3. Support
4. How to install
______________________________________________________________________
1. Introduction:
================
Thanks for downloading this script.
We hope that it is a useful addition to your website
This script can be purchased from http://www.ozscripts.com
2. Disclaimer:
==============
Use of this script is TOTTALY at your own risk.
3. LICENCE:
==============
THIS LICENCE IS AN AGREEMENT BETWEEN YOU AND MEDIA NETRIX LIMITED
FOR THE USE OF CPDYNALINKS SOFTWARE.
BY USING OZSCRIPTS SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS AND
CONDITIONS OF THIS LICENCE. OZCORPORATE PTY LTD RESERVES THE RIGHT TO
ALTER THIS AGREEMENT AT ANY TIME, FOR ANY REASON, WITHOUT NOTICE.
PERMITTED USE
You are free to use one copy of Check Pagerank as you choose, subject
to the restrictions stated below.
YOU MAY NOT
Reproduce, distribute or transfer Check Pagerank software, or portions thereof, to any third party.
Sell, rent, lease, assign, or sublet the software or portions thereof. grant rights to any other person.
Sell, or profit from third-party software that interfaces with, extends,
or enhances check pagerank software.
Use check pagerank software in violation of any Australian. or international law or regulation.
Use check pagerank for sites with adult content, violence or that promote racial hatred.
MODIFICATIONS
Licence holders may alter or modify the software for their own use, but may not
resell, redistribute or transfer the modified, or derivative version. Components
from this software may not be extracted and used in other programs.
INDEMNITY
You agree to indemnify and hold harmless Ozcorporate Pty Ltd for any third-party claims,
actions or suits, as well as any related expenses, liabilities, damages, settlements or
fees arising from your use or misuse of the Check Pagerankcheck pagerank software, or a violation of any terms
of this licence.
WARRANTY
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OZCORPORATE PTY LTD OR ITS CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
LIMITATIONS OF LIABILITY
YOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE. IN NO EVENT
SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF CHECK PAGERANK SOFTWARE BE LIABLE FOR CLAIMS, DAMAGES OR
OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE. LICENCE HOLDERS
ARE SOLELY RESPONSIBLE FOR DETERMINING THE APPROPRIATENESS OF USE AND ASSUME ALL RISKS
ASSOCIATED WITH ITS USE, INCLUDING BUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO
EQUIPMENT, LOSS OF DATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS.
3. Support:
===========
Support is currently available via our Forum:
http://www.ozscripts.com/forum/ or email: cs@ozscripts.com
4. How to install: ( use file example.php as a guide. )
================================================================
1. Unzip the distribution file to a directory on your local hard drive.
2. Modify the file `example.php` or example_db.php to suit your site, or create a new file using `example.php` as a guide
3. Parts explained as per `example.php`
`Part 1` to the top of the page that you are going to create, and iniates the script, also displays the results.
`Part 2` is the actual form that is used to submit to the results.
`Part 3` is the results of the form.
`Part 4` displays the timing results.
4. Using your FTP client upload all files to a directory on your web server ensuring that the directory structure remains intact.
5. Required if you are using the Database version ( 1000 urls can be kept for about 50k of space ).
a) Create a table in an existing database, and adjust `scripts/mysql.connect.php` for user/pass, sql is below
-------------------------------------------
CREATE TABLE IF NOT EXISTS `pagerank` (
`id` int(11) NOT NULL auto_increment,
`domain` varchar(200) NOT NULL default '',
`pagerank` int(1) NOT NULL default '0',
`entered` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
-------------------------------------------