I have Windows 10, Xampp installed with PHP Version 5.x and I want to install OctoberCMS with Installation wizard https://octobercms.com/docs/setup/installation but I noticed th
OK Guys, Eventually I have come up with the solution to install OctoberCMS with PHP Version 5.x.
Remember, these steps can be varied based on your operating system and the things which you have installed in your system.
composer install
.php artisan october:env
.. You can run C:\xampp\php\php.exe artisan october:env
if you are having an error php is not recognized as an internal or external command.php artisan october:env
, .env
file is created. There you need to modify your database settings like database name, port (put 3306 for localhost etc) by opening this file which will be in same folder. php artisan october:up
or C:\xampp\php\php.exe artisan october:up
. It will create database tables and your admin user will be created with User: admin, Password: admin (You can change this after logging IN). And backend url will be something like http://example.com/backend. C:\xampp\htdocs\youproject\version419
to C:\xampp\htdocs\youproject\
. Hope this helps.