Javascript 通过cPanel安装Magento时未定义$

Javascript 通过cPanel安装Magento时未定义$,javascript,jquery,magento,installation,cpanel,Javascript,Jquery,Magento,Installation,Cpanel,我正试图通过Godaddy将Magento社区版1.9.2.1安装到cPanel中。到目前为止,我已将tar文件解压缩到文件管理器中,将Magento文件夹中的所有项目移动到root中,并为文件夹授予了适当的运行权限 当我进入我的网站打开安装向导时,我看到 我无法单击“继续”按钮,因为它不工作。当我检查页面时,会发现这些错误 我认为这是一个jQuery问题。看起来该网站没有加载任何JavaScript。我尝试将jQuery CDN链接添加到头部,但没有效果。我已经将一个jQuery CDN保

我正试图通过Godaddy将Magento社区版1.9.2.1安装到cPanel中。到目前为止,我已将tar文件解压缩到文件管理器中,将Magento文件夹中的所有项目移动到root中,并为文件夹授予了适当的运行权限

当我进入我的网站打开安装向导时,我看到

我无法单击“继续”按钮,因为它不工作。当我检查页面时,会发现这些错误

我认为这是一个jQuery问题。看起来该网站没有加载任何JavaScript。我尝试将jQuery CDN链接添加到头部,但没有效果。我已经将一个jQuery CDN保存到我的文件系统中,并通过head调用了它,但仍然是空的


我不知道有什么问题。我的浏览器中启用了JavaScript,所以它应该可以工作。

我认为这应该是权限问题。我附加了一个代码,将其复制到一个新文件(例如magento-cleanup.php)中,然后上传到您的magento根目录,并使用url()运行它。它可以帮助您解决权限问题

<?php

## Function to set file permissions to 0644 and folder permissions to 0755

function AllDirChmod( $dir = "./", $dirModes = 0755, $fileModes = 0644 ){
   $d = new RecursiveDirectoryIterator( $dir );
   foreach( new RecursiveIteratorIterator( $d, 1 ) as $path ){
      if( $path->isDir() ) chmod( $path, $dirModes );
      else if( is_file( $path ) ) chmod( $path, $fileModes );
  }
}

## Function to clean out the contents of specified directory

function cleandir($dir) {

    if ($handle = opendir($dir)) {
        while (false !== ($file = readdir($handle))) {
            if ($file != '.' && $file != '..' && is_file($dir.'/'.$file)) {
                if (unlink($dir.'/'.$file)) { }
                else { echo $dir . '/' . $file . ' (file) NOT deleted!<br />'; }
            }
            else if ($file != '.' && $file != '..' && is_dir($dir.'/'.$file)) {
                cleandir($dir.'/'.$file);
                if (rmdir($dir.'/'.$file)) { }
                else { echo $dir . '/' . $file . ' (directory) NOT deleted!<br />'; }
            }
        }
        closedir($handle);
    }

}

function isDirEmpty($dir){
     return (($files = @scandir($dir)) && count($files) <= 2);
}

echo "----------------------- CLEANUP START -------------------------<br/>";
$start = (float) array_sum(explode(' ',microtime()));
echo "<br/>*************** SETTING PERMISSIONS ***************<br/>";
echo "Setting all folder permissions to 755<br/>";
echo "Setting all file permissions to 644<br/>";
AllDirChmod( "." );
echo "Setting pear permissions to 550<br/>";
chmod("pear", 550);

echo "<br/>****************** CLEARING CACHE ******************<br/>";

if (file_exists("var/cache")) {
    echo "Clearing var/cache<br/>";
    cleandir("var/cache");
}

if (file_exists("var/session")) {
    echo "Clearing var/session<br/>";
    cleandir("var/session");
}

if (file_exists("var/minifycache")) {
    echo "Clearing var/minifycache<br/>";
    cleandir("var/minifycache");
}

if (file_exists("downloader/pearlib/cache")) {
    echo "Clearing downloader/pearlib/cache<br/>";
    cleandir("downloader/pearlib/cache");
}

if (file_exists("downloader/pearlib/download")) {
    echo "Clearing downloader/pearlib/download<br/>";
    cleandir("downloader/pearlib/download");
}

if (file_exists("downloader/pearlib/pear.ini")) {
    echo "Removing downloader/pearlib/pear.ini<br/>";
    unlink ("downloader/pearlib/pear.ini");
}

echo "<br/>************** CHECKING FOR EXTENSIONS ***********<br/>";
If (!isDirEmpty("app/code/local/")) { 
    echo "-= WARNING =- Overrides or extensions exist in the app/code/local folder<br/>";
}
If (!isDirEmpty("app/code/community/")) { 
    echo "-= WARNING =- Overrides or extensions exist in the app/code/community folder<br/>";
}
$end = (float) array_sum(explode(' ',microtime()));
echo "<br/>------------------- CLEANUP COMPLETED in:". sprintf("%.4f", ($end-$start))." seconds ------------------<br/>";
?>