FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » How To » My Messages Aren't Found By Search Engines
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
My Messages Aren't Found By Search Engines [message #9867] Mon, 05 May 2003 12:18 Go to next message
Lynky is currently offline  Lynky   Germany
Messages: 38
Registered: May 2003
Location: Germany
Karma: 0
Member
Hello,

I'm using FUFForum for about a year and a short time ago, I recognized that Search Engines like Google don't find my messages/postings by keywords.

Is that normal? Can I change it somehow?

Thanks in advance for your help,

Philipp


PS: In case that this question has been asked several times before, I apologize for this. I just didn't find any postings that seem to match my situation.
Re:My Messages Aren't Found By Search Engines [message #9942 is a reply to message #9867] Tue, 13 May 2003 14:03 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Good question. The reason for this is quite simple, most search engines refuse to parse any URLs that have things like ?fdsf&fd=fd in them, because those could be used to trick the search engine to keep parsing the same page over & over again. The upcomming forum release will support PATH_INFO style urls like a.php/ws/s/ddsa/, which are much more search engine friendly.

FUDforum Core Developer
Re:My Messages Aren't Found By Search Engines [message #9980 is a reply to message #9942] Tue, 13 May 2003 18:50 Go to previous messageGo to next message
Lynky is currently offline  Lynky   Germany
Messages: 38
Registered: May 2003
Location: Germany
Karma: 0
Member
Thanks a lot!

I didn't know that search engines don't get pages called by QUERY_STRING.

But I can't imagine how to give params from one page to another just by PATH_INFO. I didn't hear about that before. How does that work? Is that a real existing path or is the one difference that you use slashes instead of "=" and "&"s (that would surprise me)?

Lynky

Re:My Messages Aren't Found By Search Engines [message #9981 is a reply to message #9980] Tue, 13 May 2003 20:16 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
PATH_INFO trick only works on Apache 1.X systems with PHP and in some versions with other web server sapis.

It works by specifying variables separated by a '/' and then internall the php script itself translates the data into something useful.

So, instead of
http://fud.prohost.org/forum/index.php?t=msg&goto=123&rid=1
you'd have
http://fud.prohost.org/forum/index.php/m/123/1/


FUDforum Core Developer
Re:My Messages Aren't Found By Search Engines [message #9996 is a reply to message #9981] Wed, 14 May 2003 13:02 Go to previous messageGo to next message
Lynky is currently offline  Lynky   Germany
Messages: 38
Registered: May 2003
Location: Germany
Karma: 0
Member
Oh,
I think I understand that thing. It's simular using

format('foo '+ %s + 'a' + %s)
['b', 'r'];

in other languages (like Pascal for example). The difference is, that in PHP you READ (most likely) the variables on same way.

But that only works in Apache 1.3.x is quite annoying. What if my Provider decides in a few weeks to upgrade to Apache 2 or, even worse, IIS ?

Greetings from

Lynky

[Updated on: Wed, 14 May 2003 13:03]

Report message to a moderator

Re:My Messages Aren't Found By Search Engines [message #10001 is a reply to message #9996] Wed, 14 May 2003 14:23 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Well, theoretically it should work in IIS & Apache 2, however in my tests with the current PHP (4.3.2RC2) it did not work with Apache 2. And the people I've asked reported that this is does not work with IIS. The solution is to harass PHP developers and get them to fix the problem.

FUDforum Core Developer
Re: My Messages Aren't Found By Search Engines [message #15375 is a reply to message #9867] Fri, 12 December 2003 17:30 Go to previous messageGo to next message
sarahk is currently offline  sarahk   New Zealand
Messages: 3
Registered: December 2003
Location: New Zealand
Karma: 0
Junior Member

Quote:

The upcomming forum release will support PATH_INFO style urls

The quoted post was made in may 2003. It's now Dec, is that feature now available?

I've been asked to have a look at FUD and this is the only "tick" I can't give it.

Although the slowness to load the post reply type buttons is infuriating, but hopefully that's a skin issue Smile


Sarah King
Re: My Messages Aren't Found By Search Engines [message #15376 is a reply to message #15375] Fri, 12 December 2003 17:31 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
FUDforum has supported PATH_INFO style urls for several month now I believe as of 2.5.0 release. It is just that THIS forum does not use it.

FUDforum Core Developer
Re: My Messages Aren't Found By Search Engines [message #15377 is a reply to message #9867] Fri, 12 December 2003 17:36 Go to previous messageGo to next message
sarahk is currently offline  sarahk   New Zealand
Messages: 3
Registered: December 2003
Location: New Zealand
Karma: 0
Junior Member

Wow, fast reply. Thanks

Sarah King
Re:My Messages Aren't Found By Search Engines [message #16121 is a reply to message #10001] Thu, 15 January 2004 11:54 Go to previous messageGo to next message
malmazan   Spain
Messages: 8
Registered: January 2004
Karma: 0
Junior Member
Ilia wrote on Wed, 14 May 2003 10:23

Well, theoretically it should work in IIS & Apache 2, however in my tests with the current PHP (4.3.2RC2) it did not work with Apache 2. And the people I've asked reported that this is does not work with IIS. The solution is to harass PHP developers and get them to fix the problem.


My host uses Apache/1.3.28 and it does not seem to work either.

Is there are workaround using mod rewrite?
Re:My Messages Aren't Found By Search Engines [message #16125 is a reply to message #16121] Thu, 15 January 2004 14:19 Go to previous message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Yes, you need to use enable path_info based theme and used mod_rewrite to convert path_info style URLs into their normal equivalents like users.inc.t does normally.

FUDforum Core Developer
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Hide admin email in "Contact"
Next Topic: disable IP-display
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Nov 23 19:03:37 GMT 2024

Total time taken to generate the page: 0.02782 seconds