Задать вопрос
Ответы пользователя по тегу WordPress
  • Как перенести wordpress на хостинг?

    twentyfivesymbolsusername
    @twentyfivesymbolsusername
    Front-end developer
    Вам нужно внести изменения в файл wp-config.php.

    // ** MySQL settings - You can get this info from your web host ** //
    /** The name of the database for WordPress */
    define('DB_NAME', 'database');
    
    /** MySQL database username */
    define('DB_USER', 'username');
    
    /** MySQL database password */
    define('DB_PASSWORD', 'password');
    
    /** MySQL hostname */
    define('DB_HOST', 'hostname');
    
    /** 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', '');


    Скорей всего у Вас там на локалхост настроено.
    Ответ написан