可湿性粉剂-配置.php:在一个文件中包含localhost和development以及live站点。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了可湿性粉剂-配置.php:在一个文件中包含localhost和development以及live站点。相关的知识,希望对你有一定的参考价值。

Source: http://www.websitedesignby.com/programming/wordpress-website-development-work-flow-wp-config-php/
  1. if($_SERVER['HTTP_HOST']==’livedomain.com’ || $_SERVER['HTTP_HOST']==’www.livedomain.com’){
  2. define(‘DB_NAME’, ‘db_name_live’); // The name of the database
  3. define(‘DB_USER’, ‘mysql_username_live’); // Your MySQL username
  4. define(‘DB_PASSWORD’, ‘mysql_password_live’); // …and password
  5. define(‘DB_HOST’, ‘localhost’); // db host
  6. define(‘DB_CHARSET’, ‘utf8′);
  7. define(‘DB_COLLATE’, ”);
  8. define(‘AUTH_KEY’, ‘put your unique phrase here’);
  9. define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’);
  10. define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’);
  11. define(‘LIVE’, true);
  12. }else{
  13. define(‘DB_NAME’, ‘name_of_db_local’); // The name of the database
  14. define(‘DB_USER’, ‘mysql_username_local’); // Your MySQL username
  15. define(‘DB_PASSWORD’, ‘mysql_password_local’); // …and password
  16. define(‘DB_HOST’, ‘localhost’); // db host
  17. define(‘DB_CHARSET’, ‘utf8′);
  18. define(‘DB_COLLATE’, ”);
  19. define(‘AUTH_KEY’, ‘put your unique phrase here’);
  20. define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’);
  21. define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’);
  22. define(‘LIVE’, false);
  23. }
  24.  
  25. // You can have multiple installations in one database if you give each a unique prefix
  26. $table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!
  27. // Change this to localize WordPress. A corresponding MO file for the
  28. // chosen language must be installed to wp-content/languages.
  29. // For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
  30. // to enable German language support.
  31. define (‘WPLANG’, ”);
  32. /* That’s all, stop editing! Happy blogging. */
  33. if ( !defined(‘ABSPATH’) )
  34. define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
  35. require_once(ABSPATH . ‘wp-settings.php’);

以上是关于可湿性粉剂-配置.php:在一个文件中包含localhost和development以及live站点。的主要内容,如果未能解决你的问题,请参考以下文章

删除链接后在可湿性粉剂Nivo滑块

可湿性粉剂添加后重击

如何在自定义帖子类型上使用Woocommerce的二级图像上传Metabox?

PHP Wordpress作者页面在配置文件中包含自定义字段

如何在 Laravel-4 中包含不同环境的自定义配置

如何在文件中包含php别名