Thanks again. I followed the steps from the link (http://codex.wordpress.org/Changing_...n_the_database) and got the domain working. The site works now but I am still unable to login. The page (http://abhijeetdeb.elementfx.com/wp-admin) is not loading. I tried http://tinyurl.com/2foy2tu, http://tinyurl.com/34x66os & http://tinyurl.com/2dk8evs but no luck. I also followed instruction from http://codex.wordpress.org/Login_Tro...RL_Redirecting and confirmed all was fine. I even made the following changes to my login.php file but it dint help -
original:
Code:
if ( defined('RELOCATE') ) { // Move flag is set
if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
$_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
$schema = is_ssl() ? 'https://' : 'http://';
if ( dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_option('siteurl') )
update_option('siteurl', dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) );
}
modified:
Code:
if ( defined('RELOCATE') ) { // Move flag is set
if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
$_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
//$schema = is_ssl() ? 'https://' : 'http://';
//if ( dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) != get_option('siteurl') )
//update_option('siteurl', dirname($schema . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']) );
}
You can also have a look at my wp-config.php and current theme functions.php files and tell me if I need to change anything. Please help me to log in.