Make sure your environment is set up to run classroombookings.
classroombookings is web-based software - it requires web and database server software to run it, and a web browser to access it. You should have sufficient knowledge of setting up and maintaining these servers.
These requirements apply to version 2.8 onwards.
mod_rewrite
for clean URLs (optional)If you are using Nginx, you may need to use the following directive in your main /
location:
server {
...
location / {
try_files $uri $uri/ /index.php?$query_string;
}
...
}