javascript - 在通过 cPanel 安装 Magento 期间未定义 $

标签 javascript jquery magento installation cpanel

我正在尝试通过 Godaddy 将 Magento 社区版 1.9.2.1 安装到 cPanel 中。到目前为止,我已经将 tar 文件提取到文件管理器中,将 Magento 文件夹中的所有项目移至根目录,并为文件夹提供适当的运行权限。

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

My view going to my websites Url

我无法点击继续按钮,它不起作用。当我检查页面时,我收到了这些错误。

The errors I get when I inspect element

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

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

最佳答案

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

<?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/>";
?>

关于javascript - 在通过 cPanel 安装 Magento 期间未定义 $,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31845679/

相关文章:

JavaScript 在函数之前运行代码

jquery阻止正常滚动和动画

Javascript 实例和这个

javascript - 在删除其他类时添加 javascript 类后播放 CSS 动画不播放

php - 如何让 jQuery 根据所选图像填写隐藏表单

php - Magento - 仅在 url 中显示当前类别

zend-framework - 使用配置覆盖 Magento 中的 Zend 框架类?

xml - 使用 xml 扩展 magento 管理

javascript - 从中间向外处理数组

javascript - 如何根据所选元素的高度设置父级的高度