Technical discuss

在线修复 ZIP 包

  • btt
  • [btt]
  • Topic Author
  • New Member
  • New Member
More
05 Jan 2026 13:03 #985 by btt
New Topic
# 直接在线修复 ZIP 包
Code:
cd /var/www/html

# 创建临时目录
Code:
mkdir temp_fix cd temp_fix

# 解压
Code:
unzip -q ../pkg_socialpay_j5_v3.0.0.zip

# 修复 XML
Code:
sed -i 's/Social Authentication & Payment Component/Social Authentication & Payment Component/g' com_socialauth/socialauth.xml

# 重新打包
Code:
zip -qr ../pkg_socialpay_fixed_final.zip .

# 清理并安装
Code:
cd .. rm -rf temp_fix

# 安装
Code:
php -d error_reporting=0 cli/joomla.php extension:install --path=pkg_socialpay_fixed_final.zip

Please Log in or Create an account to join the conversation.