admin管理员组文章数量:1290099
I've just got a hosting plan(A free WordPress hosting plan). My website is still in its basic form(the 21 theme from WordPress, and the hello world post). I intend to work locally on my website, then upload it using FTP(in case I didn't know, how I will just use a Migration Plugin). The hosting site provides me with all the info needed(my WordPress admin account, my MySQL database info, my FTP info..). My question is: while configuring my local setup, should I use some info on my localhost(database name, host, prefix table, database user, WordPress admin info...) as the one provided by the hosting site? Or not.
I've just got a hosting plan(A free WordPress hosting plan). My website is still in its basic form(the 21 theme from WordPress, and the hello world post). I intend to work locally on my website, then upload it using FTP(in case I didn't know, how I will just use a Migration Plugin). The hosting site provides me with all the info needed(my WordPress admin account, my MySQL database info, my FTP info..). My question is: while configuring my local setup, should I use some info on my localhost(database name, host, prefix table, database user, WordPress admin info...) as the one provided by the hosting site? Or not.
Share Improve this question asked Jun 21, 2021 at 18:51 user208065user208065 2- 1 Are you intending to transfer your content from your local machine to the hosted site? If so, you'll definitely need some kind of plugin. All of WordPress's post/page content is stored in the database, so uploading your files won't update the hosted site's content. – Pat J Commented Jun 21, 2021 at 21:31
- now, once you mention it, it makes sence. I think I will use a plugin. But I'm still confused about my setup in localhost, should it be the same as the one in the hosting? Or I just use whatever info I want, and the plugin will take care of everything. – user208065 Commented Jun 22, 2021 at 12:28
1 Answer
Reset to default 0You just need setup couple things for it.
Make Database Backup from your localhost
Copying all files and folders from your local to the host
Adjust wp-config.php following your live site configurations.
Import database to live site
Replace all local urls with live site have. You can use this query for it
UPDATE wp_options SET option_value = replace(option_value, 'oldurl', 'newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'oldurl','newurl');
UPDATE wp_posts SET post_content = replace(post_content, 'oldurl', 'newurl');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'oldurl','newurl');
本文标签: adminmy wordpress configuration locally vs live server
版权声明:本文标题:admin - my wordpress configuration locally vs live server 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741491073a2381620.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论