Availability Calendar Script - Holiday Home Rental Booking Script - Ideal for keeping track of your villa or holiday home rentals on your website
Availability Calendar Script - Holiday Home Rental Booking Script - Ideal for keeping track of your villa or holiday home rentals on your website

Technical Support

UPDATES

French Language support v1.1 (Size 2.16kb) - Download File zip file
Spanish Language support v1.1 (Size 2.16kb) - Download File zip file
German Language support v1.1 (Size 2.16kb) - Download File zip file
Italian Language support v1.1 (Size 2.16kb) - Download File zip file Available soon

  • Installation Instructions
  1. Download the software into a folder on your computer (11.4kb .zip file)
  2. Check the downloaded folder to make sure it contains the following folders and files
    (CHMOD = File permission settings on your server, usually automatically set to default)

    css (CHMOD 755)
           calday.png
           caldayname.png
           caldaysel.png
           calendar.css (CHMOD 644)

    js (CHMOD 755)
           yearcal_java.js (CHMOD 644)

    public_html (Name of your public folder)
           config.php (CHMOD 644)
           editcal.php (CHMOD 644)
           viewcal.php (CHMOD 644) 
           yearcal.php (CHMOD 644)
           yearcalajax.php (CHMOD 644)
           cal.sql (Do not upload this to your server)
           readme.txt

  3. Open up your FTP program and upload all the files in to your main folder along side your index file
  4. Next you need to set-up your MySql database
  5. Create a new database for PHPMyAdmin and create your own user name and password
  6. Open up your PHPMyAdmin program and click Import click Browse and select the cal.sql file from the folder you downloaded the software to on your computer
  7. Click GO and this will install the table called bookings
  8. Now you need to configure the database, open up the file config.php using your PHP editor
  9. Enter the database details as described in the config file, similar to the example below.



  10. Your availability calendar should now be configured and ready to use.
  • Problem Solving

    I have installed the script but when I click a link in the admin area to booked a day nothing happens?
    Make sure that register globals are ON in your php.ini file. If you do not have a php.ini file please create one and put in this line register_globals = on; and save it in your main directory as file name php.ini
    If you cannot do this contact your site administrator and ask them to do this for you
    An alternative is to add this little script below into the top of your editcal.php and viewcal.php files

    <?php
    // AGTC - Make register_globals on v1.0a
    // AGTC Business Websolutions - Visit http://agtc.co.uk - Website Businesses For Sale
    if (!ini_get('register_globals')) {
    $reg_globals = array($_POST, $_GET, $_FILES, $_ENV, $_SERVER, $_COOKIE);
    if (isset($_SESSION)) {
    array_unshift($reg_globals, $_SESSION);
    }
    foreach ($reg_globals as $reg_global) {
    extract($reg_global, EXTR_SKIP);
    }
    }
    ?>

    I have installed the script but I have no sample data showing nor will it save and days that I click on?
    This is due to the database config file not being correctly set-up, you need to check the username, password and database name. refer to the example above.
    When the database is correctly configured you will see some sample entries of bookings.

    I have installed the script but its doesn't look like it should the calendar is not coloured and its not showing it as a table?
    This is because you haven't got all the folders in the main public_html folder running along side your main index file. You need to re-install all folders to in the same folder as your index file, if not the software cannot read the CSS style sheets to set-up and display the tables correctly.

    Your answer not here? then go to our contacts page to tell us what your problem is.