该网站的 Javascript 和 CSS 不起作用,因为包含的路径似乎不起作用,PHPStorm 显示找不到该路径。但是路径是正确的,如图 1:
我认为问题是 APP_DIR,将其删除,PHPStorm 不再突出显示路径。
但我无法删除 APP_DIR,因为它链接到包括 CSS 在内的许多文件。尝试了3天,我不知道,请帮助我。
出于调试目的,请尝试
if ( !defined('APP_DIR') ) {
trigger_error('APP_DIR not defined', E_USER_ERROR);
}
if ( substr(APP_DIR, -1)!=='/' && substr(APP_DIR, -1)!=='\\' ) {
trigger_error("APP_DIR has no trailing slash. APP_DIR.'conf/....' wont work, but APP_DIR.'/conf/...' might");
}
/** Configuration of SI */
include_once APP_DIR.'conf/site.php';