[Fix Error] Anrop till odefinierad funktion wp() i wp-blog-header.php
O fel som dök upp för mig på flera bloggarWordPress efter att de flyttats från en server till en annan och hade redigerade filen wp-config.php. “Call to undefined function wp() in wp-blog-header.php“.
Felorsak: – Det verkar som att filen wp-config.php den tappar sina rader efter att ha redigerats. Specifikt visas all php-kod på en enda rad. Jag vet inte vad den exakta orsaken är. Förmodligen ett problem med php-filredigeraren.
[Åtgärda fel] Call to undefined function wp() in wp-blog-header.php
LÖSNING: Kopiera & Ersätt till en ny fil wp-config.php där du ställer in din databas, användardatabas, pass och prefix.
<?php
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'putyourdbnamehere');
/** MySQL database username */
define('DB_USER', 'usernamehere');
/** MySQL database password */
define('DB_PASSWORD', 'yourpasswordhere');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
$table_prefix = 'wp_';
define ('WPLANG', '');
/* That's all, stop editing! Happy blogging. */
/** WordPress absolute path to the Wordpress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
?>
- [Fix] Ring till odefinierad funktion w3_url_format () i pgcacheadmin.php
- [Fix PHP 7.2 / PHP 7.3] PHP Varning: Användning av odefinierad konstant (detta kommer att orsaka ett fel i en framtida version av PHP)
- WP Super Cache vs. W3 Total Cache (Topp 5 Caracteristici)
Felet försvann efter den här uppdateringen från filen wp-config.php al WordPress.
[Fix Error] Anrop till odefinierad funktion wp() i wp-blog-header.php
Vad är nytt
Om Stomma
Passionerad av teknik, skriver jag gärna på StealthSettings.com sedan 2006. Jag har omfattande erfarenhet av operativsystem: macOS, Windows och Linux, samt av programmeringsspråk och bloggplattformar (WordPress) och för webbutiker (WooCommerce, Magento, PrestaShop).
Visa alla inlägg av StealthDu kanske också är intresserad av...