Page 1 of 1

Fatal error: Class 'PhocaCartTax' not found

Posted: 21 Mar 2017, 10:29
by zlodij13
I have message when trying registration, what wrong i am doing?
Fatal error: Class 'PhocaCartTax' not found in /home/j5010t100/public_html/administrator/components/com_phocacart/libraries/phocacart/price/price.php on line 141

Re: Fatal error: Class 'PhocaCartTax' not found

Posted: 23 Mar 2017, 14:42
by Jan
Hi, it can happen that some module does not have loaded the PhocaCartTax library.

This will be solved in next version as new autoload for classes will be used.

For now,

please open:
modules\mod_phocacart_product\mod_phocacart_product.php

and change FROM:

Code: Select all

phocacartimport('phocacart.price.price');
TO:

Code: Select all

phocacartimport('phocacart.tax.tax');
phocacartimport('phocacart.price.price');
Jan