I have had the same issue with the error_reporting ending up with 0 after execution of all my XML files in VQmod 1.2.3. This problem of corrupting the error_reporting doesn't exist in VQmod 2.0 which I have been testing for the past few weeks, so I just kept using that version. Hopefully Q will release it soon to the public because it works quite well, haven't had any issues with this new version.affect wrote:I've been trying to find out why do I get blank pages instead of errors sometimes although I have error_reporting and display_errors set correctly everywhere.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Always good newsJNeuhoff wrote:Hopefully Q will release it soon to the public because it works quite well, haven't had any issues with this new version.

im excited for the new release
and your auto installer Jay would be most useful to many
i think ill wait for 2.0 before giving vq a try!
the auto installer already exists in the latest version. He just has to update it for 2.0 before release, and he's trying to figure a way to check that the changes actually got made to the files. For the vast majority of people the auto-installer in the existing version works fine.thisisworldwide wrote:this is a page of promise haha
im excited for the new release
and your auto installer Jay would be most useful to many
i think ill wait for 2.0 before giving vq a try!
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
I am afraid I came accross a bug in the new VQmod 2.0, as follows:JAY6390 wrote:Always good newsJNeuhoff wrote:Hopefully Q will release it soon to the public because it works quite well, haven't had any issues with this new version.Hopefully it'll be released this week. Will work on the auto installer the next few days to see what I can do about getting it to check if a file is written or not
Given the XML file which modifies the system/engine/controller.php, by adding some functions at the bottom:
Code: Select all
<modification>
<id>OpenCart 1.4.9.x core file modifications</id>
<version>1.4.9.x</version>
<vqmver>2.0</vqmver>
<author>JNeuhoff</author>
<file name="system/engine/controller.php">
<operation>
<search position="bottom" offset="1"><![CDATA[]]></search>
<add><![CDATA[
public function startsWith( $haystack, $needle ) {
if (strlen( $haystack ) < strlen( $needle )) {
return FALSE;
}
return (substr( $haystack, 0, strlen($needle) ) == $needle);
}
public function endsWith( $haystack, $needle ) {
if (strlen( $haystack ) < strlen( $needle )) {
return FALSE;
}
return (substr( $haystack, strlen($haystack)-strlen($needle), strlen($needle) ) == $needle);
}
]]></add>
</operation>
</file>
</modification>
Code: Select all
protected function fetch($filename) {
$file = DIR_TEMPLATE . $filename;
global $vqmod; $file = $vqmod->modCheck($file);
if (file_exists($file)) {
extract($this->data);
ob_start();
require($file);
$content = ob_get_contents();
ob_end_clean();
return $content;
} else {
exit('Error: Could not load template ' . $file . '!');
}
}
0
?>
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
The first modification of the system/engine/controller.php from the vqmod_opencart.xml works fine. It is the other VQmod XML shown in my previous message which causes it to go wrong.JAY6390 wrote:Is this a code bug or the oc xml bug for the template fetch?
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Code: Select all
Notice: Undefined variable: order_id in /home4/zigzterc/public_html/shop/catalog/controller/account/order.php on line 110Warning: Cannot modify header information - headers already sent by (output started at /home4/zigzterc/public_html/shop/index.php:104) in /home4/zigzterc/public_html/shop/vqmod/vqcache/vq-system_engine_controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home4/zigzterc/public_html/shop/index.php:104) in /home4/zigzterc/public_html/shop/vqmod/vqcache/vq-system_engine_controller.php on line 29

using 1.5.x open cart
and 1.2.3 Vqmod.
used the installer to install it.
and Yes CHMOD'd the files.
Ziggy
Try removing the vqmod_opencart.xml file and see if the error goes away. This is nothing related to vQmod itself. So perhaps a bug in the core or in another vQmod script.srunyon1 wrote:since adding this mod I get this error on my order update links
please Help..Code: Select all
Notice: Undefined variable: order_id in /home4/zigzterc/public_html/shop/catalog/controller/account/order.php on line 110Warning: Cannot modify header information - headers already sent by (output started at /home4/zigzterc/public_html/shop/index.php:104) in /home4/zigzterc/public_html/shop/vqmod/vqcache/vq-system_engine_controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home4/zigzterc/public_html/shop/index.php:104) in /home4/zigzterc/public_html/shop/vqmod/vqcache/vq-system_engine_controller.php on line 29
using 1.5.x open cart
and 1.2.3 Vqmod.
used the installer to install it.
and Yes CHMOD'd the files.
Ziggy
Using OpenCart 1.5.1.1 and VQMod 1.2.3
Warning: Illegal offset type in isset or empty in /system/library/cart.php on line 275Warning: Cannot modify header information - headers already sent by (output started at /index.php:104) in /vqmod/vqcache/vq-system_engine_controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /index.php:104) in /vqmod/vqcache/vq-system_engine_controller.php on line 29
again, not related to vQmod but instead to the script you are running or a bug in the corehellogoodbye wrote:Not sure if this is known or posted, but I just got this when selecting Remove on the cart page and clicking Update Cart. I had also applied a coupon code.
Using OpenCart 1.5.1.1 and VQMod 1.2.3
Warning: Illegal offset type in isset or empty in /system/library/cart.php on line 275Warning: Cannot modify header information - headers already sent by (output started at /index.php:104) in /vqmod/vqcache/vq-system_engine_controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /index.php:104) in /vqmod/vqcache/vq-system_engine_controller.php on line 29
Has v2.0 been released yet? see some ppl refering to using it, but can't find link here or on your vQmod siteQphoria wrote:Going to release vQmod 2.0 for public use some time this weekend. Likely start a new thread as this one is getting long and difficult to traverse
Live Long and Prosper!
Degsey :-]
Visit us at :
http://www.Supreme-Ink.com
Users browsing this forum: No registered users and 9 guests