vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - Zoints SEO (https://vborg.vbsupport.ru/showthread.php?t=127336)

djbaxter 06-29-2007 09:55 PM

Quote:

Originally Posted by ru55ian (Post 1279449)
can anyone tell me how to uninstall it safely?

  1. Admin CP | Products & Plug-ins | Manage Products
  2. Scroll down to Zoints SEO in the right panel.
  3. From the drop down box at the far right, select Uninstall.
  4. Done.

TheAlchemist 07-02-2007 06:39 PM

hello,

it looks like zoints seo is causing problems to the javascript menus when pagination is on. basically, when a thread is broken into multiple pages (p2, p3 etc) and zoints seo is on, the javascript menus don't pop up. if I uninstall zoints seo, everything works fine.

anyone has any idea about this?

thanks in advance

djbaxter 07-02-2007 06:47 PM

Quote:

Originally Posted by TheAlchemist (Post 1281448)
hello,

it looks like zoints seo is causing problems to the javascript menus when pagination is on. basically, when a thread is broken into multiple pages (p2, p3 etc) and zoints seo is on, the javascript menus don't pop up. if I uninstall zoints seo, everything works fine.

anyone has any idea about this?

thanks in advance

That's not happening for me.

Suggestion: if you're using the Zoints SEO mod_rewrite feature, turn it off - unnecessary.

TheAlchemist 07-02-2007 07:07 PM

ok I tried disabling mod_rewrite but I get a "no input file specified" message.....

unknownkind 07-03-2007 04:27 AM

any success stories with this?

activa 07-04-2007 02:38 AM

work great , but with arabic languane is not showing the arabic letters in the url .

for latin letter work perfectly .

any idea ?

dukegotgame 07-06-2007 09:02 PM

im trying to place my google adsense ads on my forum using this. im having trouble getting them to show up. any help? thanks

org knopper 07-07-2007 06:23 AM

hello
i have only one problem i am unable to submit my site on digg bcoz of thread and forum number @ end of url.
Code:

Code:

http://xxxxxxx.com/forum/showthread.php/the-evergrowing-18829.html
to

Code:

http://xxxxxxx.com/forum/showthread.php/18829-the-evergrowing.html
look at 18829 at end can we do it in starting of url like vbseo

djbaxter 07-07-2007 11:29 AM

Quote:

Originally Posted by org knopper (Post 1284970)
hello
i have only one problem i am unable to submit my site on digg bcoz of thread and forum number @ end of url.
Code:

Code:

http://xxxxxxx.com/forum/showthread.php/the-evergrowing-18829.html

Easy solution: Stop using mod_rewrite.

1. You do NOT need it with vBulletin.

2. It really doesn't help with vBulletin.

3. It creates more problems for you, this being only one example.

org knopper 07-07-2007 06:38 PM

Quote:

Originally Posted by djbaxter (Post 1285113)
Easy solution: Stop using mod_rewrite.

1. You do NOT need it with vBulletin.

2. It really doesn't help with vBulletin.

3. It creates more problems for you, this being only one example.

sir i am not using mod_rewrite my server don't support it i am using only Rewrite URLs and insert keywords

djbaxter 07-07-2007 06:48 PM

Quote:

Originally Posted by org knopper (Post 1285248)
sir i am not using mod_rewrite my server don't support it i am using only Rewrite URLs and insert keywords

Rewrite URLs is the same thing, as far as I know. Disable that.

org knopper 07-07-2007 07:02 PM

Quote:

Originally Posted by djbaxter (Post 1285262)
Rewrite URLs is the same thing, as far as I know. Disable that.

sir that will also not solve my problem after disabling it url of forum is http://xxxxxxxxxx.com/forumdisplay.php?f=26 << look at @ last there number i want to submit my url @ digg.com they don't accept that type of urls which have numbers @ last of url

hope you get my problem

WritersBeat 07-12-2007 07:10 PM

Hey, so if you had the url_rewriting on for a while, and then turn it off. It's obviously going to do something with the search engines right?

Is there anyway to put a 301 redirect from "something-1231.htlm" back to "showthread?t=1231" ?

Otherwise I'm going to be hit pretty hard in terms of search engines right?

nocte 07-12-2007 07:20 PM

Quote:

Originally Posted by WritersBeat (Post 1289384)
Hey, so if you had the url_rewriting on for a while, and then turn it off. It's obviously going to do something with the search engines right?

Is there anyway to put a 301 redirect from "something-1231.htlm" back to "showthread?t=1231" ?

Otherwise I'm going to be hit pretty hard in terms of search engines right?

there is :)

Code:

RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /forum/showthread?t=$2 [R=301,L]
(not tested)

WritersBeat 07-12-2007 07:38 PM

Well, if I hit up :

http://www.writersbeat.com/obscene-a...ty-t10444.html

with this

Quote:

RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index\.php|\.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 [QSA,L]

RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /showthread?t=$2 [R=301,L]
I get a no thread specified error.

If I remove the zoints rewrite rules, I get a 404...

Also, what should the zseo setting be set for 301 redirects? Should I turn that off?

thx, btw.

nocte 07-12-2007 07:42 PM

Quote:

Originally Posted by WritersBeat (Post 1289407)
Well, if I hit up :

http://www.writersbeat.com/obscene-a...ty-t10444.html

I now get a 404, I guess that's better than a double page? :-p

sorry, try this one:
Code:

RewriteRule ^([a-z0-9-]*)-([0-9]*)\.html$ /showthread.php?t=$2 [R=301,L]

WritersBeat 07-12-2007 07:46 PM

Hmm, whatever I try it still goes to a 404 or "No Thread specified. If you followed a valid link, please notify the administrator"

nocte 07-12-2007 08:01 PM

Quote:

Originally Posted by WritersBeat (Post 1289416)
Hmm, whatever I try it still goes to a 404 or "No Thread specified. If you followed a valid link, please notify the administrator"

o.k. another try:

Code:

RewriteRule ^([a-z0-9-]*)-t([0-9]+)\.html$ /showthread.php?t=$2 [R=301,L]

WritersBeat 07-12-2007 08:03 PM

omg, you rule :)

So, that will take care of both of these rules?
Quote:

RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L]
Like, what if there is a page extension, like 25?

ahh, yeah, like take this:
http://www.writersbeat.com/writing-markets-f59p3.html

That fails :( 404 error.

p.s really appreciate the help. I'll send paypal your way.

Forum url's are also 404'd

nocte 07-12-2007 08:14 PM

take this code:
Code:

RewriteRule ^([a-z0-9-]*)-t([0-9]+)\.html$ /showthread.php?t=$2 [R=301,L]
RewriteRule ^([a-z0-9-]*)-t([0-9]+)p([0-9]+)\.html$ /showthread.php?t=$2&page=$3 [R=301,L]
RewriteRule ^([a-z0-9-]*)-f([0-9]+)\.html$ /forumdisplay.php?f=$2 [R=301,L]
RewriteRule ^([a-z0-9-]*)-f([0-9]+)p([0-9]+)\.html$ /forumdisplay.php?f=$2&page=$3 [R=301,L]

that should work for thread and forum views (with and without pagers). If you delete the "$"s the rules will work for URLs with (eg. highlight) parameters too. I don't know if there's a downside doing this - propably not.

WritersBeat 07-12-2007 08:26 PM

You sir are amazing. Thank you.

What's your paypal e-mail? :)

nocte 07-12-2007 08:37 PM

Quote:

Originally Posted by WritersBeat (Post 1289440)
You sir are amazing. Thank you.

What's your paypal e-mail? :)

you can't afford my service - so let's say it's free for you :D

Riboflavin 07-14-2007 07:33 AM

Hi all, first I just wanted to say this is a great mod, one of the best!

I was having a look around and trying to figure out why google is finding pages on my forum the end in .html?p=xxx and I think its because on the member pages, under 'Last Post:' the link isn't 'zoints'd it still shows a link to showthread.php

Any way to fix this? Thanks!

hiphopave 07-18-2007 10:21 PM

What an excellent product. However, I am having one problem with my archive:

When trying to click on a thread, I get a 404 in the archive. This is because the URL is missing the index.php? right before the thread number (tXXX). Anyone have a fix?

TruthElixirX 07-21-2007 09:38 PM

Nevermind.

pbmansion 07-22-2007 04:54 AM

With my sitemap: http://www.pbmansion.com/forums/sitemap/

When you click a link it doesn't do anything. Why is this?

Strafe 08-02-2007 10:36 PM

Where is the template that I need to edit if I want to move the Zoints copyright link somewhere else? Because right now, it's too far away from my other copyright text (It's forced to be on the outside table). I want them to just all stay in one place.

Which template should I be looking at?

vspro 08-06-2007 09:16 AM

why i can't use this mod for utf-8 ?

progaming 08-12-2007 11:53 PM

Quote:

Originally Posted by pbmansion (Post 1297953)
With my sitemap: http://www.pbmansion.com/forums/sitemap/

When you click a link it doesn't do anything. Why is this?

I had to disable zoints new sitemap. It seems to only happen when php runs in cgi mode.

http://network.zoints.com/showpost.p...67&postcount=9

LewisAinslie 08-20-2007 08:10 PM

This does not work with Digg it says it cannot be found.

Smiry Kin's 08-20-2007 08:34 PM

very nice product you have here.

I'm already using a vbulletin seo product, but if i wasnt already using that, i would deffo use this,

/me installs for future ref.

projectego 08-22-2007 03:21 PM

I had completely forgotten about this hack until recently. I'll be installing this when I launch my new Mass Effect Forum - I can't wait. Great product. :)

Capt. GannA 08-31-2007 10:30 AM

I've suddenly started getting the "No Input File specified" error. Everything was working just fine before :/

This is how my .htaccess file looks like :
Quote:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index\.php|\.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 [QSA,L]

PeteBlume 09-02-2007 06:06 PM

Hello,

I have the following problem. I'm using a german vbulletin. Is there any possibility to replace ?,?,? maybe in ae, ue, oe or otherwise in &auml; &uuml; &ouml;?

Another Problem ist Characters like .; etc. For example I have the forum '1. Fachsemester'. The replaced URL is http://www.medforum-dresden.de/forum...-und-2-63.html
Is there any possibility to replace this characters with '_'?

Please help.

Leecher24 09-02-2007 08:10 PM

Hallo

I have at the moment the Domain xxxyyyz.BiZ with Zoints seo. And next week I will change my Board to the Domain xxxyyyz.to

What I must put in the .htacces that all links from the .biz domain (otherwebspace or redirection to .to domain).

That all links that are listed in google redirect to right thread.

Greetz L24

Tact7626 09-04-2007 06:29 PM

ok. feel free to laugh at me if you like. :p (i don't mind)

i've read like nearly (by nearly i mean like the first 10 and last 10 pages) of the entire thread.

and...i'm being forced to research this because i think maybe possibly i need this. O_o but i just wanna clarify the purpose of an SEO in general using super lamens terms. :p if someone can confirm my basice "idea" of what this is for, then i can go on ahead and continue researching a bit more in depth.


here i go.

is the whole idea to an seo the idea that you sort of "individualize" specific forum THREADS to kinda be stand-alone "mini-sites" each with their own little meta tag/description and POSSIBLY (though highly debabtle and generally not recommended) to even have a simpler url?

because if that's the whole point then i PERSONALLY find this ...somewhat interesting. like..not amazing, yet not useless either.


the whole decay thread thing seems useless though. maybe someone could explain that a bit more. um, the custom welcome headers for diffrent threads seems useless too. i mean.. i guess it's like if your thinking "every little teeny bit helps" for increasing registrations i GUESS you might appreciate that. O-o

but i find it odd that the only saving point (i think) is the meta tags and yet the thread starter himself is all like "they're deprecated who on earth uses them blah blah" so then if they were really that "useless" what's left? the mod_rewrite? lol

so um..yah. if anything. perhaps my forum is still just way to small for it but i really don't know.


would it be correct for me to say that another major "selling" point to this is getting as much of your site out there in searches? is that it? cause i can't understand how this thing does that better than me not having this installed at all. is it helping my forum show up more, or simply increasing the CHANCES it'll show up more? or increasing the POSSIBLITY of having chance at it showing up more? O_o

yah i'm lost i think. lol

feroxltd 09-06-2007 04:49 PM

I just received a report from a forum member of mine that after I installed this SEO he was not able to edit his post in Opera. Is this a known bug?

sahinsivar 09-07-2007 03:16 PM

i think on 3.6.7PL1 is working.....

3.Rewrite URLs and insert keywords, using mod_rewrite

http://www.xxxxxxxxx.com/forum/showt...ewpost&t=80633

proplem = HTTP 404


my .htaccess

Quote:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://xxxxxxxxxxx.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://xxxxxxxxxxx.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.xxxxxxxxxxx.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.xxxxxxxxx.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]


Options +FollowSymLinks
RewriteEngine On

RewriteRule ^([a-z0-9_\-]*.(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php?$1 [QSA,L]
RewriteRule ^([a-z0-9_\-]*.(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php?$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index\.php|\.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php?$2 [QSA,L]

IrPr 09-11-2007 01:20 PM

Quote:

Originally Posted by jawatkin (Post 1262525)
Has anyone successfully implemented this running lighttpd? I'm trying to swap over to lighttpd, and I've got the mod_rewrite running and put the rewrite rules in and nearly everything works, except when you click the "Arrow" on a forumdisplay that takes you directly to a certain post in the format :
Code:

http://www.url.com/forum/showthread.php?p=12345#post12345
This URL is rewritten as :

Code:

http://www.url.com/forum/thread-title-t123.html?p=12345#post12345
Apache can handle that, lighttpd gives a 404. Here's the rewrite rules I have in place for lighttpd. Anyone help?

url.rewrite = ( "^/forum/([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$" => "/forum/forumdisplay.php/$1", "^/forum/([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$" => "/forum/showthread.php/$1" )

Try this one
Code:


url.rewrite = ( "^/([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html(.*))$" =>
"forumdisplay.php/$1", "^/([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html(.*))$"
=> "showthread.php/$1" )

Add (.*) after any .html and make sure that ur pattern starting rule ( i mean ^/ ) matches ur forum path

brattanek 09-13-2007 12:17 PM

Hi all links work fine, but not when i login to forums with password, or in sitemap i get error 404.

my rules in lighttpd.conf
Code:

url.rewrite = (
      "(?i)^/([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html).*$" => "/forumdisplay.php",
        "(?i)^/([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html).*$" => "/showthread.php",
        "(?i)^/(archive|sitemap)/(.*)$ " => "/$1/index.php/$2",

How make this rewrite rules better ?


All times are GMT. The time now is 10:54 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.01943 seconds
  • Memory Usage 1,847KB
  • 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
  • (11)bbcode_code_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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