Spostare un'installazione di Wordpress: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
m New page: {{Stub}} ==Riferimenti== *[http://codex.wordpress.org/Moving_WordPress Moving WordPress « WordPress Codex] *[http://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-loc...
 
mNo edit summary
Line 1: Line 1:
{{Stub}}
{{Stub}}
tabella wp_options
siteurl
home
wp-login.php can be used to (re-)set the URIs. Find this line:
require( dirname(__FILE__) . '/wp-load.php' );
and insert the following lines below:
//FIXME: do comment/remove these hack lines. (once the database is updated)
update_option('siteurl', 'http://your.domain.name/the/path' );
update_option('home', 'http://your.domain.name/the/path' );


==Riferimenti==
==Riferimenti==
*[http://codex.wordpress.org/Moving_WordPress Moving WordPress « WordPress Codex]
*[http://codex.wordpress.org/Moving_WordPress Moving WordPress « WordPress Codex]
*[http://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-location/ How to Move WordPress Blog to New Domain or Location « My Digital Life]
*[http://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-location/ How to Move WordPress Blog to New Domain or Location « My Digital Life]

Revision as of 17:33, 9 January 2018

Attenzione questo articolo è ancora incompleto.
Sentiti libero di contribuire cliccando sul tasto edit.

tabella wp_options siteurl home


wp-login.php can be used to (re-)set the URIs. Find this line:

require( dirname(__FILE__) . '/wp-load.php' );

and insert the following lines below:

//FIXME: do comment/remove these hack lines. (once the database is updated) update_option('siteurl', 'http://your.domain.name/the/path' ); update_option('home', 'http://your.domain.name/the/path' );

Riferimenti