Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
  #61  
Old 11-05-2013, 04:47 PM
imported_silkroad imported_silkroad is offline
 
Join Date: Dec 2003
Posts: 563
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First of all, the "three simple rewrite rule examples" in the vBSEO post (discussed earlier) do not rewrite (undo) all the VBSEO URLs in various search engine indexes.

Whoever above said "you only need these simple rules and nothing else" .. that poster is wrong.

For example, if you were using vBSEO to rewrite your forums titles, and your forum was (before vBSEO):

Code:
/showforum?f=111
and after vBSEO it was:

Code:
/this-is-my-forum-above/
... and you have many forums, there is no way to have a single mod_rewrite rule to for the forums.

Each forum will need a rewrite rule similar to this:

Code:
RewriteRule  ^this-is-my-forum-above/$  /showforum?f=111 [R=301,L]
So, if you had 100 forums using this scheme, you will need 100 rewrite rules under this same scheme.

Please, do not be "fooled" by those who think a few simple mod_rewrite rules will work for all vBSEO configurations in all forums!

.. if you were running vBSEO and just used a few simple rules, simply go look at your access log file for all the 404 errors (simple example below), and you will quickly understand what I am talking about.

Code:
tail -f access.log | grep " 404 "

If you were using a vBSEO schema with the forum number in the URL, then you can do it with one rule, for example:


Code:
/this-is-my-forum-above-f111/
You can get by with a rule such as:

Code:
RewriteRule  ^this-is-my-forum-above-f([0-9]+)/$  /showforum?f=$1 [R=301,L]

vBSEO had many different configurations, and many people did not use the forum id in the vBSEO URL.

If there is a lesson to be learned here (and there are many), is to make sure you use the forum ID (or thread ID, etc) in our "friendly URLs" because if you don't have unique ids in your "friendly URLs' then you will have trouble to undo them if something like this happens again (you need to revert back).

Cheers.
Reply With Quote
  #62  
Old 11-07-2013, 01:26 PM
RichieBoy67's Avatar
RichieBoy67 RichieBoy67 is offline
 
Join Date: Apr 2004
Location: CT - Down in a hole..
Posts: 3,057
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by imported_silkroad View Post
First of all, the "three simple rewrite rule examples" in the vBSEO post (discussed earlier) do not rewrite (undo) all the VBSEO URLs in various search engine indexes.

Whoever above said "you only need these simple rules and nothing else" .. that poster is wrong.

For example, if you were using vBSEO to rewrite your forums titles, and your forum was (before vBSEO):

Code:
/showforum?f=111
and after vBSEO it was:

Code:
/this-is-my-forum-above/
... and you have many forums, there is no way to have a single mod_rewrite rule to for the forums.

Each forum will need a rewrite rule similar to this:

Code:
RewriteRule  ^this-is-my-forum-above/$  /showforum?f=111 [R=301,L]
So, if you had 100 forums using this scheme, you will need 100 rewrite rules under this same scheme.

Please, do not be "fooled" by those who think a few simple mod_rewrite rules will work for all vBSEO configurations in all forums!

.. if you were running vBSEO and just used a few simple rules, simply go look at your access log file for all the 404 errors (simple example below), and you will quickly understand what I am talking about.

Code:
tail -f access.log | grep " 404 "
If you were using a vBSEO schema with the forum number in the URL, then you can do it with one rule, for example:


Code:
/this-is-my-forum-above-f111/
You can get by with a rule such as:

Code:
RewriteRule  ^this-is-my-forum-above-f([0-9]+)/$  /showforum?f=$1 [R=301,L]
vBSEO had many different configurations, and many people did not use the forum id in the vBSEO URL.

If there is a lesson to be learned here (and there are many), is to make sure you use the forum ID (or thread ID, etc) in our "friendly URLs" because if you don't have unique ids in your "friendly URLs' then you will have trouble to undo them if something like this happens again (you need to revert back).

Cheers.
I was using forum id numbers just like Vbseo used to have.

Now my issue is the characters that appear after the url's such as my forum--

forum.php#axzz2jy7qTEM3

I am using Vb mod rewrite--standard canonical - using ignore for unicode now but have tried various settings..

Here is my htaccess.. Is there any way to fix this or does it even matter? I have been using Vbseo for years up until recently. I do remember dealing with this issue years ago but cannot remember details.

PHP Code:
RewriteEngine on

RewriteRule f
[\d]+/.+-([\d]+)/index([\d]+).html showthread.php?t=$1&page=$[L,R=301]
RewriteRule f[\d]+/.+-([\d]+)/ showthread.php?t=$[L,R=301]
RewriteRule f([\d]+)/index([\d]+).html forumdisplay.php?f=$1&page=$[L,R=301]
RewriteRule f([\d]+)/ forumdisplay.php?f=$[L,R=301]

# If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.mydomain\.com$
RewriteRule ^(.*)$ http://mydomain.com/$1 [L,R=301]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$[L]

# If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
# Options -MultiViews

RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule 
^.*$ - [NC,L]

# Forum
RewriteRule ^threads/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^members/.* member.php [QSA]
RewriteRule ^blogs/.* blog.php [QSA]
RewriteRule ^entries/.* entry.php [QSA]

RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -[OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule 
^.*$ - [NC,L]

# MVC
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$[QSA]

# Check MVC result
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule 
^(.*)$ - [NC,L]
RewriteRule ^(.*)$ - [R=404,L]

## Expires
<ifModule mod_expires.c>
        
ExpiresActive On
        ExpiresDefault 
"access plus 1 seconds"
        
ExpiresByType text/html "access plus 1 seconds"
        
ExpiresByType image/gif "access plus 3456000 seconds"
        
ExpiresByType image/jpeg "access plus 3456000 seconds"
        
ExpiresByType image/png "access plus 3456000 seconds"
        
ExpiresByType text/css "access plus 3456000 seconds"
        
ExpiresByType text/javascript "access plus 3456000 seconds"
        
ExpiresByType application/javascript "access plus 3456000 seconds"
        
ExpiresByType application/x-javascript "access plus 3456000 seconds"
</ifModule>

## Compression
<ifmodule mod_headers.c>
        <
ifmodule mod_deflate.c>
                
AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
                BrowserMatch 
^Mozilla/4 gzip-only-text/html
                BrowserMatch 
^Mozilla/4\.0[678no-gzip
                BrowserMatch 
\bMSIE !no-gzip !gzip-only-text/html
        
</ifmodule>
</
ifmodule>

## Rewrites
<ifmodule mod_rewrite.c>
        
RewriteEngine on
        Options 
+FollowSymlinks

        RewriteCond 
%{REQUEST_FILENAME} -[OR]
        
RewriteCond %{REQUEST_FILENAME} -[OR]
        
RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule 
^.*$ - [NC,L]

        
# Media Library
        
ReWriteRule ^media/m(\d+).*/tagsmedia.php?do=tags_edit&mid=$[QSA]
        
ReWriteRule ^media/m(\d+).*/editmedia.php?do=details_edit&mid=$[QSA]
        
ReWriteRule ^media/m(\d+).*/reportmedia.php?do=report&mid=$[QSA]
        
ReWriteRule ^media/m(\d+).*/c(\d+)$ media.php?do=comment_edit&cmt=$[QSA]
        
ReWriteRule ^media/m(\d+).*/p(\d+).*$ media.php?do=details&mid=$1&pid=$[QSA]
        
ReWriteRule ^media/m(\d+).* media.php?do=details&mid=$[QSA]
        
ReWriteRule ^media/p(\d+).*/editmedia.php?do=playlist_edit&pid=$[QSA]
        
ReWriteRule ^media/p(\d+).* media.php?do=playlist&pid=$[QSA]
        
ReWriteRule ^media/c(\d+).* media.php?do=category&cid=$[QSA]
        
ReWriteRule ^media/u(\d+).* media.php?do=user&uid=$[QSA]
        
ReWriteRule ^media/tag/(.*) media.php?do=tag&tid=$[QSA]
        
ReWriteRule ^media/results/(.*) media.php?do=results&query=$[QSA]
        
ReWriteRule ^media/advresults/(.*) media.php?do=advresults&query=$[QSA]
        
ReWriteRule ^media/letter/(.*) media.php?do=letter&query=$[QSA]
        
ReWriteRule ^media/browse.* media.php?do=browse [QSA]
        
ReWriteRule ^media/search.* media.php?do=search [QSA]
        
ReWriteRule ^media/random.* media.php?do=random [QSA]
        
ReWriteRule ^media/submit.* media.php?do=submit [QSA]
        
ReWriteRule ^media/tagcloud.* media.php?do=tagcloud [QSA]
        
ReWriteRule ^media/playlists.* media.php?do=playlists [QSA]
        
ReWriteRule ^media/pcreate.* media.php?do=playlists_create [QSA]
        
ReWriteRule ^media/pmine.* media.php?do=playlists_mine [QSA]
        
ReWriteRule ^media/favorites.* media.php?do=favorites [QSA]
        
ReWriteRule ^media/subscriptions.* media.php?do=subscriptions [QSA]
        
ReWriteRule ^media/admin/edit/s(\d+).* media.php?do=admin_host_edit&sid=$[QSA]
        
ReWriteRule ^media/admin/delete/s(\d+).* media.php?do=admin_host_delete&sid=$[QSA]
        
ReWriteRule ^media/admin/export/s(\d+).* media.php?do=admin_host_export&sid=$[QSA]
        
ReWriteRule ^media/admin/(\w+).* media.php?do=admin_$[QSA]

        
# Media Library from Video Directory
        
RewriteCond %{QUERY_STRING} do=viewdetails&videoid=(\d+)
        
RewriteRule ^video\.phpmedia.php?do=details&mid=%1
        RewriteCond 
%{QUERY_STRINGviewcategory&categoryid=(\d+)
        
RewriteRule ^video\.phpmedia.php?do=category&cid=%1
        RewriteCond 
%{QUERY_STRINGviewuser&userid=(\d+)
        
RewriteRule ^video\.phpmedia.php?do=user&uid=%1
        RewriteCond 
%{QUERY_STRINGviewtag&tag=(.*)
        
RewriteRule ^video\.phpmedia.php?do=tag&tid=%1
        ReWriteRule 
^video\.phpmedia.php

        
# Forum
        
RewriteRule ^threads/.* showthread.php [QSA]
        
RewriteRule ^forums/.* forumdisplay.php [QSA]
        
RewriteRule ^members/.* member.php [QSA]
        
RewriteRule ^blogs/.* blog.php [QSA]
        
ReWriteRule ^entries/.* entry.php [QSA]

        
RewriteCond %{REQUEST_FILENAME} -[OR]
        
RewriteCond %{REQUEST_FILENAME} -[OR]
        
RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule 
^.*$ - [NC,L]

        
# MVC
        
RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$[QSA]
</
ifmodule>

<
IfModule mod_headers.c>
    <
FilesMatch "\.(bmp|css|flv|gif|ico|jpg|jpeg|js|pdf|png|svg|swf|tif|tiff)$">
        
Header set Last-Modified "Mon, 15 Feb 2013 00:00:00 GMT"
    
</FilesMatch>
</
IfModule
Reply With Quote
  #63  
Old 11-17-2013, 01:40 PM
adonato adonato is offline
 
Join Date: Feb 2012
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello to all now I would like to do, because I had problems with the forum and I have to delete it all however I pay for a license that I don't have the vbseo software right now, please can you help me to know where can I download the software vbseo? or tell me how can I get my money back?
Thank you very much to all.
Reply With Quote
  #64  
Old 11-17-2013, 01:41 PM
ozzy47's Avatar
ozzy47 ozzy47 is offline
 
Join Date: Jul 2009
Location: USA
Posts: 10,929
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is no place to download it since the site closed up. How long ago did you purchase it?
Reply With Quote
  #65  
Old 11-18-2013, 11:33 PM
adonato adonato is offline
 
Join Date: Feb 2012
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello, I did buy it 11/21/2012

What should to do? I want my money back because they must have the software active to download up to they sad to us , I mean now I payed something that I won't have any more I can't bealive because I thought that the software will be available as the page did show us, however don't know why but now my page was hacked and when I upload all again, just a few days a go... I don't have the VBSEO. Now what to do? please did some one ask for money back?

In my country we use Argentine PESO so... Ten Pesos is one dollar... so I saved a lot of money for buy that license.

What to do please help me.
Reply With Quote
  #66  
Old 11-19-2013, 01:04 AM
Simon Lloyd's Avatar
Simon Lloyd Simon Lloyd is offline
 
Join Date: Aug 2008
Location: Manchester
Posts: 3,481
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Unfortunately this isnt the place to air your views, you'll need to find out how to contact the owners of VBSEO like Crawlability President, Juan Muriente or ask advice from their estranged partner http://admin-talk.com/members/ilia-vbseo.8156/ but in all honesty i don't think you're going to have much luck!

Edit: you could try:
Joseph Ward
CRAWLABILITY INC.
1-866-558-3653
Email him here http://www.prweb.com/EmailContact.aspx?prid=325570
Reply With Quote
  #67  
Old 11-19-2013, 01:08 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by adonato View Post
Hello, I did buy it 11/21/2012

What should to do? I want my money back because they must have the software active to download up to they sad to us , I mean now I payed something that I won't have any more I can't bealive because I thought that the software will be available as the page did show us, however don't know why but now my page was hacked and when I upload all again, just a few days a go... I don't have the VBSEO. Now what to do? please did some one ask for money back?

In my country we use Argentine PESO so... Ten Pesos is one dollar... so I saved a lot of money for buy that license.

What to do please help me.
If you used a credit card, or paypal, issue a charge back for non delivery.
Reply With Quote
  #68  
Old 02-27-2014, 07:47 PM
mdawg's Avatar
mdawg mdawg is offline
 
Join Date: Mar 2009
Location: United States
Posts: 363
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mdawg View Post
Only partly correct - while the website is up for sales of vbseo (yes, they want your money), the support section of the site is dead. This is because vbseo is already dead; it just forgot to lie down.
http://admin-talk.com/threads/dear-v...rations.43684/

There will be no further versions of vbseo (none for vbulletin 5, for example); there will be no further support from vbseo.
As I said - vbseo is dead. It was dead when I posted last year, and it continues to be dead.
Reply With Quote
Благодарность от:
RichieBoy67
  #69  
Old 02-28-2014, 01:49 AM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery View Post
If you used a credit card, or paypal, issue a charge back for non delivery.
I'm pretty sure paypal has a 6 month window on that, the op's purchase was well over a year ago.
Reply With Quote
  #70  
Old 02-28-2014, 02:14 AM
RichieBoy67's Avatar
RichieBoy67 RichieBoy67 is offline
 
Join Date: Apr 2004
Location: CT - Down in a hole..
Posts: 3,057
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am not sure PayPal would be too helpful with this type of a purchase anyways.

I really think Vbseo could have handled this closing in a much more professional and honest manner. I am disappointed to say the least.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:16 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05259 seconds
  • Memory Usage 2,398KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (12)bbcode_code
  • (1)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete