• i edit .htaccess file for
    ===========================================
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule . index.php [L]
    ==================================================================
    multisite purpose suddenly i got following error

    wp_1_posts: Table ‘wordpress1.wp_1_posts’ doesn’t exist
    wp_1_comments: Table ‘wordpress1.wp_1_comments’ doesn’t exist
    wp_1_links: Table ‘wordpress1.wp_1_links’ doesn’t exist
    wp_1_options: Table ‘wordpress1.wp_1_options’ doesn’t exist
    wp_1_postmeta: Table ‘wordpress1.wp_1_postmeta’ doesn’t exist
    wp_1_terms: Table ‘wordpress1.wp_1_terms’ doesn’t exist
    wp_1_term_taxonomy: Table ‘wordpress1.wp_1_term_taxonomy’ doesn’t exist
    wp_1_term_relationships: Table ‘wordpress1.wp_1_term_relationships’ doesn’t exist
    wp_1_commentmeta: Table ‘wordpress1.wp_1_commentmeta’ doesn’t exist

Viewing 4 replies - 1 through 4 (of 4 total)
  • Have you checked your database?

    Thread Starter prashanthag

    (@prashanthag)

    No In database what to do? plz tell me
    i execute the following queries in DB

    | GRANT ALL PRIVILEGES ON *.* TO ‘wpuser’@’localhost’ IDENTIFIED BY PASSWORD ‘…’ WITH GRANT OPTION |
    and
    GRANT ALL PRIVILEGES ON *.* TO ‘wpuser’@’%’ WITH GRANT OPTION

    but still same error i edit wpconfig.php
    file to make multisite i am doing these activities in localhost using wamp server

    define(‘WP_DEBUG’, false);

    //define(‘MULTISITE’, true);
    define(‘WP_ALLOW_MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);

    Thread Starter prashanthag

    (@prashanthag)

    In Database it shows
    Error establishing a database connection

    Do the tables listed above exist in your database?

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘.Htaccess file edit’ is closed to new replies.