Multi-themes and Language, currently English and Portuguese. Written in PHP and using SQLite database, it is best suited to small and medium-sized hotels or hostels.
- PHP 7.2+
- php-sqlite3
https://myhotel.nunofcguerreiro.com
Clone or Download the Repository
Settings in include/conf.php file.
Default User and Passowrd is "admin". Make sure to change this.
-
Calendar API Example. https://myhotel.nunofcguerreiro.com/include/do_post.php?do=calendar_api&from=2024-08-01&to=2024-08-07&content=xml&lotation=1&type=single&key=4f3ecd4898224267a50c
-
Nginx SEO Links Configuration Example.
server {
...
try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?page=$1;
}
location ~ /\.sqlite {
deny all;
}
}