Stars: 368
Forks: 112
Pull Requests: 58
Issues: 49
Watchers: 60
Last Updated: 2021-08-31 13:18:44
CMS based on Phalcon PHP Framework with modular structure
License: Other
Languages: PHP, Volt, HTML, CSS, JavaScript
Yona CMS - open source content management system (CMS). Written in Phalcon PHP Framework (version 3.x supported)
Has a convenient modular structure. Has simple configuration and architecture. Can be easily modified for any task with any loads.
Check ongoing development process in the branch v2.0.0
For using complete Docker stack check this branch php7.0
Run
composer create-project oleksandr-torosh/yona-cms -s dev
Or create composer.json file and install dependencies:
{
"require": {
"oleksandr-torosh/yona-cms": "dev-master"
}
}
composer install
After some time, do not forget run composer update for update dependencies:
composer update
Composer is required. It will install required libraries. If you have error with autoload.php file, the reason - missed composer update installation step.
chmod a+w data -R
chmod a+w public/assets -R
chmod a+w public/img -R
chmod a+w public/robots.txt
Example of configuration for php-fpm + nginx. Parameter APPLICATION_ENV has value “development”. Don’t forget remove it on production server.
server {
listen 80;
server_name yona-cms.dev;
index index.php;
set $root_path '/var/www/yona-cms/public';
root $root_path;
try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}
location ~ \.php {
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param APPLICATION_ENV "development";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
root $root_path;
}
location ~ /\.ht {
deny all;
}
}
.htaccess file are ready configured
Open http://yona-cms/admin and auth:
Change admin user password and delete yona user.
Edit /app/config/environment/development.php and setup database connection. Import MySQL dump file yona-cms.sql
https://phinx.org/ Library for creation, executing and rollback migrations
Creation migration class in /data/migrations
php vendor/bin/phinx create NewMigrationName
Status
php vendor/bin/phinx -e development status
Executing new migrations
php vendor/bin/phinx -e development migrate
Rollback
php vendor/bin/phinx -e development rollback
You can set default environment for your localhost user
sudo nano ~/.bashrc
Add line
export PHINX_ENVIRONMENT=development
Current version and updates in CHANGELOG.md