Hello @coolcsn,
I am a beginner with Zf2 and in particular Doctrine. I have followed the README instructions and the video tutorial without successful. Please help.
Thank you.
My environment is as follows:
MAMP Pro
Note:
I also tried coolcsn/csn-user:dev-master but then followed the video tutorial. I also went to earlier versions of php, zf2, and doctrine in various combination.
What works:
localhost resolves to the "Welcome to Zend Framework 2" index page
.htaccess resolves to "A 404 error occurred"
./vendor/bin/doctrine-module returns with no errors
./vendor/bin/doctrine-module migrations:diff creates the appropriate migration file
./vendor/bin/doctrine-module migrations:migrate updates the database schema
import of the Sampledata.sql
What does not work:
localhost/user
Current configuration
composer.json
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zendframework": "~2.5",
"doctrine/doctrine-orm-module": "^1.0",
"doctrine/migrations": "^1.4",
"coolcsn/csn-user": "^0.1.0"
}
application.config.php
'modules' => array(
'Application',
'DoctrineModule',
'DoctrineORMModule',
'CsnUser',
),
Hello @coolcsn,
I am a beginner with Zf2 and in particular Doctrine. I have followed the README instructions and the video tutorial without successful. Please help.
Thank you.
My environment is as follows:
MAMP Pro
Note:
I also tried coolcsn/csn-user:dev-master but then followed the video tutorial. I also went to earlier versions of php, zf2, and doctrine in various combination.
What works:
localhost resolves to the "Welcome to Zend Framework 2" index page
.htaccess resolves to "A 404 error occurred"
./vendor/bin/doctrine-module returns with no errors
./vendor/bin/doctrine-module migrations:diff creates the appropriate migration file
./vendor/bin/doctrine-module migrations:migrate updates the database schema
import of the Sampledata.sql
What does not work:
localhost/user
Current configuration
composer.json
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zendframework": "~2.5",
"doctrine/doctrine-orm-module": "^1.0",
"doctrine/migrations": "^1.4",
"coolcsn/csn-user": "^0.1.0"
}
application.config.php
'modules' => array(
'Application',
'DoctrineModule',
'DoctrineORMModule',
'CsnUser',
),