我在我的MAC OS安裝好vtiger發現。PHP變量不能與vtigerCRM的代碼
訪問index.php
Notice: Undefined variable: mod_strings in /Applications/XAMPP/xamppfiles/htdocs/vtigercrm/modules/CustomView/CustomView.php on line 17
當我收到此錯誤,以便錯誤明確表示,有一個變量mod_strings
未被識別。
我去index.php
,我發現這一點:
include_once 'include/Webservices/Relation.php';
include_once 'vtlib/Vtiger/Module.php';
include_once 'includes/main/WebUI.php';
$webUI = new Vtiger_WebUI();
$webUI->process(new Vtiger_Request($_REQUEST, $_REQUEST));
正如你看到的,錯誤告訴我,該變量是在CustomView.php
。所以,我打開這個文件,我發現了以下:
require_once('data/CRMEntity.php');
require_once('include/utils/utils.php');
require_once 'include/Webservices/Utils.php';
正如你看到的,代碼將使用稱爲CRMEntity
PHP腳本,我打開這個文件,我發現這一點:
global $adb, $mod_strings;
所以看變量IS那裏。爲什麼我得到那個錯誤?
瓦您安裝了PHP的PHP版本嗎? –
@RalphMelhem我有XAMPP 5.6.12-0我不知道用哪個版本而來。 –
運行phpinfo();並讓我知道它顯示哪個版本的PHP,這可能是一個兼容性問題 –