1

hi friends i am working on open cart Version 2.0.0.0 to build an e-commerce site. i had downloaded some vqmod modules and integrate it in my localhost and its work fine. if i uploaded the same files in my live site. the vqmod changes for frond end file are not working. i have tested with my own vqmod files to its to works for admin files and doesn't for front end files.

<?xml version="1.0" encoding="utf-8"?><modification>
<id>test content</id>
<version>1.0.3</version>
<vqmver>2.2.1</vqmver>
<author>test</author>
<decription><![CDATA[
    /*
        This file is part test content
    */
    ]]>
</decription>

<file name="catelog/view/template/common/menu.tpl" error="log">
    <operation error="log">
        <search position="after"><![CDATA[
            <li><a href="<?php echo $information; ?>"><?php echo $text_information; ?></a></li>
            ]]>
        </search>
        <add trim="true"><![CDATA[
            <li><a href="<?php echo 'jinna'; ?>"><?php echo "jinna"; ?></a></li>
            ]]>
        </add>
    </operation>
</file></modification>

and this doesn't

<?xml version="1.0" encoding="utf-8"?><modification>
<id>test content</id>
<version>1.0.3</version>
<vqmver>2.2.1</vqmver>
<author>test</author>
<decription><![CDATA[
    /*
        This file is part test content

    */
    ]]>
</decription>

<file name="catalog/view/theme/*/template/common/header.tpl" error="log">
    <operation error="log">
        <search position="after"><![CDATA[
            </header>
            ]]>
        </search>
        <add trim="true"><![CDATA[
            <li><a href="<?php echo 'jinna'; ?>"><?php echo "jinna"; ?></a></li>
            ]]>
        </add>
    </operation>
</file></modification>

1 Answers1

1

As you said in comment that

enter image description here

it means, Vqmod is not installed on server.

Install vqmod

To check vqmod is installed on your server or not. Follow the url

http://your-domain/vqmod/install/

Also give the 0777 permission to following folder and files.

  1. vqmod/vqcache folder
  2. vqmod/mods.cache file
zed Blackbeard
  • 760
  • 12
  • 30
  • i does't missed. it was omitted by the stackoveflow editor when it comes in new line. – Mohamedali Jinna Jan 25 '16 at 13:05
  • its all working in my local machine's localhost. if i click modification inside admin panel its modified all the files in localhost. if i do the same in live site admin panel, its only change the modification files which wanted to reflect in admin panel... – Mohamedali Jinna Jan 25 '16 at 13:09
  • Now what is issue coming .. ? – zed Blackbeard Jan 25 '16 at 13:11
  • have you gave 0777 permission to `vqmod/vqcache` folder and `vqmod/mods.cache` file on live server. – zed Blackbeard Jan 25 '16 at 13:17
  • the header.tpl file doen't change with the text i mentioned, after tag. sorry zed Blackbeard. i have no such files inside vqmod folder.. – Mohamedali Jinna Jan 25 '16 at 13:17
  • i had removed this 2.2.1 and it raised error when i clicked modification refresh button under admin panel – Mohamedali Jinna Jan 27 '16 at 11:24
  • Have you checked vqmod is installed or not properly and also show me the vqmod version . File version is depend upon the vqmod version. If the vqmod version is greater that this. So it will not run. – zed Blackbeard Jan 27 '16 at 11:31