gpt4 book ai didi

php - Magento 连接错误 : Failed to open file

转载 作者:可可西里 更新时间:2023-11-01 12:31:22 25 4
gpt4 key购买 nike

我在使用 magento connect 安装扩展时遇到了一些问题。当我开始安装扩展程序时,outline 终端会显示如下内容:

Checking dependencies of packages Installing package community/OrganicInternet_SimpleConfigurableProducts 0.7.4

CONNECT ERROR: Failed to open file /var/www/magento/downloader/.cache/community/OrganicInternet_SimpleConfigurableProducts-0.7.4/app/code/community/OrganicInternet/SimpleConfigurableProducts/Catalog/Model/Product/Type/Configurabl

我检查了路径并找到了请求的文件。如您所见,权限应该没问题;-)

drwxrwxrwx 2 www-data www-data 4.0K Nov 3 11:10 Configurabl

我不知道该怎么办。我使用的是 PHP 5.5.4-1 - 所以应该没问题。

你知道要做什么吗?

最佳答案

开始

downloader\lib\Mage\Archive\Tar.php

查找方法

_extractFileHeader().

然后找到附近的第563行代码:

if (!($header['name'] == '././@LongLink' && $header['type'] == 'L')) {
$header['name'] = trim($header['name']);
return $header;
}

并将其替换为:

if (!(trim($header['name']) == '././@LongLink' && $header['type'] == 'L')) {
$header['name'] = trim($header['name']);
return $header;
}

enter image description here

查看开发。评论:enter link description here

关于php - Magento 连接错误 : Failed to open file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19752021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com