-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.5
-- PHP version -- : 7.0
-- Browser(s) name and version -- : Chrome v56
I found an error in the plg_system_hikashopanalytics plugin where the rendered HTML is gone, thus resulting in a white page. This happens in all versions of Hikashop, but they have to be on PHP 7.
It turns out that the preg_replace in the method onAfterRender(). This can be verified by checking for preg errors with this: preg_last_error(). For me, it returned an error code of 6.
According to
this source
, this is a new code specific to PHP 7 and the only way to fix it is to turn off the PHP variable, pcre.jit.
Please add a fix for this.