Reputation: 709
I installed October : https://octobercms.com/ on my wamp server and not sure how to access the visual interface I see in tutorials. Could anyone point me in the right direction on documentation on how to access it or let me know how to get to the visual interface?
Upvotes: 0
Views: 78
Reputation: 4690
OctoberCMS backend interace is available (by default) in the /backend
route.
Access: yourapp.localhost/backend
.
In the installation process and after installed you can custom this updating the config/cms.php
file.
/*
|--------------------------------------------------------------------------
| Back-end URI prefix
|--------------------------------------------------------------------------
|
| Specifies the URI prefix used for accessing back-end pages.
|
*/
'backendUri' => '/backend',
Upvotes: 1