FranH
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Type Manager] Vulnerability on auto-update.phpIt’s true, this is a malicious plugin. I was using it for years, but my site was hacked today.
I hope it will return on the right path, but until then, STAY AWAY!.
Except that this plugin seems to occasionally update .htaccess file to it’s original state ??
Forum: Plugins
In reply to: [Redirection] No control over user capability@esmi Please reflect: this is a feature request, not a support issue. As such it makes little sense to have duplicates of it. IMHO anyway.
Forum: Plugins
In reply to: [Redirection] No control over user capability+1
This little problem just robbed me of 2 hours trying to find why are my editors able to edit administrator user profiles (long story, with Admin Menu Editor in the middle).
Anyways, dear author, please add this filter ?? Pretty please?
Had the same issue with 0.9.3
Resolved it my removing Rules added by Better WP Security plugin, refreshing WP admin page and returning the Better WP Security rules back (reload .htaccess file, of course)
LOL same here, except that right now I’m still at a loss on how to use the plugin! I’ll give it a few more minutes.
Clicking around… looking… clicking……
+1 This question bugs me as well. Maybe an option would be to go to the link only if the menu is expanded. Like: first click – expand, second click – follow link…
Forum: Plugins
In reply to: [Plugin: WooCommerce] Cart broken/not adding productsYup, full /tmp directory was my problem, fixed by the host.
Forum: Plugins
In reply to: [Plugin: WooCommerce] Cart broken/not adding productsJust run into this issue. All worked fine and all of the sudden it started to empty then cart. Then it would work fine for a few minutes only to start bugging again.
It turns out that server had no more disk space left on /tmp. Session data is written there.
I tried this in shell (hosted at Webfaction):
df -h
There should probably be no “100%” anywhere. If there is it’s a good bet that’s what is causing problem.
Support ticket is away, waiting reply…
Forum: Plugins
In reply to: [Custom Permalinks] 404 Error – potentially caused by revisions+1
confirmed the problemForum: Plugins
In reply to: [Contact Form 7] select with pipeI have the same problem!
I’m using this:
[select country “AFG|Afghanistan” “ALB |Albania” …………… (many indeed). ….. .. .. ]Now this worked ok before last update! I’m very sure of it, But unfortunately I’m not sure what was the version before update ??
I’ve fixed it in plugin source, but hope I won’t have to do it after next update.
Here is what I changed:
includes/pipe.php, line 55:
ADD THISfunction collect_afters() { $afters = array(); foreach ( $this->pipes as $pipe ) { $afters[] = $pipe->after; } return $afters; }
END ADD
includes/shortcodes.php
CHANGE lines 113 – 123 like this:if ( WPCF7_USE_PIPE ) { $pipes = new WPCF7_Pipes( $scanned_tag['raw_values'] ); $scanned_tag['values'] = $pipes->collect_befores(); $scanned_tag['pipes'] = $pipes; $scanned_tag['labels'] = $pipes->collect_afters(); } else { $scanned_tag['values'] = $scanned_tag['raw_values']; $scanned_tag['labels'] = $scanned_tag['values']; } // $scanned_tag['labels'] = $scanned_tag['values'];
END CHANGE
Now, I have no idea if that was a good thing to do or what, maybe the plugin author will enlighten us ??
Cheers!
Ok, it looks like I actually got working ??
In the duplicate-widgets.php, around line 340 (output_widget function) there is an IF that I commented out and widgets stopped disappearing since.
Too bad… The two plugins would make a dream-team ??
Forum: Fixing WordPress
In reply to: Custom Field (Check Box) Added to Publish Box? Possible?If someone stumbles here as I did:
https://stackoverflow.com/questions/9907858/how-to-add-a-field-in-edit-post-page-inside-publish-box-in-wordpresssame problem here!
anyone?