我正在寫VQMod XML來編輯opencart中的config.php,我在下面寫了XML並將其保存在XML文件夾中。Vqmod xml腳本不適用於opencart config.php
<modification>
<id>VQMOD CORE FOR OPENCART - DO NOT REMOVE</id>
<version>1.4.x and 1.5.x</version>
<vqmver>2.2.1</vqmver>
<author>Senthil</author>
<file name="./config.php">
<operation>
<search position="after"><![CDATA[
define('DB_PREFIX', 'op');
]]></search>
<add><![CDATA[
define('HTTP_IMAGE_2', 'http://localhost/opcart/image/');
define('HTTPS_IMAGE_2', 'http://localhost/opcart/image/');
define('DIR_IMAGE_2', '/Users/[username]/Sites/opcart/image/');
]]></add>
</operation>
</file>
但它不是在創建文件夾vqcache新的緩存文件作爲其做的其他文件。日誌文件中沒有錯誤。我已經向vqcache文件夾和配置文件寫入權限。任何幫助都是有用的。
謝謝。我猜,以前,我現在清楚。 – Senthil