macwise
Forum Replies Created
-
Forum: Your WordPress
In reply to: Could someone check some links? and review pls.incertus, I can type faster, not shorter. You really won this one!
😉Forum: Your WordPress
In reply to: Could someone check some links? and review pls.Goodman48,
In my experience, the validator is really never wrong, I am. Now, that’s not to say that occasionally you can’t disagree with it. For instance, I personally feel that a target=”” directive should be part of the standard in xhtml, since so many people use it anyway, and it is actually very useful and occasionally needed. However, in your case, the validation issues are very real, and not a mistake.
Just as en example, let’s take the META (And other) tags which the validator says”
“Line ## column ###: end tag for “something-or-another” omitted, but OMITTAG NO was specified.”
In this case, lets take the first error. Here’s exactly what the validator says:
Error Line 38, column 150: end tag for "meta" omitted, but OMITTAG NO was specified . ...l, park, review, dining, restaurant"> You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".As you can see, the last line spells out VERY clearly what it is needing. On line 38, you are missing the “/” character, telling the browser that the meta tag is done issuing information. Here’s a comparison of what YOUR’S is saying, vs. what the validator, (and every valid browser in the world) would prefer:
Yours:
<meta name="keywords" content="darwin, nt, northern, territory, australia, news, gossip, top end, kakadu, national, park, review, dining, restaurant">Valid:
<meta name="keywords" content="darwin, nt, northern, territory, australia, news, gossip, top end, kakadu, national, park, review, dining, restaurant" />NOTICE THE CLOSING FORWARDSLASH IN THE SECOND LINE
I would also suggest that you go back to the drawing board a bit. I would start with the validator. It can definitely be frustrating, but it IS your friend. It will tell you how to resolve about 90% of your discrepancies between browsers. If you don’t care about FF or Safari or Mozilla or Netscape or Opera (neither do I about Opera, sorry guys), or any of the others you’re neglecting, then fine. That’s your choice. But realize that you’re ignoring about 20% of the market at this juncture, and more in the future. You’ll only be able to ignore it so long. It may be more beneficial to you and your readers if you follow better coding standards.
This is work, and does take both time, and more than a “quick study” knowledge of CSS, XHTML, and standards. However, if you’re planning on doing this long term, or going big in any degree, it’s essential, IMO.
Good luck!
Forum: Fixing WordPress
In reply to: WordPress database error, mySQL/syntax.is that the full line? Can you find that line and copy/paste the full line here?
Forum: Installing WordPress
In reply to: Installation issues with nearlyfreespeech.netsorry, couldn’t resist.
Forum: Installing WordPress
In reply to: Installation issues with nearlyfreespeech.netYou can’t say that on your server. You’re being censored.
Forum: Fixing WordPress
In reply to: Multiple URL’s or Sub-Domains in Cookie?Sorry for the delayed reply. Here is the info that allowed me to set any sub-domain of my domain to be recorded in the cookie automatically. Hope this helps someone else. This doesn’t seem to be documented anywhere else. Look toward the end of the files
FOR WordPress:
http://bbpress.org/forums/topic/780?replies=8FOR BBPress:
http://bbpress.org/forums/topic/798?replies=4Ron
Forum: Installing WordPress
In reply to: .htaccess : can’t figure this outSorry for the delayed reply. Here is the info that allowed me to set any sub-domain of my domain to be recorded in the cookie automatically. Hope this helps someone else. This doesn’t seem to be documented anywhere else. Look toward the end of the files
FOR WordPress:
http://bbpress.org/forums/topic/780?replies=8FOR BBPress:
http://bbpress.org/forums/topic/798?replies=4Ron
Forum: Installing WordPress
In reply to: .htaccess : can’t figure this outI have resolved my issues. (well wordpress related, at least) 😉 I will post more tomorrow when my head isn’t spinning.
Forum: Installing WordPress
In reply to: .htaccess : can’t figure this outdagnab….that didn’t work either. Thanks for the help. I am wondering what the root problem is here. I can only imagine it has to do with one of two factors…either I inadvertently messed something up in the wordpress/bbpress code while modifying it, or the host (dreamhost.com) has a configuration problem.
I suppose the third option might be that since I’m installed on php4 and not php5? Though I don’t see that as a real viable cause. Is there any way I can see the wordpress.org mod_rewrite directives to see if I’m missing anything since what I’m trying to do seems to work just fine here?
I AM DESPERATE! I WILL TAKE ANY AND ALL SUGGESTIONS, TRY, RETRY, AND EVEN TRY BACKWARDS IF YOU HAVE AN IDEA. I’ve got to get the official launch of this baby to happen…yesterday. This is me grasping at straws. Thanks for your help.
Forum: Installing WordPress
In reply to: .htaccess : can’t figure this outOk, Otto…
I’ve added these lines:
RewriteCond %{HTTP_HOST} !^www.babyquestions101.com$ [NC] RewriteRule ^(.*)$ http://www.babyquestions101.com/$1 [R=301,L]However, now there is a new set of problems. It’s probably best for you to test it out yourself to see what’s going on. I actually tried this already, and the problem was extremely bizarre, hence my posting here. Maybe you can punch this into your address bar and see if you can figure out what the fix is:
If I go here:
babyquestions101.com/forum (without the trailing forward slash)
then I get forwarded here:
http://www.babyquestions101.com//home/macwise/babyquestions101.com/forumand if I go here:
babyquestions101.com/forum/ (with the trailing forward slash)
then I go here:
http://www.babyquestions101.com/No matter what else I put in there I can’t seem to make that first situation disappear. (where the full path appears).
Any ideas?
Forum: Installing WordPress
In reply to: .htaccess : can’t figure this outThanks for your reply, Otto. I’m really scratching my head on this one. I can’t seem to get past this, nor can my veteran web developer buddy, (though he is mostly familiar with .net). Here’s the code from my BBPress install directory’s .htaccess file:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /forum/ RewriteRule ^forum/([0-9]+)/page/([0-9]+)$ /forum/forum.php?id=$1&page=$2 [L,QSA] RewriteRule ^contest/$ /forum/contest.php [L,QSA] RewriteRule ^contest$ /forum/contest.php [L,QSA] RewriteRule ^forum/([0-9]+)$ /forum/forum.php?id=$1 [L,QSA] RewriteRule ^topic/([0-9]+)/page/([0-9]+)$ /forum/topic.php?id=$1&page=$2 [L,QSA] RewriteRule ^topic/([0-9]+)$ /forum/topic.php?id=$1 [L,QSA] RewriteRule ^tags/(.+)/page/([0-9]+)$ /forum/tags.php?tag=$1&page=$2 [L,QSA] RewriteRule ^tags/(.+)/?$ /forum/tags.php?tag=$1 [L,QSA] RewriteRule ^tags/?$ /forum/tags.php [L,QSA] RewriteRule ^profile/([0-9]+)/page/([0-9]+)$ /forum/profile.php?id=$1&page=$2 [L,QSA] RewriteRule ^profile/([0-9]+)/([a-z]+)$ /forum/profile.php?id=$1&tab=$2 [L,QSA] RewriteRule ^profile/([0-9]+)/([a-z]+)/page/([0-9]+)$ /forum/profile.php?id=$1&tab=$2&page=$3 [L,QSA] RewriteRule ^profile/([0-9]+)$ /forum/profile.php?id=$1 [L,QSA] RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /forum/view.php?view=$1&page=$2 [L,QSA] RewriteRule ^view/([a-z-]+)$ /forum/view.php?view=$1 [L,QSA] RewriteRule ^rss/$ /forum/rss.php [L,QSA] RewriteRule ^rss/forum/([0-9]+)$ /forum/rss.php?forum=$1 [L,QSA] RewriteRule ^rss/topic/([0-9]+)$ /forum/rss.php?topic=$1 [L,QSA] RewriteRule ^rss/tags/([a-z]+)$ /forum/rss.php?tag=$1 [L,QSA] RewriteRule ^rss/profile/([0-9]+)$ /forum/rss.php?profile=$1 [L,QSA] </IfModule>Forum: Fixing WordPress
In reply to: Multiple URL’s or Sub-Domains in Cookie?Hmm….Thank you for the reply. I have tried it without the “www”, but it still had the same logged-in-status problems. I just tried it again to make sure, but it seems to be problematic still.
Basically, if I log in at myurl.com, then once I remove the “www.” from the address bar and hit enter it refreshes the page with my status being logged out, (and vice-versa). This behavior is present in both WordPress and BBPress.
My first choice for a solution would be to add both “www.myurl.com” and “myurl.com” to the cookie, so no matter where they go, wp and bb recognize them. However, that seems to be a solution for which no one has an answer.
In lieu of that, I would like to forward everybody from “myurl.com” to “www.myurl.com” This seems a little hackerly to me, and it seems like there should be a simple solution for subdomains, but I have not been able to find it if it exists. I could REALLY use some help finding an appropriate solution here.
Thanks
Forum: Fixing WordPress
In reply to: Multiple URL’s or Sub-Domains in Cookie?They are listed WITH www. I am digging into mod_rewrite directives, but to be honest, I’m not really grasping it. Right when I think I have it figured out, it throws me. I have been able to get requests going to http://babyquestions101.com to redirect to http://www.babyquestions101.com/ using mod_rewrite in the .htaccess files. However, when I try it out in the forums, (http://babyquestions101.com/forum/) it just resolves at that address, and doesn’t insert the www. Any ideas?
Forum: Plugins
In reply to: Custom URL Query String WoesOk, I figured it out. Looks like my custom php code was calling a variable $s which was conflicting with a WordPress variable somewhere. I changed the variable $s in this code to $startat, and the problem went away.
The fixed page is here:
http://babyquestions101.com/baby-name-meaningForum: Plugins
In reply to: Best Blog Forum Gallery combo?I did some tweaking to phpbb/4images to allow them to share tables…never got to bringing wordpress into the loop, so I don’t know how difficult that would be. I would say that bringing phpbb/4images together to share user tables/cookies was moderately difficult, but doable. I’m very happy with both applications, and feel it was well worth the time, even though the site is not currently being used.
I am not sure where I found the information on combining the two apps, but I’m sure with a little google vision, you could come across the info fairly easily. You can see the gallery here:
http://brookselite.com/gallery/
and the forum is here:
http://www.brookselite.com/forum/index.phpI *may* be able to dig up some old info if you can’t find anything in your quest. Good luck.