Cookies help us provide better user experience. By using our website, you agree to the use of cookies.

Your question is not in the following list? Get support!

Check your email settings in the Admin > Settings > Email settings.
According to your email server (or provider) specifications, better use SMTP and SMTP authentication.
Use also the correct port and encryption :

  • SSL = port 465
  • TLS = port 587

If your server is not configured to make this redirection automatically you can perform this action in the file .htaccess in the root of your website. Open this file and add the following lines after "RewriteEngine On".

If you want to redirect all HTTP URL to the equivalent HTTPS URL, use this code:

RewriteCond %{HTTPS} !=on
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Conversely, if you want to redirect all HTTPS URL to the equivalent HTTP URL, use this code:

RewriteCond %{HTTPS} on
RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Create your own translation files for your languages if they are missing in the folder /js/plugins/jquery.event.calendar/js/languages/.
Use the 2 caracters iso code of the language.
E.g. for the language "english", the iso code is "en", so the file will be named "jquery.event.calendar.en.js".

  1. Don't forget to define an alias (string of characters without spaces or accents displayed in the URL of the page) for your pages or articles for each language. You can specify the alias in Admin > Modules > Pages (or Articles) > Edit/New > Alias.
    E.g. http://www.mywebsite.tld/mypage (mypage is the alias of the page)
     
  2. Make sure the file htaccess.txt has been renamed into .htaccess and the variable {DOCBASE} in this file (line 67) has been replaced with the document root.
    RewriteRule ^ - [E=BASE:{DOCBASE}] [L]
    
    Must be replaced with:
    RewriteRule ^ - [E=BASE:/] [L]
    
    If your website is installed in a subfolder (for example /test), the correct syntax will be:
    RewriteRule ^ - [E=BASE:/test/] [L]
    

When you add a room in the admin panel, you define a default price, but this price is not used to check availabilities. You need to add rates (prices) for each room in the admin panel: Admin > Modules > Rates

Make sure you've defined a "Number of people" and a "Price / night" (if the price is per room) OR a "Price / extra adult or child / night" (if the price is per person) when you add you rates.

As per Google recent announcement, usage of the Google Maps APIs now requires a key. If you are using the Google Maps API on localhost or your domain was not active prior to June 22nd, 2016, it will require a key going forward.
Add your own Google Maps API key in the settings section of the admin panel. Here is the link to get your key: Register your application for Google Maps JavaScript API in Google API Console.