vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - YABBSEO[vB] Lite - Another Better SEO Module for vB 3.8.x (https://vborg.vbsupport.ru/showthread.php?t=203849)

Jaxel 02-08-2009 01:11 AM

Quote:

Originally Posted by yabsoft (Post 1736465)
Try to edit .htaccess:
Code:

RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/
change to
Code:

RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|wiki)/
That will make YABBSEO work with your wiki.

I actually tried that... but it didn't fix anything, so I had to uninstall this mod.

Code:

Options +FollowSymLinks
RewriteEngine On

#### vBulletin
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|w|wiki)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ yabbseo.php?bbseourl=$1&%{QUERY_STRING} [L]

#### MediaWiki
RewriteRule ^wiki/index.php/(.*)$ /wiki/$1 [R,L]
RewriteRule ^wiki/(.*)$ /w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /w/index.php [L,QSA]

#### Charset
AddDefaultCharset Off

#### Gzip
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)(js|css)$ redirect.php?file=$1$2&type=$2 [L]
</IfModule>

#### ETags
FileETag None

#### Expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/png A2592000
ExpiresByType application/x-shockwave-flash A2592000
ExpiresByType text/css A2592000
ExpiresByType application/x-javascript A2592000
</IfModule>

The problem is that I am using this bridge: and while your mod works fine searching for the "forum/yabbseo" folder, it cant find "forum/wiki/yabbseo" folder... since it doesnt exist. The URL to the yabbseo folder should be absolute, not relative.

https://vborg.vbsupport.ru/showthread.php?t=191186

allinvain 02-09-2009 05:12 AM

Quote:

Originally Posted by giorgioarmani (Post 1737295)
Thanks allinvain...

How easy is it to install?

It's quite easy to install as long as you're comfortable with editing your .htaccess . The rest is just simple uploading and importing product from your vbulletin control panel.

allinvain 02-09-2009 05:28 AM

Quote:

Originally Posted by yabsoft (Post 1737319)
Add the following code into your yabbseo/data/config.php:
PHP Code:

'image:' => 
    array (
      
=> 'background\\-',
      
=> 'url',
      
=> '\\(',
      
=> '\\>',
      
=> '1',
    ), 

after
PHP Code:

'import' => 
    array (
      
=> '\\@',
      
=> 'url',
      
=> '\\(',
      
=> '\\"',
      
=> '1',
    ), 


Excellent! That did the trick! :) Thanks. Now the only other issue that I believe needs to be fixed is some sort of workaround for the odd character names..if possible.

Check out this link:

http://www.forexnirvana.com/memberlists/*.html?pp=30

Click on the "^eagle^".....for an example.

UPDATE: Ok, found another problem, now the new posts links won't work...it badly mangles the link..ie

"http://www.forexnirvana.com/f-/--p1262.html#post1262"

oddly enough it doesn't do it for all posts.

AGAIN UPDATE: on my ok it works again now..I'm confused, that the heck is going on..lol

yabsoft 02-09-2009 11:28 AM

Quote:

Originally Posted by Jaxel (Post 1737442)
I actually tried that... but it didn't fix anything, so I had to uninstall this mod.

Code:

Options +FollowSymLinks
RewriteEngine On

#### vBulletin
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|w|wiki)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ yabbseo.php?bbseourl=$1&%{QUERY_STRING} [L]

#### MediaWiki
RewriteRule ^wiki/index.php/(.*)$ /wiki/$1 [R,L]
RewriteRule ^wiki/(.*)$ /w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /w/index.php [L,QSA]

#### Charset
AddDefaultCharset Off

#### Gzip
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)(js|css)$ redirect.php?file=$1$2&type=$2 [L]
</IfModule>

#### ETags
FileETag None

#### Expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/png A2592000
ExpiresByType application/x-shockwave-flash A2592000
ExpiresByType text/css A2592000
ExpiresByType application/x-javascript A2592000
</IfModule>

The problem is that I am using this bridge: and while your mod works fine searching for the "forum/yabbseo" folder, it cant find "forum/wiki/yabbseo" folder... since it doesnt exist. The URL to the yabbseo folder should be absolute, not relative.

https://vborg.vbsupport.ru/showthread.php?t=191186

Try to arrange your code :
Code:

#### vBulletin
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|w|wiki)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ yabbseo.php?bbseourl=$1&%{QUERY_STRING} [L]

#### MediaWiki
RewriteRule ^wiki/index.php/(.*)$ /wiki/$1 [R,L]
RewriteRule ^wiki/(.*)$ /w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /w/index.php [L,QSA]

like this
Code:

#### MediaWiki
RewriteRule ^wiki/index.php/(.*)$ /wiki/$1 [R,L]
RewriteRule ^wiki/(.*)$ /w/index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /w/index.php [L,QSA]

#### vBulletin
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images|w|wiki)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ yabbseo.php?bbseourl=$1&%{QUERY_STRING} [L]


yabsoft 02-09-2009 11:51 AM

Quote:

Originally Posted by allinvain (Post 1738428)
Excellent! That did the trick! :) Thanks. Now the only other issue that I believe needs to be fixed is some sort of workaround for the odd character names..if possible.

Check out this link:

http://www.forexnirvana.com/memberlists/*.html?pp=30

Click on the "^eagle^".....for an example.

UPDATE: Ok, found another problem, now the new posts links won't work...it badly mangles the link..ie

"http://www.forexnirvana.com/f-/--p1262.html#post1262"

oddly enough it doesn't do it for all posts.

AGAIN UPDATE: on my ok it works again now..I'm confused, that the heck is going on..lol

Do you have the hook "Search members" enabled under YABBSEO module at vB AdminCP? I have tested the same username at my test forum, and it is working fine.

About the new post url, I before came across such behaver also, but it disappear soon and I could not track the issue. But I am trying to modify the code to stop this happen again. This may cost an extra sql query to make the url redirect correct.

By the way, anyone installed my module experiences any higher server loading?

trickfly 02-09-2009 01:45 PM

Does this work along side vbSEO ? or will it interfere with it ?

Ekremxx 02-09-2009 02:03 PM

Quote:

Originally Posted by Adam21 (Post 1732870)
Edit: Its there a way to remove the forum id from the rewrite url?
i.e:
Code:

http://www.myforum.com/forum/forumid-forum description/thread title.html


i cant remove that...
'forumtitleonly' => '1', i try but cant run i romove

f{forum_id cant run cant find adress:S

Invalid Forum specified. If you followed a valid link, please notify the administrator

elmati 02-09-2009 03:27 PM

Quote:

Originally Posted by yabsoft (Post 1738616)
Do you have the hook "Search members" enabled under YABBSEO module at vB AdminCP? I have tested the same username at my test forum, and it is working fine.

About the new post url, I before came across such behaver also, but it disappear soon and I could not track the issue. But I am trying to modify the code to stop this happen again. This may cost an extra sql query to make the url redirect correct.

By the way, anyone installed my module experiences any higher server loading?


Where is the hook "Search members" enabled under YABBSEO module at vB AdminCP? i cant find that...

in vbulletin options i cant find any yabbseo options...

yabsoft 02-09-2009 04:29 PM

Quote:

Originally Posted by elmati (Post 1738778)
Where is the hook "Search members" enabled under YABBSEO module at vB AdminCP? i cant find that...

in vbulletin options i cant find any yabbseo options...

Oh la la, the hook was missing in my attachment. Now you can add it manually:

Plugins & Products>Add New Plugin
Product: YABBSEO[vB]
Hook Location: member_start
Title: Search members
Plugin PHP Code:
PHP Code:

include 'yabbseo/forumhook/match_member.php'

Or we will update the our module soon and so you can upgrade it directly.

yabsoft 02-09-2009 04:31 PM

Quote:

Originally Posted by trickfly (Post 1738675)
Does this work along side vbSEO ? or will it interfere with it ?

I don't think it will work with VBSEO. Two products both aim to reswrite forum urls to the static one. So we don't have any reason to install them at the same time.

yabsoft 02-09-2009 04:36 PM

Quote:

Originally Posted by Ekremxx (Post 1738689)
i cant remove that...
'forumtitleonly' => '1', i try but cant run i romove

f{forum_id cant run cant find adress:S

Invalid Forum specified. If you followed a valid link, please notify the administrator

From my side, I tested it on my PC and it is working fine. But it is better to keep the froum id added. You need many testings for customising forum urls. I understand how to do well, but it is not easy for me to explain it.

elmati 02-09-2009 04:47 PM

hey Yabsoft, thanx i addes the search members plugin and now works great, but dont rewrite the today birthday users...

any clue about this?

Ekremxx 02-09-2009 07:41 PM

i dont have any idea i try alot that:(( any body give

Yes, it is supported:
edit yabbseo/data/config.php,
change

PHP Code:
'forumtitleonly' => '0',

to

PHP Code:
'forumtitleonly' => '1',

And then you remove the f{forum_id}_ from

PHP Code:
'template' =>
array (
'showthreadpage' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-page{thread_page}.html',
'showthread' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}.html',
'showthreadnew' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-newpost.html',
'showthreadpost' => 'f{forum_id}-{forum_title}/{thread_title}-{thread_id}-p{post_id}.html#post{post_id}',
'forumdisplaypage' => 'f{forum_id}-{forum_title}/index{forum_page}.html',
'forumindex' => 'forumindex.html',
'forumdisplay' => 'f{forum_id}-{forum_title}',
'member' => 'members/{username}.html',
'memberlistpage' => 'memberlists/{member_page}.html',
'memberlistltr' => 'memberlists/{letter}.html',
'memberlistltrpage' => 'memberlists/{letter}-{member_page}.html',
'memberlist' => 'memberlists',
),

drumbum 02-10-2009 12:23 PM

Working good except having an issue when trying to view new posts from the forum home.

The link looks like this
Code:

http://www.xxxxxx.com/tips/f11-miscellaneous-tips/facebook-tips-137-newpost.html
but when you click on it to read the new posts from forum home you get directed to this:
Code:

http://www.xxxxxx.com/tips/f-/--p1409.html#post1409

SuSpect 02-11-2009 10:31 AM

Can you put here http://yabsoft.com/forum/yabbseo/data/config.php ?

yabsoft 02-15-2009 09:49 AM

Quote:

Originally Posted by drumbum (Post 1739722)
Working good except having an issue when trying to view new posts from the forum home.

The link looks like this
Code:

http://www.xxxxxx.com/tips/f11-miscellaneous-tips/facebook-tips-137-newpost.html
but when you click on it to read the new posts from forum home you get directed to this:
Code:

http://www.xxxxxx.com/tips/f-/--p1409.html#post1409

This issue should be corrected in new version v1.0.1 and the birthday members can now be parsed correctly.

gsmlover4u 02-15-2009 02:03 PM

thanks for update now every thing working fine :D

Jaxel 02-15-2009 03:30 PM

Quote:

Originally Posted by Jaxel (Post 1735753)
Okay... I installed this mod and I am getting a few small errors with USERNAMES...

-Manta- turns into http://www.8wayrun.com/members/_manta_/
D.I.N.O turns into http://www.8wayrun.com/members/d_i_n_o/
ai-uchi turns into http://www.8wayrun.com/members/ai_uchi/

These are legal URL characters... so this should be easy enough to fix.

I have a VERY restrictive and arcane registration RegEx in place to avoid this type of issue; but it appears that three characters are still giving issues: . - @

Code:

^[A-Za-z0-9]((\w)|[\-\.\@])+[A-Za-z0-9]$
Also...
'showthreadnew' => 'f{forum_id}/{thread_title}-t{thread_id}/newposts/',

Doesnt seem to work for me.

did today's update fix this problems?

yabsoft 02-16-2009 11:16 AM

Quote:

Originally Posted by Jaxel (Post 1744958)
did today's update fix this problems?

It is working fine with the SEOURL Rule provided by us. For your customised one, I don't give a test.

SuSpect 02-16-2009 12:36 PM

Quote:

Originally Posted by SuSpect (Post 1740683)

im waiting this and can i rewrite tag urls?

ex: tags.php?tag=sample
to: tags/sample/

yabsoft 02-16-2009 12:42 PM

Sorry, I could not provide my Rule for you. Now tags is not supported to be rewrote.

bigtime 02-16-2009 05:53 PM

The code added to my .htaccess makes my vbseo sitemap files give a 404 error. When I remove the .htaccess code, my sitemap files are found. Any changes I can make to make both addons work?

Thanks.

FIXED

I moved

Code:

RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
so that it was right below

Code:

RewriteEngine On

yabsoft 02-16-2009 08:09 PM

Quote:

Originally Posted by bigtime (Post 1746121)
The code added to my .htaccess makes my vbseo sitemap files give a 404 error. When I remove the .htaccess code, my sitemap files are found. Any changes I can make to make both addons work?

Thanks.

FIXED

I moved

Code:

RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
so that it was right below

Code:

RewriteEngine On

Hmm, but vBSEO Sitemap could not generate static url for your forum, I think.

Jaxel 02-17-2009 11:39 AM

Quote:

Originally Posted by yabsoft (Post 1745806)
It is working fine with the SEOURL Rule provided by us. For your customised one, I don't give a test.

What about the username issues?

yabsoft 02-19-2009 09:25 PM

Quote:

Originally Posted by Jaxel (Post 1746786)
What about the username issues?

It is fixed in the latest version v1.0.1.

Jaxel 02-20-2009 03:48 AM

I tried installing this mod again...

It just cant be done. It interferes with the Wiki.

Sayid 02-22-2009 03:43 PM

Does it support arabic language ?

shervin_dvb 02-25-2009 10:39 AM

I Have A Persian Forum
I Use This ... Not Good work On The My Site
show ie. this my link

http://www.====.net/f20-ooosu-osop-u...8.html#post328

Plz Help Me For change this problem
Very Thanks

shervin_dvb 02-26-2009 06:04 PM

Can I Help Me ?

I Click The Install!
You Not Support Me!!!!!!!!!!!!!!!!!!

allinvain 02-27-2009 12:47 AM

Quote:

Originally Posted by shervin_dvb (Post 1755421)
Can I Help Me ?

I Click The Install!
You Not Support Me!!!!!!!!!!!!!!!!!!

Shervin, relax! You're not going to get any help by throwing a hissy fit.

yabsoft 02-28-2009 02:01 PM

Quote:

Originally Posted by shervin_dvb (Post 1754135)
I Have A Persian Forum
I Use This ... Not Good work On The My Site
show ie. this my link

http://www.====.net/f20-ooosu-osop-u...8.html#post328

Plz Help Me For change this problem
Very Thanks

You mean the forum url is too long? your lang characters are not converted fine?

Shinji Ikari 02-28-2009 03:22 PM

i have one big problem well all work fine but i have only one problem and is with the users for example:

the user is Shinji Ikari

www.myforum.com/foro/profile/shinji_ikari.html

but the problem is no link my account...... if i put on the browser bar

www.myforum.com/foro/profile/Shinji Ikari.html

work but the links on the forums no work....... and if the users use CAPS no work too.....


ooo its true >< only my User use link the other users on who is online only say :
www.myforum.com/foro/profile/.html

sorry my english is bad ;_;

its true my forum work on spanish default but english too.

durbah 02-28-2009 04:54 PM

I have a problem when the subject of several pages of G Afh other pages of the topic and the selection of any page at the back of the main theme? What is the solution to this?
Forum version 3.8.1 and licensed
Thank you

shervin_dvb 02-28-2009 05:43 PM

Quote:

Originally Posted by yabsoft (Post 1756914)
You mean the forum url is too long? your lang characters are not converted fine?

Thanks For Answer To Me .

No long Url And lang characters .

http://www.dvb5.net/
Problem For conver Persian characters To link *.html

If possible Romove (forum_title & thread_title) From config.php For DISPEL this problem

shervin_dvb 03-06-2009 11:26 AM

Is No Work My forum

yabsoft 03-06-2009 10:11 PM

Quote:

Originally Posted by Shinji Ikari (Post 1756952)
i have one big problem well all work fine but i have only one problem and is with the users for example:

the user is Shinji Ikari

www.myforum.com/foro/profile/shinji_ikari.html

but the problem is no link my account...... if i put on the browser bar

www.myforum.com/foro/profile/Shinji Ikari.html

work but the links on the forums no work....... and if the users use CAPS no work too.....


ooo its true >< only my User use link the other users on who is online only say :
www.myforum.com/foro/profile/.html

sorry my english is bad ;_;

its true my forum work on spanish default but english too.

I am not sure what you mean.Could you let me know which url is working and which is not?

yabsoft 03-06-2009 10:15 PM

Quote:

Originally Posted by durbah (Post 1757015)
I have a problem when the subject of several pages of G Afh other pages of the topic and the selection of any page at the back of the main theme? What is the solution to this?
Forum version 3.8.1 and licensed
Thank you

Sorry, I cannot get what you mean.

Keyser S?ze 03-09-2009 12:30 AM

sorry im not like super technical, can anyone tell me the difference between this and vbseo?

Quote:

"4. Add "no=follows" for all external site url."
sorry but what does that mean?

thanks

Keyser S?ze 03-10-2009 01:56 AM

<a href="http://www.vbseo.com/f2/whats-difference-do-i-need-31868/#post201098" target="_blank">http://www.vbseo.com/f2/whats-differ...68/#post201098</a>

i asked over there as well, with no response from this side things are looking grim id say

blackberry 03-10-2009 10:05 AM

i am getting this error any idea??

Quote:

Not Found

The requested URL /forum/yabbseo.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.


All times are GMT. The time now is 11:00 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01803 seconds
  • Memory Usage 1,873KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (16)bbcode_code_printable
  • (3)bbcode_php_printable
  • (24)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete