Sunday, 15 September 2013

php - Omtex mobile version account/login error -



php - Omtex mobile version account/login error -

i installed omtex extension on website when seek access business relationship or seek register brings fatal error:

call fellow member function modcheck() on non object in vqmod/vqcache/vq2-system_engine_controller.php line 91

here code:

class="lang-php prettyprint-override"> // line 80 here below ob_start(); require(vqmod::modcheck(vqmod::modcheck(dir_template . $this->template))); $this->output = ob_get_contents(); ob_end_clean(); homecoming $this->output; } else { // line 91 here below $file_default = $vqmod->modcheck(dir_default_template . $this->template); if (file_exists($file_default)) { extract($this->data); ob_start(); require(vqmod::modcheck(vqmod::modcheck($file_default))); $this->output = ob_get_contents(); ob_end_clean(); homecoming $this->output; }

you're calling statically here:

require(vqmod::modcheck(vqmod::modcheck(dir_template . $this->template))); ^^^^^^^^^^^^^^^---

and various other places, method here:

$file_default = $vqmod->modcheck(dir_default_template . $this->template);

and in couple places. $vqmod object? error suggests it's not.

php opencart

No comments:

Post a Comment