Wil
Forum Replies Created
-
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] v3.0.8 – no backupsI got the backups working again by saying “Yes” to manual backups and “Yes” to compression.
Upgrading from 3.0.7 to 3.0.8 still loses the xcloner configuration settings though (resets it back to default admin)
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] v3.0.8 – no backupsFound this in the error logs
[Thu Apr 04 06:06:02.247310 2013] [cgi:error] [pid 5165] [client 101.164.9.228:56030] End of script output before headers: index2.php, referer: http://www.redacted.com/wp-content/plugins/xcloner-backup-and-restore/index2.php
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] v3.0.8 – no backupsI confirmed with our other sites using the plugin that upgrading from 3.0.7 to 3.0.8 wipes out the configuration settings.
π
Forum: Localhost Installs
In reply to: password issue going from production to local@pvteyez I know your issue is resolved but I thought I’d chip in with an alternative method.
Our setup uses a local, staging and production model so I’m always moving DB’s from one machine to another.
I do it manually.
- Export your DB from PHPMyAdmin using @replace
- Load into notepad
- Search and replace http://stagingservername with http://www.productiondomain.com
- Import the new SQL to the new DB
Simples!
Forum: Localhost Installs
In reply to: The Dreaded "Error establishing a database connection"OK – looks like your Apache server is pointing to your WordPress folder OK otherwise you wouldn’t get that message.
That means your php.ini and apache configs are correct.
This means that the problem is either a wp-config.php or a MySQL one.
Your wp-config.php seems OK as the DBNAME/USER/PASS/HOST all seem defined.
So, I would think that the problem lies with the MySQL DB.
I know it sounds daft, but just check on the DBNAME/USER/PASS and make sure you have them 100%.
Also – make sure that your user root has been given FULL privileges to access the MySQL DB in whatever tool you use (phpmyadmin etc)
If I were to place a bet, I would guess this is what you forgot to do.
Forum: Fixing WordPress
In reply to: Change Text Color of Links in WidgetHey @rcmorris11
You can take a higher level approach and target your links in the sidebar using
#sidebar .widget{
}
Some themes make use of multiple widget areas, especially footers, so have a look in your source code and find out which div container your widgets are in.
Wil.
Forum: Plugins
In reply to: [GTmetrix for WordPress] Fatal PHP error in settings pageProblem seems to have cleared itself.
How weird!
Thanks for the reply though.
yeah – sorry about that @seriousleast.
You can ignore the issues as I solved it anyway.
I’m using genesis, and echoing the share buttons manually doesn’t seem to work.
It’s almost as if the jetpack stuff isn’t being loaded at that point.
The following should, but doesn’t work
function lc_add_jetpack_share_buttons(){ if ( function_exists( 'sharing_display' ) ) { echo sharing_display(); } } add_action( 'genesis_before_post_content', 'lc_add_jetpack_share_buttons' );I added
remove_filter( 'the_content', 'sharing_display', 19 ); remove_filter( 'the_excerpt', 'sharing_display', 19 );to my functions.php but the sharedaddy buttons are still being shown.
Debug code shows that the remove_filter functions are returning false.
Any ideas why?
Forum: Plugins
In reply to: [WP eCommerce] Product Category Edit bug – Catalog View resets to DefaultCool @igloobob – I hope WPEC take note and apply the fix.
They are not so good at responding to the community here π
Yup – confirmed fix.
Thanks guys.
Go to the developers tab and you can download previous versions as a zip then upload.
Wil.
Version 1.9.11 does the same thing with our site too.
Reverting back to previous version.
@lilatovcocktail make sure you have a semicolon at the end of the line otherwise it will break your site.
define(βNGG_JQUERY_CONFLICT_DβETECTIONβ, false);However, that fix didn’t work on my site.
Forum: Fixing WordPress
In reply to: user_can_richedit filter and HTMLSeeing as there seems to be an issue with the user_can_richedit filter and perserving the textarea HTML tag, I am using the following filter which seems to give the same result.
// Set the editor to HTML ("Text") add_filter( 'wp_default_editor', create_function(null,'return "html";') );