Just follow the instructions in the readme file, but with one change: Put the full path to the files you're including. For example, if you put all these files in ajax_stars under your root directory then
PHP Code:
<?php require('_drawrating.php'); ?>
would become
PHP Code:
<?php require('ajax_stars'.DIRECTORY_SEPARATOR.'_drawrating.php'); ?>
On most servers you could just
PHP Code:
<?php require('ajax_stars/_drawrating.php'); ?>
But, for all I know you're on a windows server.
You will need to make this change everywhere you're told to include something that isn't immediately there.
__________________
Jeremy Miller
Please login or register to view this content. Registration is FREE
|