WordPress的插件滑块旋转错误 [英] Wordpress Plugin Slider Revolution Error

查看:230
本文介绍了WordPress的插件滑块旋转错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法摆脱以下错误.我激活插件后出现错误.

I am unable to get rid of this following error. The error shows up after I activate the plugin.

Slider Revolution error: could not unzip into the revslider/public/assets/ folder, please make sure that this folder is writable. 

我将chmod 777改成revslider/public/assets/,但没有用.

I did chmod 777 to revslider/public/assets/ but with no use.

我在浏览器中也遇到了这个错误.

I also got this error in browser..

Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.
This includes make eliminates the revolution slider libraries, and make it not work.
To fix it you can:
    1. In the Slider Settings -> Troubleshooting set option: Put JS Includes To Body option to true.
    2. Find the double jquery.js include and remove it.

在转到滑块设置后,我无法进入故障排除设置"选项,因为所有链接(包括问题处理")都不在右侧(附有屏幕截图)起作用

I cannot go to Troubleshooting set option after going to slider settings as none of the links (including 'Problem Handlings') work on the right hand side (attached the screenshot)

推荐答案

我有同样的问题.我不确定是什么原因导致此问题,但是我可以分享我的解决方法:

I have the same problem. I am not sure what cause this problem but I can share my workaround:

  1. 首先,您必须具有对WP文件夹的FTP访问权限
  2. 停用Revolution Slider插件
  3. 使用FTP并转到 revslider/public/assets/assets/svg/并将 svg.zip 文件下载到您的PC.
  4. 解压缩 svg.zip .抓取所有未压缩的内容,并将其放在 uploads/revslider/assets/svg/文件夹中.(如果在上载/revslider文件夹中没有资产和svg,则必须手动创建它们).
  5. 转到 revslider/inludes/framework/,打开 base.class.php 文件并编辑功能 public_folder_unzip():
  1. First you have to have FTP access to your WP folder
  2. Deactivate Revolution Slider plugin
  3. Use FTP and go to revslider/public/assets/assets/svg/ and download svg.zip file to your PC.
  4. Unzip svg.zip. Grab all unzipped content and put it in uploads/revslider/assets/svg/ folder.(If in uploads/revslider folders assets and svg doesn't exist you have to create them manually).
  5. Go to revslider/inludes/framework/ open base.class.php file and edit function public_folder_unzip():

旧代码

 if($unzipfile === true){
 update_option('rs_public_version', RevSliderGlobals::SLIDER_REVISION); 
 }
 else{
 add_action('admin_notices', array('RevSliderBase', 'copy_notice'));
 }

新代码

 if($unzipfile == true){
 update_option('rs_public_version', RevSliderGlobals::SLIDER_REVISION); 
 }
 else{
 add_action('admin_notices', array('RevSliderBase', 'copy_notice'));
 }

  1. 保存文件更改.
  2. 激活插件.

这篇关于WordPress的插件滑块旋转错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆