Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter bbhandari

    (@bbhandari)

    Thanks a lot Andrea… Solved…

    Thread Starter bbhandari

    (@bbhandari)

    Could you please suggest me what can we do to make htaccess readable?

    Thread Starter bbhandari

    (@bbhandari)

    I checked mod_rewrite is enabled. Actually, wordpress.cdu.edu.au is hosted in our development server which cannot be reached through internet. Web apps installed in it can only be accessed within intranet. I can access main page of wordpress and I can create pages and network, can create sites but I don’t know whay I am not able to visit newly create site and access backend of it.. I too perform claean installation of wordpress many times but no luck..Any help will be highly appreciated.

    Thread Starter bbhandari

    (@bbhandari)

    Thanks Andrea for reply and I am extremely sorry for multiple posting.
    I enabled the network manually and also created sites. I can create site but i cannot visit or access backend , page cannot found error is displayed..

    Hi There,

    I have sucessfully installed WP 3.0.3 and enabled multisites plugin. I choosed sub-directory to create multisite. WordPress allows me to add new site but I when click on visit visit and backend option in newly created site it redirects to “page cannot be found” error.

    Word press is hosted on RHEL 6 wich is our development server and .htaccess file has read access.

    Once I created sub-directory manually inside wordpress root directory and copied all files and directory of word press to it. Then I clicked on visit option of newly created site , it worked. But I dont think this is how it should work.

    Its been already 3 days I am trying to find solution but no luck. I read lots of posts but could not find answer. At the moment I am very fraustrated with myself. I will greatly appreciate if anyone can help in this regard.

    Code that I used in wp-config.php file

    define(‘WP_ALLOW_MULTISITE’, true);
    define( ‘MULTISITE’, true );
    define( ‘SUBDOMAIN_INSTALL’, false );
    $base = ‘/’;
    define( ‘DOMAIN_CURRENT_SITE’, ‘wordpress.cdu.edu.au’ );
    define( ‘PATH_CURRENT_SITE’, ‘/’ );
    define( ‘SITE_ID_CURRENT_SITE’, 1 );
    define( ‘BLOG_ID_CURRENT_SITE’, 1 );

    code that i used in .htaccess file

    #BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    #END WordPress

    Looking forward for replies…

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