Hej John,
Jeg har nu prøvet, både at indsætte: define(‘WP_ALLOW_MULTISITE’, true); iht. dét link Mark oplyste og som du skriver men ingen af delene virker.
Min configfil ser således ud - hva' er galt?...
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'xxx');
/** MySQL database username */
define('DB_USER', 'xxx');
/** MySQL database password */
define('DB_PASSWORD', 'xxx');
/** MySQL hostname */
define('DB_HOST', 'xxx.mysql');
/** 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', '');
/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', '))p~2>ZiE:,$#CGLGqE/N+Y;pn&Z|R&qVfR-uY+3e2/pxwG tjL>RM;3K7&/O?UD');
define('SECURE_AUTH_KEY', 'PuqV||hP&t*{}95fmUosGMR9ck^Rsz#$8gRcv;PLS9[$-(5q7so/EP]48(}2&XFH');
define('LOGGED_IN_KEY', 'YDmJeqyK92R,1;o|h*xZ;U-P@@6U-s]bP:P*DWR}X]5xOC=oA1;ax{3dJ]H}>8Sf');
define('NONCE_KEY', '6_/g)DM(q-Y+qQ6lsJA`< k/[m]aC$XX|b_D@*cI+DcsR4_])7WI)x8+XpG0S.6?');
define('AUTH_SALT', 'KVt,P |?$%/[W|7FmDA MWDH[BA?A^E,;1S8Fe4$EBnm%B<=gt~Q+<:[/nO#HPjh');
define('SECURE_AUTH_SALT', 'n6wsJgc%7w:I6#1+5N(Qm2sosOH5WT9uO8y+aufGDJ9wL<61A7JX$n~D}syz}@5z');
define('LOGGED_IN_SALT', 'gs&-{{seMI.*]$+1Va8/D0xpA&L Vjf7r![oN+f%k)}Lb@POkI++b_UiIk8uS[Rf');
define('NONCE_SALT', 'L63-_^^v%)GW3;_Q|[N-S6J$T~/xe&|?CA#ltmY,
=,aS. ih=9GY)}av9eNV~m');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de.mo to wp-content/languages and set WPLANG to 'de' to enable German
* language support.
*/
define ('WPLANG', '');
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', false);
define(‘WP_ALLOW_MULTISITE’, true);
/* That's all, stop editing! Happy blogging. */
/** 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');