PHPDJ Documentation
1. Installation - How to install PHPDJ within 5 minutes
To install PHPDJ, first you must edit the sql.php which is
inside the dj folder, and enter your mysql details.
Next upload the script files to yoursite.com/phpdjdirectory.
Before you install you must CHMOD these files to 777. (do
not change back to 666 after installation)
dj/log.html - dj/overwrite.html - dj/djsayslog.php
Now, point your browser to
www.yoursite.com/phpdjdirectory/install/install.php
Lastly, to put the request system into the site. You can use
the PHP code -
<?php include('DJPANEL/request.php'); ?>
Or the html code -
<iframe
name="iframe"
width="100%"
height="500"
src="http://www.yoursite.com/DJPANEL/request.php"
frameborder="0"
scrolling="auto" >
</iframe>
Installation FINISHED! You may now visit your DJ panel
www.youriste.com/phpdjdirectory/
For any extra support, please visit the forums, or contact
us.
If you want to edit the shoutcast detail page in the DJ
panel, so it has your server ip and password in it. Open the dj folder, and
in notepad open shoutcast.php. Then just edit it to your details.
*Optional Site Extras*
Adding DJ Says into
the site.
If you want to include the DJ says into your site, you can
use either of these two codes. If you have knowledge of PHP enter this code
-
<?php include('DJPANEL/dj/overwrite.html'); ?>
If your site is HTML, add in this code -
<iframe
name="iframe"
width="100%"
height="200"
src="http://www.yoursite.com/DJPANEL/dj/overwrite.html"
frameborder="0"
scrolling="auto" >
</iframe>
Showing the
timetable to the public
If you want to include the timetable to show the public, you
can use either of these two codes. If you have knowledge of PHP enter this
code -
<?php include('DJPANEL/showtimetable.php'); ?>
If your site is HTML, add in this code -
<iframe
name="iframe"
width="100%"
height="500"
src="http://www.yoursite.com/DJPANEL/showtimetable.php"
frameborder="0"
scrolling="auto" >
</iframe>
|