Administrators And Customers Management Pages Fail/blank

version 4.3.10 in Cart Administration

When I click on Customers > Administrators or Customers > Customers all I get is a blank page. There isn't even any source code to view.

The link for the Admins is going to http://domainnamehere.com/cscart/adminfilename.php?dispatch=profiles.manage&user_type=A

I have no problem logging in as an admin and the admin user is in the database. This is a brand new development installation of 4.3.10 with all of the data being imported from a 2.x version of the store.

Anyone have any idea why this dispatch fails?

version 4.3.10 in Cart Administration

When I click on Customers > Administrators or Customers > Customers all I get is a blank page. There isn't even any source code to view.

The link for the Admins is going to http://domainnamehere.com/cscart/adminfilename.php?dispatch=profiles.manage&user_type=A

I have no problem logging in as an admin and the admin user is in the database. This is a brand new development installation of 4.3.10 with all of the data being imported from a 2.x version of the store.

Anyone have any idea why this dispatch fails?

You need to enable development mode to see the errors. In config.local.php file:

define('DEVELOPMENT', true);
error_reporting(E_ALL);
ini_set('display_errors', 'on');

As alternative, just check server error logs

Thanks. Had a template-style comment in a php file rather than a php-style comment. Didn't think to display the errors. duh Solved