browningit
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite server move – issues with subdomainUpdate:
I’ve resolved part of my issues – but not all of it. It appears an integral wp-config.php file wasn’t brought over. Incredibly strange. I edited it with the old copy from the other server just now and it makes subdomain.mydomain.com load blank on the public side. I don’t get redirected anymore when I go to subdomain.mydomain.com/wp-admin. Instead, I get a white blank page as if it doesn’t know what to load.
Help!
Forum: Installing WordPress
In reply to: Multisite server move – issues with subdomainI moved this thread to a different forum:
Forum: Fixing WordPress
In reply to: Update WP 3.9 – Can't add media@chaoskaizer – your code fix worked great. One of my users updated the WP version before checking compatibility etc. and broke WPML/links generation /media generation from the visual view. I added in your code to the bottom of the themes function.php with a comment and like magic, you nailed it.
Cheers,
/* ------------------------------------------------------------------------ */ /* WPML Fix 5/7/2014 /* ------------------------------------------------------------------------ */ function icl_load_jquery_ui() { wp_enqueue_script( 'jquery-ui-dialog', false, array('jquery'), false, true ); } add_action( 'admin_enqueue_scripts', 'icl_load_jquery_ui' ); /* ------------------------------------------------------------------------ */ /* EOF /* ------------------------------------------------------------------------ */