quimbox
Forum Replies Created
-
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] Malware issue popping up on installI have the same problem with this plugin.
Capture:
https://i.imgur.com/OkBmz.jpg
Forum: Plugins
In reply to: [Facebook] Cannot Redeclare class facebookForum: Plugins
In reply to: [Facebook] Cannot Redeclare class facebookHi @matt Kelly I’ve solved the problem. Adding conditions to my files. But there was a function not declared in the file base_facebook.php of the plugin facebook. The function $CURL_OPTS I had to add it to the file. For my application worked
Forum: Plugins
In reply to: [Facebook] Cannot Redeclare class facebookHi all, I could solve the problem I had.
I added the condition if, in my files facebook.php and base_facebook.php
if ( ! class_exists( 'FacebookApiException' ) ): this condition i added into my file base_facebook.php
And this
if ( ! class_exists( 'Facebook' ) ): into my file facebook.php
But when I tried to upload the image from my website to facebook, got an error which was not declaring the function $CURL_OPTS in class BaseFacebook in the file base_facebook.php of the plugin facebook.
So I had to add the default option for curl, in the base_facebook.php of the plugin facebook.
`public static $CURL_OPTS = array(
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 60,
CURLOPT_USERAGENT => ‘facebook-php-3.1’,
);`Now my app worked well.
Sorry for my english my native language is spanish.
Regards.
Forum: Plugins
In reply to: [Social Author Bio] [Plugin: Social Author Bio] Use on author archives page?Hi nickpowers,
I was looking for ways to add it to my template. And so it works perfect. And to work, you should select the short code box in the general configuration of the plugin.
Forum: Themes and Templates
In reply to: Featured content slider not working@michael Found the reason. The infolinks plugin.
As he did to fix it?