Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

KalipsoNext-based, open source, powerful and experimental content management system.

License

Notifications You must be signed in to change notification settings

KalipsoCollective/KalipsoCMS

Repository files navigation

Warning This repo has been moved to the archive. For updated and modernized versions, please check the single repo at KalipsoCollective/KalipsoX.

KalipsoCMS - KalipsoNext-based, open source, powerful and experimental content management system.

Requirements

  • Apache >= 2.4.5 or Nginx >= 1.8
  • PHP >= 7.1
  • MySQL >= 5.6

Documentation

This documentation has been created to give you a quick start.

Installation

Tricks

Server Configurations (Apache .htaccess)

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php [L]
</IfModule>

Server Configurations (Nginx nginx.conf)

location / {
	if (!-e $request_filename){
		rewrite ^(.+)$ /index.php/$1 break;
	}
}

About

KalipsoNext-based, open source, powerful and experimental content management system.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published