403 Access Denied Error When Accessing Custom Dispatch In Vendor Panel

Hi!

I'm attempting to create a custom dispatch for the backend of the site. I have a controller that I placed in app/addons/my_changes/backend, and I placed the .tpl file in design/backend/templates/addons/my_changes/views/.

I'm able to access and view the page on the admin panel, however when I tried going to the same page on the vendor panel, I get a

403

Access denied
You don't have permission to access the page.

Any idea why the vendor panel can't see my custom dispatch?

Hello

Please try

design/backend/templates/addons/my_changes/views/my_changes/. tpl

Best regards

Robert

Hello

Please try

design/backend/templates/addons/my_changes/views/my_changes/. tpl

Best regards

Robert

Hi, sorry tried creating that directory and placing the tpl file straight there, that didn't work. Transferring the .tpl files there actually made it 404 even in the admin panel.

Right now I have I have a .tpl named view.tpl, which is stored in

design/backend/templates/addons/my_changes/views//view.tpl

When I go to

?dispatch=.view

it works. But when I go to

?dispatch=.view

it gives me the error.

Is this a permissions thing? If so, where do I change it?

Yes, you should extend the following schema with vendor permissions

app/schemas/permissions/vendor_multivendor.php

Yes, you should extend the following schema with vendor permissions

app/schemas/permissions/vendor_multivendor.php

That worked, thank you!

You are welcome!