Page 5 of 15 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 LastLast
Results 61 to 75 of 215
Like Tree2Likes

Briansol's Ultimate Guide to vBSEO

This is a discussion on Briansol's Ultimate Guide to vBSEO within the General Discussion forums, part of the vBSEO SEO Plugin category; How can we add dash (-) and underscore (_) to the regex?...

  1. #61
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    How can we add dash (-) and underscore (_) to the regex?
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  2. #62
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    Got it:

    Code:
    ^[a-zA-Z0-9\s\-\_]+$
    Letters, numbers, space, -, and _ That was easier than I thought.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  3. #63
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    Can I also suggest editing the vbphrase usernametaken to make life easier for people trying to register.

    It currently says:
    HTML Code:
    That username is already in use or does not meet the administrator's standards. If you are {1} and you have forgotten your password, click <a href="login.php?{2}do=lostpw">here</a>.
    I changed mine to:
    HTML Code:
    That username is already in use or does not meet the administrator's standards. Only letters, numbers, spaces, - (dash), and _ (underscore) characters are allowed. If you are {1} and you have forgotten your password, click <a href="login.php?{2}do=lostpw">here</a>.
    To change go to -> AdminCP -> Languages & Phrases -> Search in Phrases

    In the Search for Text enter: usernametaken

    Change Search in... to Phrase Variable Name Only and click the find button.

    Click on usernametaken and change the text in the provided box.

    Hope that helps.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  4. #64
    Senior Member
    Real Name
    Chris
    Join Date
    Aug 2005
    Location
    North Carolina
    Posts
    358
    Liked
    9 times
    Started a new forum officially as of yesterday. Already seeing Googlebot finding me.
    I've already started seeing adsense hits come in

    I think I owe Brian a beer or two

  5. #65
    Member ArnyVee's Avatar
    Real Name
    Arnold
    Join Date
    Sep 2008
    Location
    South Florida
    Posts
    49
    Liked
    0 times
    Great stuff Brian!

    For someone brand new to vBSEO (and only 4 months into running a forum/website ), I appreciate this type of 'guide'.

    Now, if I can just find a 'SEO for Dummies' guide somewhere so that I can lookup stuff like 'what does being indexed mean' or 'longtail searches'...I'll be set.

  6. #66
    Senior Member
    Real Name
    Alex
    Join Date
    Mar 2007
    Location
    Italy
    Posts
    508
    Liked
    0 times
    Quote Originally Posted by jw00dy View Post
    Got it:

    Code:
    ^[a-zA-Z0-9\s\-\_]+$
    Letters, numbers, space, -, and _ That was easier than I thought.
    Just wondering if there is a method only to prevent that the members use the ascii code in registration phase? so only letters, numbers and standard symbols are allowed.

  7. #67
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    You mean you don't want them to use the ASCII equivalent?
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  8. #68
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    blocking % and # and & will pretty much block ascii from working at all.

  9. #69
    Senior Member
    Real Name
    Alex
    Join Date
    Mar 2007
    Location
    Italy
    Posts
    508
    Liked
    0 times
    Quote Originally Posted by jw00dy View Post
    You mean you don't want them to use the ASCII equivalent?
    yes i want to try to block it

    Quote Originally Posted by briansol View Post
    blocking % and # and & will pretty much block ascii from working at all.
    Code:
    ^[a-zA-Z0-9\s\-\_\%\#\&]+$
    it's correct? ^^

  10. #70
    Senior Member
    Real Name
    Stavros
    Join Date
    Sep 2007
    Posts
    141
    Liked
    0 times
    I've just read this thread and I find it very useful. Thanks Brian

    @briansol
    I'd just like to ask, If you were starting a new forum today, you'll be using non hieratic directory type URLs?
    Are they less effective from "Non-hieratic directory type with content relevant threads", regarding SERP or the keywords in the URL does not make any difference?

    I'm just asking because I use non hieratic directory type URLs for one year now and I made this thread a couple of days ago, asking for help to change the URLs.

    I guess I find your thread just on time

  11. #71
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    Quote Originally Posted by meonet View Post
    yes i want to try to block it



    Code:
    ^[a-zA-Z0-9\s\-\_\%\#\&]+$
    it's correct? ^^
    no.

    the chars in the regex is what is ALLOWED, not blocked.

    how it was before blocks the special chars.

    what you did just allowed them.

    Quote Originally Posted by Zagis View Post
    I've just read this thread and I find it very useful. Thanks Brian

    @briansol
    I'd just like to ask, If you were starting a new forum today, you'll be using non hieratic directory type URLs?
    Are they less effective from "Non-hieratic directory type with content relevant threads", regarding SERP or the keywords in the URL does not make any difference?
    using id's only vs content relevant is your choice.
    I like using ID's because no matter what you change the thread or forum title to, the link won't change.

    If you don't anticipate renaming forums or topics, then you can use the content-relvant if you wish.

    I've personally seen 0 seo gain by having it in the title over the Id alone.

  12. #72
    Junior Member
    Real Name
    Steven
    Join Date
    Aug 2008
    Posts
    1
    Liked
    0 times
    it's been 2 months and I have 35,000+ pages indexed, is it smart to do all of this? or any of this?

  13. #73
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    If you're indexed well, and are happy with the results, I would NOT change.

  14. #74
    nfn
    nfn is offline
    Senior Member
    Real Name
    Nuno
    Join Date
    Feb 2008
    Location
    Portugal
    Posts
    276
    Liked
    1 times
    Quote Originally Posted by jw00dy View Post
    Got it:

    Code:
    ^[a-zA-Z0-9\s\-\_]+$
    Letters, numbers, space, -, and _ That was easier than I thought.
    I think that this has a problem, since you allow these usernames: "my name" and "my-name" that will have the same /members/my-name/ home page.

  15. #75
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    ^correct. It's not perfect.

    That's why i don't allow _ or - either.

Page 5 of 15 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 LastLast

LinkBacks (?)


Similar Threads

  1. Is there a Newbies Guide to VBSEO
    By DieselMinded in forum General Discussion
    Replies: 5
    Last Post: 02-23-2008, 01:50 AM
  2. My Guide on the features of VBSEO
    By BamaStangGuy in forum Member Articles
    Replies: 18
    Last Post: 11-28-2006, 04:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •