Tagged: LayerSlider, update errors
-
AuthorPosts
-
July 13, 2017 at 4:49 pm #820651
Not sure why this has become an issue overtime layer slider puts out an update. I would think it would be an easy fix. Somewhere it is adding /home/stephenheck/www/www/wp-content/plugins twice before the actual directory as you can see below. Many people have complained about it. Hopefully Yigit can take a look as he seems to be the one who is fixing a lot of the problems. It happens on multiple sites. It goes away if it’s updated to latest version, but comes back once it needs an update.
/home/stephenheck/www/www/wp-content/plugins/home/stephenheck/www/www/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php): failed to open stream: No such file or directory in /home/stephenheck/www/www/wp-includes/functions.php on line 4785
Warning: fread() expects parameter 1 to be resource, boolean given in /home/stephenheck/www/www/wp-includes/functions.php on line 4788
Warning: fclose() expects parameter 1 to be resource, boolean given in /home/stephenheck/www/www/wp-includes/functions.php on line 4791
July 13, 2017 at 4:51 pm #820653yes, here again. 1 open plugin update. :-(
- This reply was modified 7 years, 4 months ago by volmering.
July 14, 2017 at 1:54 am #820910Yes, the open plugin is the layer slider. which is also causing the error messages.
July 14, 2017 at 2:22 pm #821165Hi all,
We have just release the Enfold update with the Layer Slider update and today I saw that Layer Slider has released yet another version. So yes, you might be seeing that 1 next to plugins menu for a while again.
Best regards,
VictoriaJuly 14, 2017 at 2:27 pm #821168Hi Victoria, the little update notification isn’t a big problem. It’s the fact that there are all these error messages that appear on the updates page when updating other plugins or just going to the updates page. Which is what needs to be fixed. It keeps looking for a directory that isn’t there because it is adding extra paths in front of where the directory is as you can see above and for the previous posts we have been posting. I know you have not been able to figure the issue out but could we have Yigit or someone else check it. thank you
/home/stephenheck/www/www/wp-content/plugins/home/stephenheck/www/www/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php): failed to open stream: No such file or directory in /home/stephenheck/www/www/wp-includes/functions.php on line 4785
Warning: fread() expects parameter 1 to be resource, boolean given in /home/stephenheck/www/www/wp-includes/functions.php on line 4788
Warning: fclose() expects parameter 1 to be resource, boolean given in /home/stephenheck/www/www/wp-includes/functions.php on line 4791
July 16, 2017 at 11:54 am #821973Hi,
Here is a thread for you to consider
https://kriesi.at/support/topic/enfold-simple-history-plugin-warning-fopen-layerslider-php-failed-to-open/Best regards,
VictoriaJuly 17, 2017 at 9:36 pm #822941That doesn’t help at all. Victoria, is it possible to hand this off to another moderator please? This issue has failed to be resolved in the past bunch of updates. I am sure there has got to be a fix for it.
July 19, 2017 at 8:11 am #823735hey victoria,
i agree to SAdesigns.
i am very happy with enfold. and you guys do a great job supporting us and the theme. but…..
i bought a lot of enfold liceses. this layslider issue bothering us now more then 2 month. if there is no solution with the layer slider – kick it out, lower the price for the theme or find another slider.
my job is it to update wordpress-pages and to get rid of the annoying red dots.
to say: we have to wait for the next update, and so on – and so on – is not a solution. im a customer.
July 20, 2017 at 2:55 am #824296Hi,
Are you using the layer slider? Did you install it as a stand alone plugin? You should only get those warnings if you install the layer slider as a stand alone plugin. If you don’t need the plugin, please add this snippet in the functions.php file to disable it.
add_theme_support('deactivate_layerslider');
Those warnings are not critical or fatal errors so you can ignore them. If you want to hide those warnings, try the following code in the wp-config.php file.
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
Or try this particular filter to change the layer slider’s root url.
add_filter('layerslider_root_url', 'layerslider_root_url_mod', 10, 1); function layerslider_root_url_mod($url) { $url = get_template_directory_uri() . '/config-layerslider/LayerSlider'; return $url; }
Best regards,
IsmaelJuly 20, 2017 at 2:59 am #824297Thanks Ismael, I will try to change the root. When we tried changing the root before, the layer slider dis appeared. I am using the layer slider that is included with the theme. It’s just strange that it would try and pull the front part twice. let me see if the root filter works.
July 20, 2017 at 3:37 am #824305the add filter doesn’t see to do anything. If I go to this file enfold/config-layerslider/config.php
$layerslider = get_template_directory() . ‘/config-layerslider/LayerSlider/layerslider.php’;
this is the line of code that gets rid of the errors but also gets rid of the layer slider menu on the dashboard when changing to$layerslider = get_template_directory_uri() . ‘/config-layerslider/LayerSlider/layerslider.php’;
For some reason the guy before said it was turning it private?
July 23, 2017 at 1:44 am #828529Hi,
@SAdesigns: Did you install the layer slider as a separate plugin? What happens if you remove the following line of codes?
if (!defined('LS_ROOT_URL')) { define('LS_ROOT_URL', get_template_directory_uri() . '/config-layerslider/LayerSlider' ); }
Best regards,
IsmaelJuly 23, 2017 at 4:02 am #828550Hi Ismael, I am using the layer slider that comes with the theme.
July 23, 2017 at 4:27 pm #828712When removing that line of code, the errors still show up, and when you go to the site, the layer slider image appears but the slider arrows and buttons look like they are missing.
July 26, 2017 at 4:26 am #829903Hi,
Is the warning displaying in the plugins panel if you set the WP_DEBUG_DISPLAY to false?
Best regards,
IsmaelOctober 28, 2017 at 2:26 am #869792This sounds like my topic, but I don’t see my exact situation:
I got the “We’ve detected you are using premium features” message that covers up the top of the LayerSlider on my home page. I bought LayerSlider from Code Canyon a while ago, so from within the WP control panel, in LayerSlider, I put in my CodeCanyon purchase code. It was accepted, but the message over the slider won’t go away. I don’t know what “premium” feature I was using to cause this, but it’s certainly a pain. Why was I allowed to use the premium feature in the first place?Help!
October 28, 2017 at 12:47 pm #869872Hi rasa,
You might want to address this question to the Layer Slider support.
Best regards,
VictoriaOctober 28, 2017 at 6:03 pm #869985Thanks Victoria. I think the issue resolved itself. It was a bit wonky in that the message would not go away even after clearing the cache, and even restarting my computer. I’m thinking it was a web timing thing. After some 20 minutes the message went away.
I still don’t get how I could use a premium feature from the paid program that would set off this chain of events, before I even owned the premium version. It’s almost like I was being forced into buying LayerSlider, or figure out how to deconstruct my design to a pre-premium level. Frustrating, but I do like the LayerSlider, and don’t mind paying for features I like. I just like to know what I’m paying for, when.
October 28, 2017 at 8:01 pm #870005Hi,
Glad to hear it is resolved, I’m not sure how to address the issue as I’m not sure how to recreate. But I know many layerslider issues were address with this weeks Enfold update. Have you updated? Shall we close this?Best regards,
MikeOctober 28, 2017 at 9:00 pm #870015Thanks for being there! You can close my part of this issue, unless someone can figure out if LayerSlider built that “trick” of letting us use features that they then charge us for.
October 28, 2017 at 9:10 pm #870018 -
AuthorPosts
- The topic ‘Back to Having Error Messages on Updates Page With Layerslider’ is closed to new replies.