uniquewebdevelopment
Forum Replies Created
-
Forum: Plugins
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] PHP 7 supportIs this plugin now PHP7 compatible?
Forum: Fixing WordPress
In reply to: WP_Error on my siteAdding the below to wp-config.php should help regain access to WordPress, but siteurl in the WP_Options table is the proper fix.
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Found this issue impacted mediatemple on the latest WordPress 4.4.1 upgrade.
Same issue as above. It does appear like ‘product’ as a post type is reserved for something else.
Forum: Fixing WordPress
In reply to: Moving a new blog to an old domainIt sounds like you need a 301 redirect. You may ask your existing web host for help on doing so.
Forum: Fixing WordPress
In reply to: Moving a new blog to an old domainCheck out the following page:
http://codex.ww.wp.xz.cn/Moving_WordPressThe below code is particularly useful when moving sites, if the URL isn’t working. Typically you can’t login to update the URL, until you have updated the site URL:
update_option(‘siteurl’, ‘http://your.domain.name/the/path’ );
update_option(‘home’, ‘http://your.domain.name/the/path’ );Place the above in your wp-config.php located on your root. Once you have logged in and updated your URL, you may remove the lines.
Thanks, we haven’t tried the above solution yet, but if you save the post in HTML view, everything seems to work again.