Page 1 of 1

Customers Page: is currently unable to handle this request

Posted: Wed Mar 16, 2016 5:40 am
by TheMatrix1
Version 2.2.0.0

New manual installation (not using Softaculous). This error only appears at the Admin, Customers, Customers page, no other page.

At www. my domain.com/admin/index.php?route=customer/customer&token=...
In Admin area at Customers, Customers, the following error appears when using Chrome.

The http:// www. my domain.com page isn’t working
http:// www. my domain.com is currently unable to handle this request.
500

Other OC sites version 1.5, 2.x, 2.1.0.2 on the same server does not have the same error.

Did another test OC 2.2.0.0 installation using Softaculous on same server. Before making any configuration changes, get exact same error.

Any advice appreciated, have checked several items (all files uploaded, .htaccess, config.php, admin/config.php) and tried suggestions form other forum posts.

Re: Customers Page: is currently unable to handle this reque

Posted: Thu Mar 31, 2016 4:18 am
by TheMatrix1
Solved:

http://stackoverflow.com/questions/3593 ... rt-when-cl

admin/controller/customer/customer.php

Missing ) on $custom_field['validation']

Add a ), remove a )
Before: !empty($custom_field['validation'] && $custom_field['location'] == 'address')) &&
After: !empty($custom_field['validation']) && $custom_field['location'] == 'address') &&