View Full Version : Setting up WOL for custom script
WorldCraft
11-07-2012, 12:26 AM
I'm trying to set up a WOL entry for a custom script. However the script is named index.php and in a directory above my forum root.
If I use:
switch ($filename)
{
case 'index.php':
$userinfo['activity'] = 'mypage';
break;
}
Won't this apply the WOL for ALL scripts titled index.php??? It's the only method I know how to add a WOL entry. Is there another way?
Lynne
11-07-2012, 12:38 AM
That is going to be difficult to do. I think I saw a post that includes instructions on how to do it in the article about creating plugins for the WOL page, so go read through that.
WorldCraft
11-07-2012, 12:43 AM
Alright, well I suppose a better question would be, is there a way to set a script that isn't named index.php as default for a directory? Then I can ignore this WOL issue altogether. I just need it to be the default script.
snakes1100
11-07-2012, 01:03 AM
If its apache: DirectoryIndex (Which you can modify in httpd.conf, simply add the file name, HUP apache.
You can do the same for Nginx as well.
index index.html index.php /index.php;
WorldCraft
11-07-2012, 01:22 AM
If its apache: DirectoryIndex (Which you can modify in httpd.conf, simply add the file name, HUP apache.
You can do the same for Nginx as well.
index index.html index.php /index.php;
Thanks. When entering http://www.mysite.com/radio/ it does load the correct script. However, since there is no file at the end of the URL, the WOL plugin does not execute.
I put "DirectoryIndex radio.php" in .htaccess for that directory. Is there something I can specify so that it will make the url appear as http://www.mysite.com/radio/radio.php ?
snakes1100
11-07-2012, 03:43 PM
Try This:
RewriteCond %{HTTP_HOST} ^example.com/radio/$
RewriteRule ^$ http://example.com/radio/radio.php [L,R=301]
WorldCraft
11-07-2012, 07:13 PM
Thanks for the help, it is working now. :)
snakes1100
11-07-2012, 07:48 PM
welcome
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.