I had an application to launch cakephp as our company's public website, the boss asked me to create another application for managing operations in the office using the same user accounts and their privileges.
On the local development PC, the project is located in D:/wamp/www/blackstone
I just copied D:/wamp/www/blackstone/app and pasted it in the same place, calling it office .
Application folder paths:
D:/wamp/www/blackstone/app D:/wamp/www/blackstone/office
I have included "isAutorized", "Auth" and "Session" in the "office" appController to prevent login verification. Applications are accessed using the following URLs:
localhost/blackstone localhost/blackstone/office
I want to access a blackstone session in office . I have yet to find a solution.
I currently have core.php in blackstone like:
Configure::write('Session', array( 'defaults' => 'cake', 'cookie' => 'my_app', 'timeout' => 500,
core.php in office app like:
Configure::write('Session', array( 'defaults' => 'cake', 'cookie' => 'my_app', 'timeout' => 500,
and this has led to much larger changes.
What can I try and change?