Tremayne
Forum Replies Created
-
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingokay, still loads through root url, and more links are working.
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingoh that was no complaint, just an excuse for bloody marys
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingI’m all ears, client will have to just enjoy brunch. ??
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingkind of….loads with the root url, but some of the links have /2014 and don’t navigate…. looking into it now
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingum…I think it’s working
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingchanged it
and similar on the sub-dir index.php?
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingrequire( dirname( __FILE__ ) ‘./wordpress/wp-blog-header.php’ );
is that keeping the structure alive?
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingI do have an INDEX.php file both in the wordpress dir and root
root says this
<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) ‘./wordpress/wp-blog-header.php’ );Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingsorrry! withOUT hardcode. I must be tired. drinking coffee now
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingsorry needed coffe.
No, the functions php is with hardcode
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingseriously, keep the thread count down, will ya. ??
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingroot htaccess look like this
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [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).*) wordpress/$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ wordpress/$2 [L]
RewriteRule . index.php [L]Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingmy mistake, that IS the subdirectory htaccess…. checking the root now
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingI hope that’s a good “oh”
Forum: Networking WordPress
In reply to: wp-admin link suddenly stopped workingOkay. I copied everything out of the directory yesterday, including .htaccess and downloaded the SQL db, so we;re good there.
this is the contents of teh root htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressChanged wp2 “home” and the navi works.