Questions tagged [vqmod]

A virtual modification system designed to avoid having to change core files, primarily in an MVC architecture and very popular with the OpenCart e-commerce package

vQmod™ (aka Virtual Quick Mod) is an override system designed to avoid having to change core files. Instead of making changes to the core files directly, the changes are created as xml search/replace script files. These script files are parsed during page load as each "source" core file is loaded with the "include" or "require" php functions. The source is then patched with the script file changes, and saved to a temporary file. That file is then substituted for the original during execution. The original source file is never altered. This results in a "virtual" change to the core during execution without any actual modification to the core files.

You can download VQmod from GitHub and from Google Code

165 questions
0
votes
1 answer

Open cart product page goes blank upon theme upload (vQmod on)

Here's the scenario: Fresh install of Open Cart. Fresh install of vQmod. Everything is working fine. But when I upload certain theme - purchased and licensed - the site has an issue. The home page is working, but the product page goes blank. I have…
0
votes
1 answer

OpenCart Blog module error

I have installed this module([http://www.opencart.com/index.php?route=extension/extension/info&extension_id=11671][1]) in my cart but when i am try to edit the blog module it outputs me these error can anybody help me out of this. Thankyou Notice:…
Kundan SIngh
  • 720
  • 2
  • 12
  • 34
0
votes
0 answers

xDebug Profiling to Trace Fatal Memory Error OpenCart with VQMOD

Certain users are getting a memory error on the a VQMOD-generated page in OpenCart reporting that the script has allocated nearly a gigabyte of memory! (1046478848 bytes) The reported page is vq2-system_library_cart.php and the error occurs upon…
MikeiLL
  • 6,282
  • 5
  • 37
  • 68
0
votes
1 answer

Opencart - Notice: Undefined index: saving in

I'm using Opencart 1.5.6.1. In this page: http://jefferson.com.my/test/index.php?route=product/results&category=[75]&path=0&filterProduct=1 There's error in some products, SAVE Notice: Undefined index: saving in…
TheDarkKnight
  • 35
  • 1
  • 9
0
votes
1 answer

Vqmod not adding script in opencart files

I have created a module for opencart.Now i have to change some default template files and php file so i used VQMOD .Now VQMOD Manager is running correctly but not adding the script that i have added. Sample code below.
Shivang Gupta
  • 3,139
  • 1
  • 25
  • 24
0
votes
1 answer

vqmod wildcard replace files in current folder and sub folder

I am trying to replace files in the current and sub folder without duplicating the vqmod code. So something like this using the path and comma separated name:
John Magnolia
  • 16,769
  • 36
  • 159
  • 270
0
votes
1 answer

Code add via vqmod so get error in OpenCart

I have add below code in core file( catalog\controller\product\category.php ) for Refine categories images. So, It is working fine. But, when, this same code add via vqmod (without change core file). So, It is working fine. But, if, not available…
HDP
  • 4,005
  • 2
  • 36
  • 58
0
votes
1 answer

VQCache file error in OpenCart PHP with $description

Finding this error in the OpenCart Error Log and not knowing what is causing it. PHP Notice: Undefined index: description in .../vqmod/vqcache/vq2-catalog_view_theme_margaretha_template_product_product.tpl on line 484 The code:
chance
  • 1
0
votes
2 answers

Opencart module modification for the place it is used in the catalog

I have a module for Advanced Reviews. By default you know the modules can be set to show up [in a specific page] in the following positions: content_top content_bottom content_left content_right I want to show it under one of the product page's tab…
user3077503
0
votes
1 answer

install vqmod for cake php

I am trying to install vqmod in cake php framework. I simply uploaded the vqmod folder to the root and created a controller file with following code and placed the file in /app/controllers class VqmodController extends AppController { var $name =…
Ali Khan
  • 21
  • 3
0
votes
1 answer

vqmod background image change throws php notice in opencart

I have installed background_image.xml inside vqmod xml folder to change background image in opencart. This plugins works perfectly but throwing a notice at the header. Notice: Undefined variable: server in…
Poles
  • 3,585
  • 9
  • 43
  • 91
0
votes
2 answers

Opencart VqMod Error

i have opencart 1.5.5.1 web site with VqMod(latest) Vqmod running fine but i had a problem with one xml file. xlm file has following lines
0
votes
1 answer

Vqmod Adding a new file

I'm trying to develop a new opencart module. I'm having some issues with the vqmoderator of Avant Osch. I really like it, but it seems the part for adding a new file is not working. I want my xml file to generate this new file. I can always add…
David Sánchez
  • 544
  • 8
  • 21
0
votes
3 answers

Opencart and VQMOD issue: Could not load controller in vq2-system_engine_controller.php

I am using Opencart 1.5.6.1 and VQMOD 2.4.1. I have just installed eWay Rapid 3.0 extension and in the checkout, I get this error: Notice: Error: Could not load controller payment/eway! in (.....)\vqmod\vqcache\vq2-system_engine_controller.php on…
user1448031
  • 2,172
  • 11
  • 44
  • 89
0
votes
1 answer

Find "require" with and without parentheses

So far i have this: (require|include)(_once)?\(([^)]+) which it checks for all require, require_once, include and include_once but it requires to be in the format of: require(FOO) I need to also find: require FOO so it needs to take into…
Nate Imus
  • 253
  • 1
  • 3
  • 10
1 2 3
10
11