Ablistical wrote:I am using phpBB 2.0.10. I was wondering if it is okay to do everything within this mod except for the ones that use the templates. I dont use subsilver and I am having a hard time finding the right places so before i continue Id like to know if I could just skip those and do the rest. Thank you very much for any advice.
I don't recall off the top of my head of any php-side changes require the template changes. But assuming none do, it shouldn't cause you problems.
However, some of the template changes are very important (e.g. the overall header change, removing next/previous etc).
alycad wrote:
What is SID?
SID = session ID.
Through the use of sessions a lot of the interactivity of forums is possible. For example a logged in user is logged in because they have a live session in the sessions table.
When people refer to session IDs on this thread they are usually talking about URL-based session IDs as those are a great impediment to search engines.
Quote:Should my urls have the .html extension when i enter a forum?
This happens, but only to guests... is this correct?
Correct, only to logged out users (and since search engine spiders don't log in that means them).
Quote:when i use in google, site: my domain... it only shows 53 results. Most of then from the site ( all pages from the site are displayed and i can search for phrases in google " this is an example" and if the phrase is in the site it will appear the correct page and url ) and few from the forum.. only the foruns description and index page.
Is this normal?
I don't know. And I can't know, each site's positions in search engines can be different.
Here, I won't be serving as a position consultant. I can only provide code to help you and answer any question you have about SEO principles and procedures.
If I start to answer the "why doesn't google..." questions I will take on more than I have time to. Knowing why you rank where you do involves a carefull following of the site's position, logs and changes.
I can't be a free consultant for each site, so I can only provide code, support code, and answer SEO theoretical questions.
kirtok wrote:I have installed a fresh test forum at Edit (Moderator): link removed and went through each step of your mod manually. It is just fantastic, and works great on your site. But mine gives some error when you click on any forum category. Can anybody take a look at it and let me know what I am doing wrong?
.htaccess file is in testforum folder
robots.txt is in root folder of the site.
I spent around 3 hours installing and reading through this thread, any help will be greatly appreciated.
Thanks
Matt
Sounds like mod_rewrite either:
a) was not applied properly
or
b) is not available to you
If you applied it properly (the most common mistake is to neglect to put it in the same directory as the forum) then ask your host if they have mod_rewrite available to you.
hitsusa wrote:
Here's the three error code lines:
Warning: Cannot modify header information - headers already sent by (output started at /home/fundra2/public_html/forum/language/lang_english/lang_main.php:1029) in /home/fundra2/public_html/forum/includes/page_header.php on line 475
Warning: Cannot modify header information - headers already sent by (output started at /home/fundra2/public_html/forum/language/lang_english/lang_main.php:1029) in /home/fundra2/public_html/forum/includes/page_header.php on line 477
Warning: Cannot modify header information - headers already sent by (output started at /home/fundra2/public_html/forum/language/lang_english/lang_main.php:1029) in /home/fundra2/public_html/forum/includes/page_header.php on line 478
Can't figure out why the errors won't go away with this page's ( /language/lang_english/lang_main.php) code back to default.
Anybody have any insight into this bonehead error?
Some free hosts give these errors because of their server configuration (e.g. lycos is notorious).
But assuming it's not a server-issue make sure there are no blank lines before the php opening and closing tag on that file.