Forum Replies Created
-
In reply to: Simply doesn’t work
OK I will try this and let you know what happens.
In reply to: Found an error in the layout already. Have a look.Actually the h2 is the first place I went.
I changed
.topictitle{
font-size: 26px;
font-weight: normal;
display: inline;
}
to
.topictitle h2{
font-size: 26px;
font-weight: normal;
display: inline; width:50%; min-width:300px;
}
This sort of fixed it, but then I lost control of the size for h2.
Using the above code, the title fits, but the size of it was shrunk down too much. Adjusting the size back up didn’t resolve the issue. No matter what size I chose, the font for the title remained the same. This was a puzzling development. Anyone know why this would happen?
In reply to: Found an error in the layout already. Have a look.I imagine the issue atop the page is a sty;e issue but my Tylenol PMs are preventing me from seeing it.
In reply to: How to tell if BBPRESS is synchronized with WPAhh,
I logged OUT of my bbpress forums, then I logged INTO my WP blog at http://totalphysiqueonline.com/ and then went to my bbpress forum and BOOM, I was automatically logged. I did not even have to enter my info and press the login button. How cool is that!
I guess I did it right eh?
In reply to: Simply doesn’t workGee, aren’t problems fun! I mean dontcha just like sitting in front of your PC for 48 hours straight trying to figure out why that damned “P “remains lower case even though you have uploaded it 648 times, only to find out you were uploading the right document to the wrong directory all along?
Lord help us!
Now Trent will spend the next week trying to figure out why this damned htacces/permalink wonkiness is giving us fits. LOL
During that time he will neither eat, sleep, shower or use the bathroom. He will simply deficate where he sits. In fact, he will not even blink. But hey, at least our problems will be solved thanks to Trent.
May he rest in peace.
heheh
In reply to: Simply doesn’t workAny more ideas on how to use permalinks?
In reply to: Simply doesn’t workTrent, since I suspected that the permalinks was the issue, I just disabled it. I replace TRUE with FALSE, which is the way it is by default, and my links worked. But dang it, I wanted to try it with pretty links.
In reply to: Simply doesn’t work<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /bbpress/
RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([0-9]+)$ /bbpress/forum.php?id=$1 [L,QSA]
RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([0-9]+)$ /bbpress/topic.php?id=$1 [L,QSA]
RewriteRule ^tags/(.+)/page/([0-9]+)$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/(.+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]
RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([0-9]+)$ /bbpress/profile.php?id=$1 [L,QSA]
RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /bbpress/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([a-z-]+)$ /bbpress/view.php?view=$1 [L,QSA]
RewriteRule ^rss/$ /bbpress/rss.php [L,QSA]
RewriteRule ^rss/forum/([0-9]+)$ /bbpress/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/topic/([0-9]+)$ /bbpress/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([a-z]+)$ /bbpress/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/profile/([0-9]+)$ /bbpress/rss.php?profile=$1 [L,QSA]
</IfModule>
OK the above code is what I placed in HTACCESS, and I did as you suggested by uploading this file to my bbpress folder.
I then logged back into my site and I am still getting the 404 errors
Here is the actual error:
The page you tried to access does not exist on this server. This page may not exist due to the following reasons:
You are the owner of this web site and you have not uploaded (or incorrectly uploaded) your web site. For information on uploading your web site using FTP client software or web design software, click here for FTP Upload Information.
The URL that you have entered in your browser is incorrect. Please re-enter the URL and try again.
The Link that you clicked on incorrectly points to this page. Please contact the owner of this web site to inform them of this situation.
In reply to: Simply doesn’t workTrent thanks I will give that a try.
In reply to: Simply doesn’t workI tried the mod rewrite and it did not work for me.
I have this in my htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /bbpress/
RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([0-9]+)$ /bbpress/forum.php?id=$1 [L,QSA]
RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([0-9]+)$ /bbpress/topic.php?id=$1 [L,QSA]
RewriteRule ^tags/(.+)/page/([0-9]+)$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/(.+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]
RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([0-9]+)$ /bbpress/profile.php?id=$1 [L,QSA]
RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /bbpress/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([a-z-]+)$ /bbpress/view.php?view=$1 [L,QSA]
RewriteRule ^rss/$ /bbpress/rss.php [L,QSA]
RewriteRule ^rss/forum/([0-9]+)$ /bbpress/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/topic/([0-9]+)$ /bbpress/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([a-z]+)$ /bbpress/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/profile/([0-9]+)$ /bbpress/rss.php?profile=$1 [L,QSA]
</IfModule>
I still get 404 errors no matter what link I click in my blog.
Installed fine. Dashboard and all that stuff in place.
Can go to admin. and all the other places, I just cannot get links to work.
I know in my config file I made sure pretty links was enabled but it doesn’t look like it worked
Here is the default first post link
http://totalphysiqueonline.com/bbpress/topic/1?replies=1
Doesn’t look like a pretty link, does it?