kbosu31
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpI am a little closer to narrowing the issue down. I’m using the Job Manager plugin for the Careers page. Which is the parent page of the problem pages. I deactivated that plugin then republished that page and all of the child pages are now working. Deactivating the plugin only didn’t fix the problem, it wasn’t until I republished the page after deactivating, that it started working. The Careers page gets assigned as the default page to list all of the careers. Not really sure why that would effect the child pages though?
Forum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpI’ve tried every built-in permalink structure. All of them have the same issue except when you switch it to the default https://somesite.com/?p=123 structure. Then all of the 3rd level navs work even the about us section.
Forum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpIt looks like it is now only happening under About Us > Careers > Tech Partners or any other 3rd level nav under the About Us section. The other 3rd level navs are working properly. Strange.
Forum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpForum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpHere is my htaccess file contents if that helps:
# 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 WordPress
Forum: Fixing WordPress
In reply to: 3rd level navigation defaulting to index.php instead of page.phpI have tried all of the above. Changing to the Twenty Eleven theme has the same effect when navigating to the 3rd level navigation pages.
Marcus, Do you happen to know what was changed in the update to fix this issue? I have one install of 3.0.94 that is pretty customized and over 10,000 events in the system. The customization to the front end is so in depth that an upgrade to this would be basically starting over for this particular scenario and want to avoid that at all costs and would love to fix it myself in this version if possible.
Forum: Networking WordPress
In reply to: Missing Images After Upgrade to 3.2 from 3.0 MUFixed My own issue here. I downgraded to 3.0 then upgraded to 3.2.1 and it seems the missing images have magically appeared!
Forum: Networking WordPress
In reply to: Missing Images After Upgrade to 3.2 from 3.0 MUAlso here is my .htaccess file for reference:
addhandler x-httpd-php5 .php # 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).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress
Forum: Networking WordPress
In reply to: Using domain forwarding with Multi-site setupFixed my own issue… Just installed the MU Domain Mapping plugin and added the forwarded domain under settings/domains and mapped that to the id of site2 and bingo it works.