Dashboard single page controller not firing
PermalinkMy goal is pretty simple: redirecting the dashboard/project to dashboard/project/subproject_mapping
In my controller for the project 'page' I have this code:
namespace Application\Controller\SinglePage\Dashboard; use \Concrete\Core\Page\Controller\DashboardPageController; class Project extends DashboardPageController { public function view() { $this->redirect('/dashboard/project/subproject_mapping'); } }
This code is not fired when I go to dashboard/project
However I also have a controller for the subproject_mapping page... This controller DOES fire.
The code in that controller:
namespace Application\Controller\SinglePage\Dashboard\Project; use \Concrete\Core\Page\Controller\DashboardPageController; class SubprojectMapping extends DashboardPageController { public function view() { } }

I've looked at the php error log and apache error log, but no errors were logged.
If you add a project.php into the single pages that just spits out some content, does the content show up?
I did however get results when creating a new dashboard page (with a diffirent name) directly under the dashboard folder... then the controller does fire. So this is a solution I can work with. (only 1 dashboard page necessairy at this time)