rjesse
Forum Replies Created
-
Any update, any resolution…….
Forum: Plugins
In reply to: [Captcha] Latest version still broken with wp-admin loginFixed in latest version
Forum: Plugins
In reply to: [Captcha] Latest version still broken with wp-admin loginFixed in latest version
Forum: Plugins
In reply to: [Captcha] Latest Version broken on 2 of my sitesWorks thanks.
Forum: Plugins
In reply to: [Captcha] Latest version still broken with wp-admin loginNot sure of this helps, from the php error log
[15-Oct-2013 21:43:59 UTC] PHP Warning: md5() expects parameter 1 to be string, array given in /home/…/public_html/wp-content/plugins/captcha/captcha.php on line 726
Forum: Plugins
In reply to: [Captcha] Latest Version broken on 2 of my sitesNot sure of this helps, from the php error log
[15-Oct-2013 21:43:59 UTC] PHP Warning: md5() expects parameter 1 to be string, array given in /home/…/public_html/wp-content/plugins/captcha/captcha.php on line 726
Forum: Plugins
In reply to: [Plugin : BWPS E-Commerce] bug: strange meta tagAny resolution to this? I’m having the same issue…
Rick
Forum: Plugins
In reply to: [Captcha] Latest Version broken on 2 of my sitesThis is the plugin that breaks captcha
Storefront Insights
Insights and Analytics for your WP E-Commerce Store.
Version 3.4.1Forum: Plugins
In reply to: [Captcha] Latest version still broken with wp-admin loginThis is the plugin that breaks captcha
Storefront Insights
Insights and Analytics for your WP E-Commerce Store.
Version 3.4.1Has there been any resolution to this issue, I’m having the same problem.
Rick
Forum: Plugins
In reply to: [Captcha] math captcha not working after latest update.Same issue on 2 of my sites. 3rd one worked. The 2 that it didn’t work on has the following plugins. I’m getting the following error in my server log,
[03-Oct-2013 18:29:15 UTC] PHP Warning: md5() expects parameter 1 to be string, array given in /home/donabona/public_html/wp-content/plugins/captcha/captcha.php on line 726
Akismet
All In One SEO Pack
Better WP Security
Captcha
Collapsing Categories
Contact Form 7
Contact Form 7 Honeypot
Debug Bar
Debug Bar Console
Debug Bar Extender
Duplicator
Gold Cart for WP e-Commerce
Gold Cart for WP e-Commerce
Google Analytics for WordPress
Jetpack by WordPress.com
Magic Zoom
NFB Video Plugin
Regenerate Thumbnails
Search Tags
Share-Widget
Sharedaddy
Simple Facebook Like Widget
Simple Tags
Simple Video Embedder
Smart Manager for e-Commerce
Storefront Insights
TinyMCE Advanced
UpdraftPlus – Backup/Restore
Video Embed Widget
Visual Form Builder Pro
Wordfence Security
WordPress Backup to Dropbox
WordPress Database Backup
Wordpress Facebook Like Plugin
WP-PageNavi
wp-Typography
WP e-Commerce
WP E-commerce Expanding Categories
WP e-Commerce Predictive Search PRO
wpsc-simple-shipping
WPSC jPlayer Plugin
WPtouchI’ve been using AI1EC for a while and it was working great until the latest version stream, everything still seems to function other then selecting anything in calendar view right now.
Same Issue for a while now, if in Calendar view I select the next month, everything just goes grey and nothing happens, if I hit reload on my browser the next month comes up.
It is like the script is not doing a refresh when you select things.
Fixed it – sortof
I edited the function getExc() in the “FaceBook Image Fix Plugin”;
The function was not parsing out invalid characters so it was messing up the html header, I call the function “htmlspecialcharacters” to turn the string into a valid html string that won’t interfere with the header;
before edit;
function getExc($fbimgfixplugins, $length = 300)
{
global $wpdb;
switch ($fbimgfixplugins) {
case “wp”:
{
if (is_home() || is_front_page()) {
$desc = get_bloginfo(‘description’);
} else {
$desc = get_the_excerpt();
}
}
return trim($desc);after edit;
function getExc($fbimgfixplugins, $length = 300)
{
global $wpdb;
switch ($fbimgfixplugins) {
case “wp”:
{
if (is_home() || is_front_page()) {
$desc = get_bloginfo(‘description’);
} else {
$desc = get_the_excerpt();
}
}
$newdesc = htmlspecialchars($desc);
return trim($newdesc);Fixed it – sortof
I edited the function getExc() in the “FaceBook Image Fix Plugin”;
The function was not parsing out invalid characters so it was messing up the html header, I call the function “htmlspecialcharacters” to turn the string into a valid html string that won’t interfere with the header;
before edit;
function getExc($fbimgfixplugins, $length = 300)
{
global $wpdb;
switch ($fbimgfixplugins) {
case “wp”:
{
if (is_home() || is_front_page()) {
$desc = get_bloginfo(‘description’);
} else {
$desc = get_the_excerpt();
}
}
return trim($desc);after edit;
function getExc($fbimgfixplugins, $length = 300)
{
global $wpdb;
switch ($fbimgfixplugins) {
case “wp”:
{
if (is_home() || is_front_page()) {
$desc = get_bloginfo(‘description’);
} else {
$desc = get_the_excerpt();
}
}
$newdesc = htmlspecialchars($desc);
return trim($newdesc);