Skip to content

vamshop/vamshop-core

Repository files navigation

VamShop App

Vamshop is a free, open source, content management system for PHP, released under MIT License.

It is powered by CakePHP MVC framework.

Build Status Scrutinizer Code Quality Code Coverage

Requirements

  • Apache with mod_rewrite
  • PHP 5.6 or higher
  • MySQL 5.7 or higher

Installation

Installation using composer

The preferred way to install Vamshop is by using composer.

composer create-project vamshop/vamshop-app ./

bin/cake vamshop/install.install -u user -p password -d Mysql -n databasename -h localhost -t 3306 admin password

OR

bin/cake vamshop/install.install

!!!! Empty MySQL database must be created before installation.

VamShop installation from scratch: https://youtu.be/deRTZh8HqT0

VamShop installation from scratch. CakePHP, Composer, Github, Vagrant, EC2, AWS, AZURE, Docker

If you want hack on vamshop, you can use the --prefer-source flag, ie:

`composer create-project --prefer-source vamshop/vamshop-app myapp`

Web based installer

  • Extract the archive. Upload the content to your server.
  • Create a new MySQL database (charset utf8mb4 with utf8m4_unicode_ci collation)
  • Visit http://your-site.com/ from your browser and follow the instructions.

VamShop web based installation: https://youtu.be/pVZXHQpok1g

VamShop web based installation. CakePHP, Composer, Github, Vagrant, EC2, AWS, AZURE, Docker

Manual installation

  • Extract the archive. Upload the content to your server.
  • Locate your config directory, and rename the following files:
    • config/app.default.php to config/app.php, and edit the details.
  • You can access your admin panel at http://your-site.com/admin. The installer should display a page for you to create the administrative user.

Links