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
2
votes
1 answer

vqmod wildcard search using regex

As an example here I am trying to replace all $this->load->model(*);, the * represents a wildcard search/replace. What is the correct way to do this in a regex?
John Magnolia
  • 16,769
  • 36
  • 159
  • 270
2
votes
2 answers

installing an extension using vqmod

I recently installed VQmod for opencart and I've tried to add my first vQmod xml file. The VQmod installation was successful and I see the message VQMOD ALREADY INSTALLED! when I visit the /vqmod/install/ URL as expected The extension I tried to…
tomermes
  • 22,950
  • 16
  • 43
  • 67
1
vote
1 answer

How do I uninstall VQMOD from OpenCart 3.0.2.0?

I suspect VQmod is the source of some CPU usage issues I'm running into and desperately need to uninstall it. Yet I can find no documentation on how to do so. Any advice? Thanks!
Bill
  • 93
  • 1
  • 10
1
vote
2 answers

vQmod not working on Opencart 3

Opencart 3 has released but seems vQmod cannot working. Its deprecated, right? Or What can I need to do it work? Please let me know. Thanks
phinq
  • 131
  • 1
  • 1
  • 12
1
vote
3 answers

Opencart stylesheet.css not updating

I am using Opencart porto theme. But i am facing issue when i am updating stylesheet.css. Stylesheet.css effect appear on front end after an hour and more then an hour. That is too much frustrating for me. I have disable .htaccess file. disable…
Farrukh Zaman
  • 49
  • 1
  • 9
1
vote
1 answer

vQmod search not finding exact line

I have an instance of OpenCart which I am trying to modify with vQmod. Specifically I am trying to disable the Add to Cart button if a product's price is zero. However, the vQmod operation is failing with a SEARCH NOT FOUND (ABORTING MOD) error. Why…
user2181948
  • 1,646
  • 3
  • 33
  • 60
1
vote
1 answer

Opencart meta title in every page

I have a script for vqmod opencart made in this way:
1
vote
0 answers

OCmod/VQmod OpenCart PHP parse error: syntax error, unexpected '{', expecting '('

Can't get this ocmod to work. I even paid someone to get this to work but I'm beginning to think he doesn't know as much about opencart/php as he says. Parse error: syntax error, unexpected '{', expecting '(' in…
J-T
  • 9
  • 5
1
vote
0 answers

Calculate and display discounted price using vQmod on OpenCart

There is a php vqmod that adds how much of a discount a person gets for quantity but I need to to also have another thing that says "15% OFF if you share us, new price $HERE" I just need the PHP modified so the it takes the regular price of the item…
IncRediblE
  • 11
  • 3
1
vote
1 answer

how to restrict access to logged in users only in opencart using vqmod?

Currently when I go to https://domain.com I can see the full front page and only when I click on some item, I am directed to the login page. I would like to be directed to the login page right after typing https://domain.com so that unregistered…
Abin Jacob
  • 217
  • 6
  • 18
1
vote
1 answer

How to disable vqmod cache in Opencart 2.0?

Hello is there way how to disable all vqmod cache on opencart 2.0? I have tried clearing the cache from : vqmod/cache but it doesn't work. This is why i need to disable all cache .
deshi
  • 37
  • 3
  • 6
1
vote
1 answer

How to specify what files to ignore in a vQmod - Opencart 1.5

I am working on a payment module for an OpenCart 1.5 site, but there is a vQmod installed that adds a table row with an option for all payment modules. However, the way the vQmod is set up is such that it add these rows just before the tag…
Michael Emerson
  • 1,774
  • 4
  • 31
  • 71
1
vote
1 answer

Opencart - How to move vqmod folder outside of public_html?

For some security issues I need to put vqmod folder outside of public_html, How should I do this job to keep vqmod working?
Amin Gholibeigian
  • 1,325
  • 2
  • 9
  • 11
1
vote
1 answer

Error in path to OneAll registration template, VQmode,OpenCart 2.2

I'm new to Opencart and CMS development. After I've installed VQmod and OneAll social plugin to my Opencart 2.2.0.0, I've got this error when trying to checkout or register as new customer. Notice: Error: Could not load template…
Nelson Van
  • 13
  • 2
1
vote
1 answer

Website not loading properlly after clearing vqcache opencart

i have cleared all my vqcache and now my website does not load properly, When i click on a product i get a blank page , the header is messed up, when i go to check out there is no confirm button, how can i regenerate working vcache? Any suggestion…
Phantom
  • 51
  • 8
1 2
3
10 11