###################################################################################
##
## MOD Title: Refresh Mod
## MOD Version: 1.0.0 FINAL
## Author: Dreamgamer <
webmaster@dreamgamer.com > (James Futhey)
## Description: Refreshes the Who is Online page every 30 seconds.
## Example:
HTTP://www.dreamgamer.com/board/
##
## Files To Edit: viewonline.php
## templates/subsilver/overall_header.tpl (Optional)
##
###################################################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
##############################################################
## Author Note: Please Give me your Feedback on this Mod. It is Extremely Simple and easy
## To install. You do not have to edit a single file if you use the
## Subsilver theme! To use another theme you must change the header to match
## Your site's main overall_header.php File. Make sure you follow those
## Instructions only if you have installed another template or edited your
## Template files.
##
##############################################################
###########################################################################
##
## Upload Files:
##
###########################################################################
#
#-----[ Upload ]------------------------------------------
#
whoisonline_header.tpl > /templates/subsilver/whoisonline_header.tpl
wio_header.php > /includes/wio_header.php
#
#-----[ OPEN ]------------------------------------------
#
viewonline.php
#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
#
#-----[ REPLACE WITH ]------------------------------------------
#
include($phpbb_root_path . 'includes/wio_header.'.$phpEx);
#
#-----[ IF ]------------------------------------------
#
# If you are using another template besides subsilver or have edited your header template contunue. If not
# You are done.
# If you have edited your header, Make a copy of it and name it whoisonline_header.tpl . Replace the one that
# Is included in the script with the new copy by re uploading the file. Then follow the next steps.
#
#-----[ OPEN ]------------------------------------------
#
templates/subsilver/whoisonline_header.tpl
#
#-----[ FIND ]------------------------------------------
#
</head>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<meta http-equiv="refresh" content="30;url=viewonline.php">
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM