andy_moyle
Forum Replies Created
-
Forum: Plugins
In reply to: [Never Loose Contact Form] Plugin stopped workingDidn’t get an email notification of this topic.
Fixed in 0.33
Forum: Plugins
In reply to: [Church Admin] Invalid codeIt’s line 19 of header.inc.php in the includes directory.
V0.50 fixes that and a few other bugs and adds new functionality (just being uploaded as I write)Forum: Plugins
In reply to: [Never Loose Contact Form] enable javascriptI’m having no problems with it a number of sites. Could you post url so I can have a look please?
Forum: Plugins
In reply to: [Never Loose Contact Form] EmailNo problem, if you are logged in, it prefills username and user email address.
My defence against spammers is threefold!
1) It uses jquery to add the checkbox field for humans to check. Most bots won’t see it, because the javascript code is in a different file
2) Links in the name and email fields are automatically rejected. Very spammy behaviour
3) You can set how many links you allow in the message. 1 is useful for people to tell you about a website. More than that feels like link stuffing which is also pretty spammy.Forum: Plugins
In reply to: [Never Loose Contact Form] EmailIn the plugin settings – you can enter phone no, address and email address if you want them displayed, or not if you don’t.
The plugin sends email to your admin email whether or not you are displaying your email address. I’ll make it clearer in 0.21
Agreed – I always call the wordpress versions of jquery!
If you add a switch of color picker js setting, that will solve this issue!
Commenting out the wp_enqueue_scripts fixes the issue and downgrades the colour pickers to text boxes.
If they are just for colour picking – why don’t you use farbtastic which ships with wordpress? (There’s a link for info at http://codex.wordpress.org/Function_Reference/wp_enqueue_script)
When trying to add a page, check the console in Firefox – there’s a couple of errors in my-colours.js – in my limited experience jquery/javacsript errors kill other bits of js!
[Break On This Error] line 9
preferredFormat: “hex”Line 9 jQuery(“#cookie-cp1, #cookie-cp2, #cookie-cp3, #cookie-cp4, #cookie-cp5, #cookie-cp6”).spectrum is not a function
I’ve got the plugin installed on WordPress version 3.3.2 on 2 different linux server (UK2.net) on 6 different sites and 6 different themes and tried it with Firefox 12.0,IE9.06 and Chrome 19.0. Some of the sites run bespoke themes, some themes from WordPress.org repository. The installs all have different plugins running – the common plugin to all is Clean Contact,Google XML Sitemaps And Akismet
I’ve tried Twenty Eleven and still no editor buttons on the HTML tab for adding and editing a page or post in the admin area.
As soon as I deactivate Cookie law info, the buttons appear again on adding/editing a page or postHope that is enough info!
Forum: Plugins
In reply to: [Sabre] [Plugin: Sabre] 1.2.1 causes fatal errorAnd me
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS] Force SSL from a pluginwow that was quick! I’d just trawled through your code and worked it out too!!!
update_post_meta($post_id,'force_ssl',1);Forum: Fixing WordPress
In reply to: htaccess rewite giving 401 on a static fileThanks for the help by the way!
Forum: Fixing WordPress
In reply to: htaccess rewite giving 401 on a static fileSorted. It needed “ErrorDocument 401 default” a WP requirement!
ErrorDocument 401 default AuthType Basic AuthName "restricted area" AuthUserFile /home/***/.htpasswds/.htpasswd <FilesMatch "e.php"> require valid-user </FilesMatch> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: htaccess rewite giving 401 on a static fileApache 2.2.4
been trying different quotes etc to!
Forum: Fixing WordPress
In reply to: htaccess rewite giving 401 on a static fileOops – helps if I save the changes before uploading.
Removing authorisation makes it work
Now how do I get the auth working?