Hi everybody,
So i spent two days looking for a solution.
But i’m here.
So i buy a license, and i just want to upload the starter kit on my webserver OVH, and work directly in the server.
So with cyberduck i upload the files “starter-kit”, i rename it “www”.
And i add to the .htaccess :
RewriteEngine on
RewriteCond %{HTTP_HOST} !=localhost
RewriteCond %{HTTP_HOST} ^www. [NC,OR]
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L,NE]
and the config.php as:
return [
‘panel’ =>[
‘install’ => true
]
];
My OVH is running php 8.1.
And i get this error message on my website and my panel:
This page is currently offline. We are very sorry for the inconvenience and will fix it as soon as possible.
**
Advice for developers and administrators:**
**Change the PHP version to one supported by your version of Kirby **
So what could i do ?
Thank you