Support » Asennus » Kirjautuminen ei asennuksen jälkeen onnistu

  • Hei!
    Olen tosi aloittelija. Muokkasin wp-config. php:n oheisen näköiseksi.
    Tietokannan nimen, käyttäjän ja salasanan olen tähän muuttanut, mutta muut ovat ihan niin kuin oikeassa filessä. Ongelma on se, että asennus näyttää onnistuvan, mutta kirjautumisen jälkeen sivut eivät avaudu. Osaisikohan joku auttaa? http://www.raivoranta.fi

    ”<?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’, ’TÄMÄ ON OK’);

    /** MySQL database username */
    define(’DB_USER’, ’TÄMÄ ON OK’);

    /** MySQL database password */
    define(’DB_PASSWORD’, ’TÄMÄ ON OK’);

    /** 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’, ”);*/

    /**Multisite päälle**/

    define(’WP_ALLOW_MULTISITE’, true);

    /**#@+
    * 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’, ’z>Yf3tyUkdD{VN7g<L7%2&AG<~OB!–jD8!@+qxk90 A4dA6;Du*@MwiVCTV3VZS’);
    define(’SECURE_AUTH_KEY’, ’8r^@9h(zo/7w[8m+>g47s2Eux7[uFm7{q|Qvx/ CEo6+o[?^<x9D a@|OFD#z_’);
    define(’LOGGED_IN_KEY’, ’bon~Duz+qR%j-xSoCVYzPA%g7TH*NmGdiv9Jz) ,>~T9h!fj-g|@I8U) h}]75B$’);
    define(’NONCE_KEY’, ’/?rpy*kC|pG;A^FICyIfnB]))m}q)X}y5 HsDyLh}{0%/3Q=8!i2;^k[w3k+,7N)’);
    define(’AUTH_SALT’, ’w}0c!jJ*8RO_]QCeCi-n}PJdT>-Y~+ma|gX*$4*f^t:{~AP,#v&{8S6[N_s|91+H’);
    define(’SECURE_AUTH_SALT’, ’+h1KEu<1b6jr(!FXVnjgFd0hyWS?DL?$#GqOKriz tLp$&(KG1C<rzI-10zBj`##’);
    define(’LOGGED_IN_SALT’, ’rT|iUF$H*72&C%40O+KhVHFB~]HcPPSk>LCnQcEuP@f8cI<+DffTf&B+N;C/@eqF’);
    define(’NONCE_SALT’, ’[h|9g9/>NIV?uXSs{-a}fnt;(NzAynq;/0&N1i0`|DmJ@<U#g>@p+%ZUL!9!pY’);

    /**#@-*/

    /**
    * 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’, ’fi’);

    /**
    * 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( ’MULTISITE’, true );
    define( ’SUBDOMAIN_INSTALL’, false );
    $base = ’/blogit/’;
    define( ’DOMAIN_CURRENT_SITE’, ’localhost’ );
    define( ’PATH_CURRENT_SITE’, ’/blogit/’ );
    define( ’SITE_ID_CURRENT_SITE’, 1 );
    define( ’BLOG_ID_CURRENT_SITE’, 1 );

    /* 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’);”

  • The topic ‘Kirjautuminen ei asennuksen jälkeen onnistu’ is closed to new replies.