Installation guide
Installation from zip file
- Download the latest version from the official page.
- Extract the zip file.
- Upload the extracted content to your server or hosting. You can upload the files in the root directory, or in a subdirectory such as
/koblog/. - To upload the files, use an FTP client, WebFTP, or some tool provided by your hosting company.
- Visit your domain. If you uploaded the files in the root directory go to
https://www.example.com, if you uploaded the files in a subdirectoryhttps://www.example.com/koblog/. - Follow the Koblog Installer to configure the website.
Installation in a subdirectory
If Koblog is installed in a subdirectory, sometimes the file .htaccess in the installation directory has to be modified.
If Koblog for example is installed in the subdirectory koblog, the file .htaccess has to be modified as follows (line 9):
# Base directory
RewriteBase /koblog/
PHP Built-in web server
You can run Koblog quickly via the command line with the PHP Built-in web server.
$ git clone https://codeberg.org/koblog/koblog.git
$ cd koblog
$ php -S localhost:8000
With your favorite browser, visit the URL http://localhost:8000