+ Reply to Thread
Results 1 to 3 of 3

Thread: Control Access By Time??
      
   

  1. #1
    bcw757's Avatar
    bcw757 is offline The Bowling Alley Guy
    Join Date
    Apr 2005
    Posts
    106

    Default Control Access By Time??

    Is there a script, that will look to see what time it is on the server, and at a certain time, use one set of code, and at another time use another set of code?

    Example. Because our center is not open 24 hours a day, on my webcam pages, it would be cool if I could get them to display,

    Sorry We're Closed

    Instead of pulling up the JavaClient for the webcam. I know this is beyond tech support, was just wondering if there was a way...

  2. #2
    bcw757's Avatar
    bcw757 is offline The Bowling Alley Guy
    Join Date
    Apr 2005
    Posts
    106

    Default

    Figured this out if anyone wants to know.

    Make sure you are creating a .php page with BVoda

    Code:
    <?php 
    // Get Time
    $now = localtime(time(), 1); ?>
    
    <?php
    // Check if current hour is between 23:00 (11:00 PM) and 10:59 AM
    
    if ((intval($now['tm_hour']) > 22) || (intval($now['tm_hour']) < 11)) {
    // Output is Closed
       echo '<center> <FONT style="FONT-SIZE:12pt" color="#FF0000" face="Arial"><B>WebCam Operates Only Between the hours of<br>11am - 11pm est</B></FONT> </center>';
    
       
    
    } 
    else {
    // Output Webcam
    echo 
    
    '<*****T CODE="SimpleCam*****t2.class" CODEBASE="local IP:8080/" WIDTH="320" HEIGHT="240">
    
    <PARAM NAME="SERVER" VALUE="Local IP Address">
    
    <PARAM NAME="PORT" VALUE="8080">
    
    <PARAM NAME="URI" VALUE="/video">
    
    </*****T>';
    
    } ?>

  3. #3
    VodaHost's Avatar
    VodaHost is offline General & Forum Administrator
    Join Date
    Mar 2005
    Location
    Wilmington, Delaware USA
    Posts
    11,390

    Default

    well done

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. 10 Commandments To Maximizing Your Time In Forum Participation
    By VodaBot in forum Start your own community forum
    Replies: 4
    Last Post: 07-27-2006, 07:13 PM
  2. How to get access to the CONTROL PANEL?
    By WannaBe in forum cPanel - Control Panel
    Replies: 12
    Last Post: 12-26-2005, 06:43 PM
  3. control panel
    By motoxnuthouse in forum General Support Issues
    Replies: 1
    Last Post: 09-08-2005, 02:35 AM
  4. cannot access control panel
    By bluetrooper in forum cPanel - Control Panel
    Replies: 1
    Last Post: 08-07-2005, 11:28 PM
  5. Control Panel Time Zone
    By corn in forum cPanel - Control Panel
    Replies: 1
    Last Post: 06-20-2005, 01:52 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49