summaryrefslogtreecommitdiffstatshomepage
path: root/wp-config-sample.php
Commit message (Collapse)AuthorAge
* Docs: Slightly adjust the description for `$table_prefix` in ↵Sergey Biryukov2024-10-15
| | | | | | | | | | | | `wp-config-sample.php`. This replaces the DB abbreviation for consistency, and aims to make the sentence a bit more clear. Follow-up to [59044]. See #34189. git-svn-id: https://develop.svn.wordpress.org/trunk@59240 602fd350-edb4-49c9-b593-d223f7449a82
* Bootstrap/Load: Add documentation warning about updating `$table_prefix`.Aaron Jorbin2024-09-17
| | | | | | | | Props bjerke-johannessen, swissspidy, SergeyBiryukov, morganestes, stevenlinx, jorbin. Fixes #34189. git-svn-id: https://develop.svn.wordpress.org/trunk@59044 602fd350-edb4-49c9-b593-d223f7449a82
* Docs: Update various HelpHub links to avoid unnecessary redirections.Jb Audras2024-03-11
| | | | | | | | | | | | | Follow-up to [57793], [57798], [57800]. Props mkismy. See #60732, #60699. git-svn-id: https://develop.svn.wordpress.org/trunk@57801 602fd350-edb4-49c9-b593-d223f7449a82
* Text Changes: Update mentions of “web site” to “website” for ↵Sergey Biryukov2023-11-22
| | | | | | | | | | | | | consistency. While “web site” was the original spelling, this variant has become rarely used, and “website” is now the standard spelling, already used throughout most of the WordPress core. Reference: [https://en.wikipedia.org/wiki/Website Wikipedia: Website]. Props LiamMcArthur, cafenoirdesign, sabbirshouvo, sabernhardt, ironprogrammer, mukesh27. Fixes #59853, #54276. git-svn-id: https://develop.svn.wordpress.org/trunk@57131 602fd350-edb4-49c9-b593-d223f7449a82
* Help/About: Use the new `/documentation/` URLs for HelpHub links in ↵Jb Audras2023-02-23
| | | | | | | | | | | | | | WordPress Admin. As `https://wordpress.org/support/` was redirected to `https://wordpress.org/documentation/`, this changeset replaces various `/support/article/*` links with `/documentation/article/*` to avoid an extra redirect. This also updates links to Support Forums by replacing `https://wordpress.org/support/` URLs with `https://wordpress.org/support/forums/`. Props SergeyBiryukov, audrasjb, dhrupo, hasanmisbah, sakibmd, sabernhardt. See #57726. git-svn-id: https://develop.svn.wordpress.org/trunk@55412 602fd350-edb4-49c9-b593-d223f7449a82
* Docs: Use generic references to "Database" in `wp-config-sample.php`.Jb Audras2021-12-14
| | | | | | | | | | This replaces the references to "MySQL" info in the WordPress configuration sample file. Using the generic term "Database" now refers to either MySQL or MariaDB. Props Ov3rfly, audrasjb, hellofromTonya. Fixes #54610. git-svn-id: https://develop.svn.wordpress.org/trunk@52367 602fd350-edb4-49c9-b593-d223f7449a82
* Boostrap/Load: Further update the language in `wp-config-sample.php`.Sergey Biryukov2021-05-21
| | | | | | | | | | | This restores "That's all, stop editing!" line to its previous format, to avoid breaking external integrations looking for that format specifically. Follow up to [50915], [50917], [50918]. Props swissspidy, schlessera. Fixes #37199. git-svn-id: https://develop.svn.wordpress.org/trunk@50946 602fd350-edb4-49c9-b593-d223f7449a82
* Docs: Update documentation in `wp-config-sample.php` per the documentation ↵Sergey Biryukov2021-05-16
| | | | | | | | standards. See #52628. git-svn-id: https://develop.svn.wordpress.org/trunk@50918 602fd350-edb4-49c9-b593-d223f7449a82
* Boostrap/Load: Have language in wp-config-sample.php better match install ↵Aaron Jorbin2021-05-15
| | | | | | | | | | | | | | | | instructions. Help prevent errors from users who are less familiar with php from adding code in side the comment block and thus having their code not work. Therefore, this comment is now a single line. Follow up to [50915]. Fixes #37199. Props SergeyBiryukov. git-svn-id: https://develop.svn.wordpress.org/trunk@50917 602fd350-edb4-49c9-b593-d223f7449a82
* Boostrap/Load: Strengthen language in wp-config-sample.phpAaron Jorbin2021-05-14
| | | | | | | | | | | Make it clearer where custom pieces belong in wp-config.php Props kraftbj, jorbin. Fixes #37199. git-svn-id: https://develop.svn.wordpress.org/trunk@50915 602fd350-edb4-49c9-b593-d223f7449a82
* Code Modernization: Replace `dirname( __FILE__ )` calls with `__DIR__` magic ↵Sergey Biryukov2020-02-06
| | | | | | | | | | | | | | | | | | | constant. This avoids the performance overhead of the function call every time `dirname( __FILE__ )` was used instead of `__DIR__`. This commit also includes: * Removing unnecessary parentheses from `include`/`require` statements. These are language constructs, not function calls. * Replacing `include` statements for several files with `require_once`, for consistency: * `wp-admin/admin-header.php` * `wp-admin/admin-footer.php` * `wp-includes/version.php` Props ayeshrajans, desrosj, valentinbora, jrf, joostdevalk, netweb. Fixes #48082. git-svn-id: https://develop.svn.wordpress.org/trunk@47198 602fd350-edb4-49c9-b593-d223f7449a82
* Docs: Replace Codex URLs with corresponding HelpHub articles in ↵Sergey Biryukov2019-11-17
| | | | | | | | | `wp-config-sample.php`. Props sebastienserre. Fixes #48680. git-svn-id: https://develop.svn.wordpress.org/trunk@46740 602fd350-edb4-49c9-b593-d223f7449a82
* Add `svn:auto-props` for `eol-style` and `mime-type` to `trunk`.Jonathan Desrosiers2019-11-03
| | | | | | | | | | `svn:eol-style` and `svn:mime-type` property default values are now provided for all file types currently in `trunk`. This also reverts the `eol-style` change to `wp-config-sample.php` made in [46586]. Fixes #42594. git-svn-id: https://develop.svn.wordpress.org/trunk@46636 602fd350-edb4-49c9-b593-d223f7449a82
* Ensure `svn:eol-style` is consistently set for all files.Jonathan Desrosiers2019-10-25
| | | | | | See #42594. git-svn-id: https://develop.svn.wordpress.org/trunk@46586 602fd350-edb4-49c9-b593-d223f7449a82
* General: Replace "Happy blogging" with "Happy publishing".Gary Pendergast2019-01-08
| | | | | | | | | | | | | As of this commit, WordPress is no longer a simple blogging platform. It's now a comprehensive publishing solution. This also replaces a couple of other "blog" references that were missed previously. Props igmoweb, Valer1e, audrasjb, pento. Fixes #41000. git-svn-id: https://develop.svn.wordpress.org/trunk@44455 602fd350-edb4-49c9-b593-d223f7449a82
* Code is Poetry.Gary Pendergast2017-11-30
| | | | | | | | | | | | WordPress' code just... wasn't. This is now dealt with. Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS. Fixes #41057. git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
* Lightly clean up and improve inline documentation in wp-config-sample.php.Drew Jaynes2015-05-10
| | | | | | | | | | * Fixes some grammatical and wrapping issues in the file header, and breaks the contents list up into, well, a list. * Adds a note and Codex link to the DocBlock for the `WP_DEBUG` constant definition on where to find more information about constants used for debugging. Fixes #28551. git-svn-id: https://develop.svn.wordpress.org/trunk@32479 602fd350-edb4-49c9-b593-d223f7449a82
* Use HTTPS URLs for codex.wordpress.org.Dominik Schilling (ocean90)2015-04-12
| | | | | | see #27115. git-svn-id: https://develop.svn.wordpress.org/trunk@32116 602fd350-edb4-49c9-b593-d223f7449a82
* Remove 'WordPress Language' reference from wp-config-sample.php.Sergey Biryukov2014-09-09
| | | | | | | props voldemortensen. see [29630]. fixes #29562. git-svn-id: https://develop.svn.wordpress.org/trunk@29720 602fd350-edb4-49c9-b593-d223f7449a82
* Language packs: No WPLANG anymore.Dominik Schilling (ocean90)2014-08-26
| | | | | | | | | | | * The WPLANG constant is no longer needed. Remove define('WPLANG', ''); from wp-config-sample.php. Populate WPLANG option based on the WPLANG constant. When get_option('WPLANG') is an empty string it will override WPLANG. * Introduce translations_api() which is available to communicate with the translation API. Move translation install related functions to a new file. * Replace mu_dropdown_languages() with wp_dropdown_languages(). wp_dropdown_languages() is now populated by the translation API. * Remove wp_install_load_language() and allow load_default_textdomain() to switch a core translation. fixes #13069, #15677, #19760, #28730, #29281. git-svn-id: https://develop.svn.wordpress.org/trunk@29630 602fd350-edb4-49c9-b593-d223f7449a82
* Move wp-config-sample.php to the root of develop.svn.Andrew Nacin2013-08-29
| | | | | | | | | | | | wp-config.php is now created in the root. wp-config-sample.php is properly copied over to the build directory for syncing to core.svn. Add some ignores. fixes #25185, see #24976. git-svn-id: https://develop.svn.wordpress.org/trunk@25173 602fd350-edb4-49c9-b593-d223f7449a82
* New develop.svn.wordpress.org repository based on the old core.svn repository.Andrew Nacin2013-08-07
| | | | | | | | | | | | | | | | | * All WordPress files move to a src/ directory. * New task runner (Grunt), configured to copy a built WordPress to build/. * svn:ignore and .gitignore for Gruntfile.js, wp-config.php, and node.js. * Remove Akismet external from develop.svn. Still exists in core.svn. * Drop minified files from src/. The build process will now generate these. props koop. see #24976. and see http://wp.me/p2AvED-1AI. git-svn-id: https://develop.svn.wordpress.org/trunk@25001 602fd350-edb4-49c9-b593-d223f7449a82
* Apply the missing bits of the patch. Fixes #13891 props TobiasBg and zeoPeter Westwood2010-11-01
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@16131 602fd350-edb4-49c9-b593-d223f7449a82
* Improve WPLANG example. Fixes #13891 props TobiasBg.Peter Westwood2010-11-01
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@16124 602fd350-edb4-49c9-b593-d223f7449a82
* shorten header in wp-config-sample, props lloydbudd, fixes #13542Ron Rennick2010-05-25
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@14912 602fd350-edb4-49c9-b593-d223f7449a82
* Most users edit wp-config-sample.php on a Windows system with a text editor ↵Dion Hulse2010-04-01
| | | | | | which does not understand LF, Ensure that the file is always CRLF on svn exports. Fixes #12775 git-svn-id: https://develop.svn.wordpress.org/trunk@13912 602fd350-edb4-49c9-b593-d223f7449a82
* Standardize db config-sample values. fixes #11523Andrew Nacin2010-03-27
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@13837 602fd350-edb4-49c9-b593-d223f7449a82
* Add initial WP_DEBUG define to wp-config-sample.php and suggest plugin/theme ↵Andrew Nacin2010-02-17
| | | | | | developers use it. Fixes #12236 git-svn-id: https://develop.svn.wordpress.org/trunk@13185 602fd350-edb4-49c9-b593-d223f7449a82
* Fall back to wp_generate_password() in setup-config.php if HTTPS request for ↵Andrew Nacin2010-02-14
| | | | | | secret keys fails. Also use pretty link to secret-key API, see #12159 git-svn-id: https://develop.svn.wordpress.org/trunk@13133 602fd350-edb4-49c9-b593-d223f7449a82
* Update keys and salts with random values from api.wordpress.org. Props ↵Ryan Boren2010-02-08
| | | | | | nacin. see #12159 git-svn-id: https://develop.svn.wordpress.org/trunk@13026 602fd350-edb4-49c9-b593-d223f7449a82
* Trailing whitespace cleanupRyan Boren2010-01-15
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@12733 602fd350-edb4-49c9-b593-d223f7449a82
* Add is_subdomain_install() to ms code - Fixes #11796Ron Rennick2010-01-08
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@12674 602fd350-edb4-49c9-b593-d223f7449a82
* Cast out the lowercase P demons that snuck in. ↵Matt Mullenweg2009-12-08
| | | | | | http://www.google.com/search?q=out+out+you+demons+of+stupidity git-svn-id: https://develop.svn.wordpress.org/trunk@12341 602fd350-edb4-49c9-b593-d223f7449a82
* Improve the Grammar. Fixes #9181 props Viper007Bond.Peter Westwood2009-02-28
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@10673 602fd350-edb4-49c9-b593-d223f7449a82
* Explain consequences of changing the *_KEY defines. Fixes #9181.Peter Westwood2009-02-27
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@10659 602fd350-edb4-49c9-b593-d223f7449a82
* Eliminate closing ?>'s from wp-config-sample.php. Props Otto42. fixes #6791Ryan Boren2008-12-24
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@10252 602fd350-edb4-49c9-b593-d223f7449a82
* https for secret-keyRyan Boren2008-12-16
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@10209 602fd350-edb4-49c9-b593-d223f7449a82
* Introduce NONCE_SALT and NONCE_KEYRyan Boren2008-12-07
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@10120 602fd350-edb4-49c9-b593-d223f7449a82
* Improved phpdoc for wp-config-sample.php fixes #7397 and #7526 props ↵Peter Westwood2008-09-05
| | | | | | lloydbudd and jacobsantos. git-svn-id: https://develop.svn.wordpress.org/trunk@8817 602fd350-edb4-49c9-b593-d223f7449a82
* Revert [8655]. see #7526Ryan Boren2008-09-01
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@8790 602fd350-edb4-49c9-b593-d223f7449a82
* wp-config-sample.php inline documentation. Props santosj, fixes #7526Andrew Ozz2008-08-16
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@8655 602fd350-edb4-49c9-b593-d223f7449a82
* Update sample config to use new cookie keysRyan Boren2008-07-03
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@8251 602fd350-edb4-49c9-b593-d223f7449a82
* Allow wp-config.php to exist one level up from WordPress root directory. ↵Ryan Boren2008-05-21
| | | | | | Props sambauers. fixes #6933 git-svn-id: https://develop.svn.wordpress.org/trunk@7971 602fd350-edb4-49c9-b593-d223f7449a82
* Typo fixRyan Boren2008-04-24
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@7810 602fd350-edb4-49c9-b593-d223f7449a82
* Document new secret-key API in sample config.Ryan Boren2008-04-24
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@7808 602fd350-edb4-49c9-b593-d223f7449a82
* Allow DB salt to be overridden by SECRET_SALT. Add a filter to wp_salt(). ↵Ryan Boren2007-12-24
| | | | | | see #5367 git-svn-id: https://develop.svn.wordpress.org/trunk@6478 602fd350-edb4-49c9-b593-d223f7449a82
* Don't fallback to DB info for secret key. Allow expiration grace period for ↵Ryan Boren2007-12-23
| | | | | | AJAX requests. see #5367 git-svn-id: https://develop.svn.wordpress.org/trunk@6471 602fd350-edb4-49c9-b593-d223f7449a82
* New secure cookie protocol. see #5367Ryan Boren2007-12-16
| | | | git-svn-id: https://develop.svn.wordpress.org/trunk@6387 602fd350-edb4-49c9-b593-d223f7449a82
* The config file has been deliberately CRLF since [2370] to recognize that ↵Matt Mullenweg2007-05-12
| | | | | | most people will be editing this file in a crappy windows editor. git-svn-id: https://develop.svn.wordpress.org/trunk@5457 602fd350-edb4-49c9-b593-d223f7449a82
* Update wp-config.php to reference wp-contents/languages instead of ↵rob1n2007-04-15
| | | | | | wp-includes/languages. Props Nazgul. fixes #4150 git-svn-id: https://develop.svn.wordpress.org/trunk@5273 602fd350-edb4-49c9-b593-d223f7449a82