vbeta == vbet something happend on translation
vBET 4.x is stable. Last release was BETA, but no serious bugs was reported. Actually we have only 1 open bug report for vBET 4.x and it is minor issue.
At this moment we do NOT have rules for Nginx, but we can prepare those and you can test it with free version. Can you please give us your actual Nginx rules?
nginx vbseo rules
Code:location /forums/ { rewrite ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last; if (!-e $request_filename) { rewrite ^/forums/(.*)$ /forums/vbseo.php last; } } if ($request_filename ~ "\.php$" ) { rewrite ^/forums/(.*)$ /forums/vbseo.php last; }
So for vBET you should use rules below. Please note that those where not tested, but should work (it is just translation from .htaccess rules). You can test it first on free version before you buy paid one. It would be good if you make copy off your actual rules before making changes.
Please confirm that rules are working for you.
Of course you have to change forums to your forum directory or remove all /forums if your forum doesn't use subdirectory in URL.
Code:location /forums/ { rewrite ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last; rewrite ^/forums/(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ /forums/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forums/ last; rewrite ^/forums/(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ /forums/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forums/$2 last; if (!-e $request_filename) { rewrite ^/forums/(.*)$ /forums/vbenterprisetranslator_seo.php last; } } if ($request_filename ~ "\.php$" ) { rewrite ^/forums/(.*)$ /forums/vbenterprisetranslator_seo.php last; }
great worked fine on nginx....
I'm using payed version with brand free is there any way to remove
"Automatic translations supported by vBET 4.2.2" from footer since i payed for brand free ?
Those rewrites are a little obsolete.
Code:location /forums/ { rewrite ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last; rewrite ^/forums/(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ /forums/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forums/ last; rewrite ^/forums/(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ /forums/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forums/$2 last; try_files $uri $uri/ /forums/vbenterprisetranslator_seo.php; }