You really shouldn’t have one WordPress installation inside another. That’s a recipe for exactly the kind of disaster you’re experiencing, since it’s most likely conflicting .htaccess files trumping each other.
“Running nested WP installs” is different than “Running WP in a subdirectory” because of exactly what I mentioned above. If you install WP in a subdirectory, it won’t care where it is (or what its path is) as long as you install WP correctly. Once you nest several installations on top of each other, you’re setting yourself up for headaches unless you’re able to fluently track down and alleviate the rewrite issues you’ll run into.
An important piece of missing information, do both of the WordPress installs work independently without bbPress activated on either of them? Pretty permalinks turned on, on both, etc… Once you get that to behave first, then it’s time to try adding things into them.
You really shouldn’t have one WordPress installation inside another. That’s a recipe for exactly the kind of disaster you’re experiencing, since it’s most likely conflicting .htaccess files trumping each other.
“Running nested WP installs” is different than “Running WP in a subdirectory” because of exactly what I mentioned above. If you install WP in a subdirectory, it won’t care where it is (or what its path is) as long as you install WP correctly. Once you nest several installations on top of each other, you’re setting yourself up for headaches unless you’re able to fluently track down and alleviate the rewrite issues you’ll run into.
An important piece of missing information, do both of the WordPress installs work independently without bbPress activated on either of them? Pretty permalinks turned on, on both, etc… Once you get that to behave first, then it’s time to try adding things into them.
OMG I feel like such a heel.. I totally forgot that bbP needs a page created with the name of the forums (‘forums’) in order to work.
DUH!!!
OK problem solved, all seems fine now. *blush*
Thanks all the same JJJ!!!
Jonathan
OMG I feel like such a heel.. I totally forgot that bbP needs a page created with the name of the forums (‘forums’) in order to work.
DUH!!!
OK problem solved, all seems fine now. *blush*
Thanks all the same JJJ!!!
Jonathan
Phew.
I really hoped I wouldn’t need to trouble shoot more complicated permalink issues.
Phew.
I really hoped I wouldn’t need to trouble shoot more complicated permalink issues.
You & me both my friend, you & me both!
Now back to the fun stuff… letting my coder work really hard and solve all my problems for me! *snort*
But seriously, I’m optimistic now.
Actually on a somewhat related note… how would you generally recommend people work with the SVN repo for bbP? I checked it out the other day but I’ve only used SVN for my own projects where I’m intimately familiar with the code and I’m also doing checkins. I’ve never worked in a “read only” fashion, where the changes I make must NOT be checked in. Been having a hard time wrapping my head around a good way to stay current using the repo but not lose my changes. Any advice there?
Jonathan
You & me both my friend, you & me both!
Now back to the fun stuff… letting my coder work really hard and solve all my problems for me! *snort*
But seriously, I’m optimistic now.
Actually on a somewhat related note… how would you generally recommend people work with the SVN repo for bbP? I checked it out the other day but I’ve only used SVN for my own projects where I’m intimately familiar with the code and I’m also doing checkins. I’ve never worked in a “read only” fashion, where the changes I make must NOT be checked in. Been having a hard time wrapping my head around a good way to stay current using the repo but not lose my changes. Any advice there?
Jonathan
Run an svn checkout of the bbPress plugin, and just svn update periodically.
If this is on a remote server and you’re using SVN, you’re probably SSH’ed in, so…
cd wp-content
cd plugins
mkdir bbpress
cd bbpress
svn co https://bbpress.svn.wordpress.org/branches/plugin .
Run an svn checkout of the bbPress plugin, and just svn update periodically.
If this is on a remote server and you’re using SVN, you’re probably SSH’ed in, so…
cd wp-content
cd plugins
mkdir bbpress
cd bbpress
svn co https://bbpress.svn.wordpress.org/branches/plugin .
actually I’m not much for command line so I’m using TortoiseSVN. I have the repo on my machine, the problem is I develop on the server, not locally, so my local copy is pretty much never in sync with my server copy, since this isn’t my SVN where I can manage the deployments.
SVN is awesome but when I try to understand the deeper workings of it, my head wants to explode.
Would this workflow do the trick?
1. Checkout repo locally
2. Upload to WP on server
3. Do my thing, edit files, whatever.
4. End of each day (or whenever), download my edited files to my local copy.
5. Start of each day (or whenever), update my local copy.
6. Upload updated files to server copy.
7. Goto 3.
In my head that seems like it would work, which probably means it’s horribly flawed. LOL
Jonathan
actually I’m not much for command line so I’m using TortoiseSVN. I have the repo on my machine, the problem is I develop on the server, not locally, so my local copy is pretty much never in sync with my server copy, since this isn’t my SVN where I can manage the deployments.
SVN is awesome but when I try to understand the deeper workings of it, my head wants to explode.
Would this workflow do the trick?
1. Checkout repo locally
2. Upload to WP on server
3. Do my thing, edit files, whatever.
4. End of each day (or whenever), download my edited files to my local copy.
5. Start of each day (or whenever), update my local copy.
6. Upload updated files to server copy.
7. Goto 3.
In my head that seems like it would work, which probably means it’s horribly flawed. LOL
Jonathan