Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Baikal ====== ===== Installation ===== ==== Apache ==== === .htaccess (for shared webhosting) === Put this file in your domain's docroot: <file apache .htaccess> RewriteEngine on RewriteCond %{HTTP_HOST} ^baikal.example.com$ [NC,OR] RewriteCond %{REQUEST_URI} !html/ RewriteRule .well-known/carddav /dav.php [R,L] RewriteRule .well-known/caldav /dav.php [R,L] RewriteRule (.*) /html/$1 [L] </file> On some web hosting installations (e.g. Netcup) you have to add another rule to rewrite the trailing slash: <file apache .htaccess> RewriteRule ^dav.php/ /dav.php [L] </file> ===== Troubleshooting ==== ==== Incomplete installation ==== >Baïkal dependencies have not been installed. Please, execute "composer install" in the folder where you installed Baïkal.'); } require PROJECT_PATH_ROOT . 'vendor/autoload.php'; # Bootstraping Flake \Flake\Framework::bootstrap(); # Bootstrapping Baïkal \Baikal\Framework::bootstrap(); ?> **Remove** from nginx configuration: <file nginx example.conf> types { text/html html htm shtml php php5; }</file> ==== 404 ==== Document Root has to be `./html`! ==== LogicExceptionRequested uri (/dav.php) is out of base uri (/html/dav.php/) ==== Solution: remove ''PROJECT_BASEURI .'' from the paths specified in ''/admin''. ==== Baïkal was not able to establish a connexion to the configured MySQL database (as configured in Specific/config.system.php). ==== === in docker === MySQL extension for php is not installed. <code bash>docker exec -it baikal_php_1 docker-php-ext-install pdo_mysql</code> Last modified: 2024-07-05 14:31