Jump to content

Making Custom Controller - 404 when accessing


Recommended Posts

Hello,

I am trying to build a controller. My controller don't need to render anything, just do some stuff and when redirect to order controller. So far I have:

class CustomControllerCore extends FrontController
    {
        public $php_self = 'custom';
        public function init()
        {
            parent::init();
        }
        public function initContent()
        {
            parent::initContent();
        }
	}

I can see it on Traffic and SEO tab, can assign friendly URL to access it. I tried friendly URL, index?php=controller=custom

Controller file is uploaded to PS ROOT/controllers/front/

Edited by rhythm (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...