February 08, 2012, 15:05:38
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News
: Check your Page Rank, Backlinks, or Link Popularity in our tools section.
Home
Forum
Help
Search
Directory
Calendar
Login
Register
News
Check your Page Rank, Backlinks, or Link Popularity in our tools section.
IT Resources
Hot Wallpapers
Java and Linux HowTo's
Cheap Hosting
Movie and Game Reviews
Webmaster's Talks !
>
Forum
>
The Webmasters Talks !
>
Tools
>
SEO 4 SMF
(Moderator:
TheGodFather
) >
Seo4SMF Introduction and bla bla
Pages:
1
[
2
]
3
« previous
next »
Print
Author
Topic:
Seo4SMF Introduction and bla bla
(Read 19017 times)
0 Members and 3 Guests are viewing this topic.
TheGodFather
Administrator
Hero Member
Points: 202
Offline
Posts: 2570
Re: Seo4SMF Introduction and bla bla
«
Reply #15 on:
December 05, 2006, 14:11:47 »
Because I don't use any database(sql xml etc) backend for my script I need to preserve the id in the name.
Think what is happen if you have 200 links on a single page and you do for each link a sql query
for 1 user. Probably that can be optimised but not to much.
Regards
Logged
█
Deleted Domains
█
Hostmaster Web Tools
█
Webmaster Web Tools
kazey
Jr. Member
Points: 0
Offline
Posts: 8
Re: Seo4SMF Introduction and bla bla
«
Reply #16 on:
December 05, 2006, 18:47:42 »
i have a problem. After posting a new topic, I get this error.
The requested URL /home/think/public_html/seo4smf-redirect.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
http://www.mysite.com/home/think/public_html/seo4smf-redirect.php?b=2.0
Any ideas how i can fix it?
Logged
solidghost
Hero Member
Points: 3
Offline
Posts: 553
Re: Seo4SMF Introduction and bla bla
«
Reply #17 on:
December 05, 2006, 19:59:21 »
Do the basewrite thingy in your .htaccess
Logged
Singapore Travel Tour Agency Listings
Singapore Business
Premium Web Directories
Authority Sites Directory
TheGodFather
Administrator
Hero Member
Points: 202
Offline
Posts: 2570
Re: Seo4SMF Introduction and bla bla
«
Reply #18 on:
December 06, 2006, 00:50:40 »
Solidghost you have right. Just add Rewritebase in your .htaccess.
Regards
Logged
█
Deleted Domains
█
Hostmaster Web Tools
█
Webmaster Web Tools
kazey
Jr. Member
Points: 0
Offline
Posts: 8
Re: Seo4SMF Introduction and bla bla
«
Reply #19 on:
December 06, 2006, 04:43:28 »
I enabled it, still the same error. This is my .htaccess content.
RewriteEngine on
#Some apache servers need Rewritebase.
#delete # from start of Rewrite base to enable it.
#If your forum is something like http://www.forum-example.com/forum then modify your
#RewriteBase in this way: RewriteBase /forum
RewriteBase
RewriteCond %{QUERY_STRING} ^topic=([0-9]*).([0-9]*)
RewriteRule ^(.*)$ seo4smf-redirect.php?t=%1 [R=301,L]
RewriteCond %{QUERY_STRING} ^board=([0-9]*).([0-9]*)
RewriteRule ^(.*)$ seo4smf-redirect.php?b=%1 [R=301,L]
RewriteCond %{QUERY_STRING} ^action=profile;u=([0-9]*)
RewriteRule ^(.*)$ seo4smf-redirect.php?u=%1 [R=301,L]
RewriteCond %{QUERY_STRING} ^page=([0-9]*)
RewriteRule ^(.*)$ seo4smf-redirect.php?p=%1 [R=301,L]
#Rewrite Old urls
RewriteRule ^index.php/board,(.*).html seo4smf-redirect.php?b=$1 [R=301,L]
RewriteRule ^index.php/board,(.*).html;(.*) seo4smf-redirect.php?b=$1&o=$2 [R=301,L]
RewriteRule ^index.php/topic,(.*).html seo4smf-redirect.php?t=$1 [R=301,L]
RewriteRule ^index.php/topic,(.*).html;(.*) seo4smf-redirect.php?t=$1&o=$2 [R=301,L]
#New board URL's
RewriteRule ^(.*)-b([0-9]*).([0-9]*)/;(.*) index.php?dummy=1&board=$2.$3&$4 [L]
RewriteRule ^(.*)-b([0-9]*).([0-9]*)/ index.php?dummy=1&board=$2.$3 [L]
RewriteRule ^(.*)-b([0-9]*).([0-9]) index.php?dummy=1&board=$2.$3 [L]
#New topic URL's
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;((\?:from|msg|new)[0-9]*);(.*)$ index.php?dummy=1&topic=$2.$4&$5 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;((\?:from|msg|new)[0-9]*) index.php?dummy=1&topic=$2.$4 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html;(.*)$ index.php?dummy=1&topic=$2.$3&$4 [L]
RewriteRule ^(.*)-t([0-9]*).([0-9]*).html index.php?dummy=1&topic=$2.$3 [L]
#New profiles URL's
RewriteRule ^(.*)-u([0-9]*).html;sa,(.*)$ index.php?dummy=1&action=profile;u=$2;sa=$3 [L]
RewriteRule ^(.*)-u([0-9]*).html index.php?dummy=1&action=profile;u=$2 [L]
#New Tinyportal Articles URL's
RewriteRule ^(.*)-p([0-9]*).html index.php?dummy=1&page=$2 [L]
RewriteRule sitemap.xml sitemaps.php [L]
RewriteRule urllist.txt urllist.php [L]
Logged
kazey
Jr. Member
Points: 0
Offline
Posts: 8
Re: Seo4SMF Introduction and bla bla
«
Reply #20 on:
December 06, 2006, 04:50:21 »
works now. thanks
Logged
TheGodFather
Administrator
Hero Member
Points: 202
Offline
Posts: 2570
Re: Seo4SMF Introduction and bla bla
«
Reply #21 on:
December 06, 2006, 07:17:23 »
I'm glad you figure out
Regards
Logged
█
Deleted Domains
█
Hostmaster Web Tools
█
Webmaster Web Tools
klaus2
Jr. Member
Points: 0
Offline
Posts: 19
Re: Seo4SMF Introduction and bla bla
«
Reply #22 on:
December 06, 2006, 13:00:17 »
Hello. There seems to be a problem with SMF 1.1 final. It didn't install correctly. Enabling or disabling it does not work and I can't see your signature on the footer, so...
Also, had to take drastic action and rename htacess because every second page of posts or other pages from user profile were not showing. It was getting to the first page everytime.
I used SMF 1.1 final, Seo4SMF 0.2 RC5 and TP 0.96. All from zero.
Logged
klaus2
Jr. Member
Points: 0
Offline
Posts: 19
Re: Seo4SMF Introduction and bla bla
«
Reply #23 on:
December 06, 2006, 13:10:46 »
Check it out by clicking on "Pages: 1 [2]" <-
Logged
TheGodFather
Administrator
Hero Member
Points: 202
Offline
Posts: 2570
Re: Seo4SMF Introduction and bla bla
«
Reply #24 on:
December 06, 2006, 17:36:43 »
Today I made first test with TP0.96 and Seo4SMf and was working ok. Just tell me more details about your site and about your versions of apache and php.
Regards
Logged
█
Deleted Domains
█
Hostmaster Web Tools
█
Webmaster Web Tools
kazey
Jr. Member
Points: 0
Offline
Posts: 8
Re: Seo4SMF Introduction and bla bla
«
Reply #25 on:
December 06, 2006, 20:39:36 »
I need a little help. My forum is about sports in general and i would like to have all the rewritten links to contain /sports/then whatever format/ , How do I add the /sports/ into the re-written url format considering that the forum is not installed in the /sports/ directory?
And one more thing, I get this error when i try to call sitemaps.php
Table 'cpanelusername_databaseusername.smf_tp_articles' doesn't exist
File: /home/think/public_html/sitemaps.php
Line: 63
«
Last Edit: December 06, 2006, 20:47:36 by kazey
»
Logged
TheGodFather
Administrator
Hero Member
Points: 202
Offline
Posts: 2570
Re: Seo4SMF Introduction and bla bla
«
Reply #26 on:
December 07, 2006, 01:42:47 »
After adding htacceess.txt to your .htaccess file the try to uncomment Rewritebase /forum and chanhe /forum with /sport/
Do you have TP installed ?
Regards
Logged
█
Deleted Domains
█
Hostmaster Web Tools
█
Webmaster Web Tools
kazey
Jr. Member
Points: 0
Offline
Posts: 8
Re: Seo4SMF Introduction and bla bla
«
Reply #27 on:
December 08, 2006, 07:04:02 »
What is TP? I tried your suggestion didn't work.
Not Found
The requested URL /sports/index.php was not found on this server.
Logged
solidghost
Hero Member
Points: 3
Offline
Posts: 553
Re: Seo4SMF Introduction and bla bla
«
Reply #28 on:
December 09, 2006, 07:26:12 »
Tinyportal. A CMS for SMF.
http://www.tinyportal.net/
Logged
Singapore Travel Tour Agency Listings
Singapore Business
Premium Web Directories
Authority Sites Directory
solidghost
Hero Member
Points: 3
Offline
Posts: 553
Re: Seo4SMF Introduction and bla bla
«
Reply #29 on:
December 09, 2006, 07:28:54 »
I think should be
RewriteBase /sports/forumsidrectory
Logged
Singapore Travel Tour Agency Listings
Singapore Business
Premium Web Directories
Authority Sites Directory
Pages:
1
[
2
]
3
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Web Design and Graphics
-----------------------------
=> General
=> Web Design Discussion
===> Adobe Photoshop, Corel PhotoPaint or other Image editing software
===> Dreamweaver, FrontPage or other WYSIWYG software
=> Web Design Reviews
=> Design Contest
-----------------------------
Programming
-----------------------------
=> Databases
=> PHP
=> ASP
=> Javascript
=> Java
=> General Coding
===> Perl
===> .NET
-----------------------------
Search Engine
-----------------------------
=> Google
=> Yahoo
=> MSN
=> Other Search Engines
=> Web Directories
===> SMF Directory
-----------------------------
Domain Names
-----------------------------
=> Domain Name Discussion
=> Domain Appraisals
=> Expired Domains
-----------------------------
Server Related
-----------------------------
=> Forum/CMS Related
=> Apache/IIS
=> Security
=> Linux
===> General Questions
===> Installations
===> Desktop & Multimedia
===> System configurations problems
===> Kernel things
-----------------------------
The Webmasters Talks !
-----------------------------
=> General Discussion
===> Fun
=> Tools
===> Link Popularity
===> Google Datacenter Query
===> Google Backlinks Checker
===> Google Page Rank Checker
===> Html Validation
===> Alexa Rank Checker
===> SEO 4 SMF
=====> Showcase
=====> Joomla
=====> Bugs
=====> Features
=> New Member Introductions
=> Suggestions & Feedback
=> News and Announcements
Loading...