vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Geek AutoLinker 4.02 (https://vborg.vbsupport.ru/showthread.php?t=76054)

rrr 02-24-2005 12:16 AM

Quote:

Originally Posted by venomx
rrr I agree but then also I am using it to link to my other sites, if they are they way you want then Google and the other engines might not register that its a link to my site...

Exactly. Which is why I suggested it be made as an "option" :)

That way, if you're not using the links for search engine ranking, then you can use the tracking code (if there ever was one written).

If you are using it for search engine ranking, then you can turn the tracking off (in my ideal version of this hack :) )

slix 02-24-2005 01:26 AM

Quote:

Originally Posted by rrr
Feature Suggestion:

A cool feature/option for this hack would be if when you typed in bob, the script used a redirect link, like: yoursite.com/forum/autolink.php?l=1

So if you wanted bob to link to bob.com, you would enter that in the AdminCP, and it would create the redirect link that would actually be used in the forum.

Where this would be useful, would be to track how many people are actually clicking on the link (useful to let advertisers know how many clicks they are getting).

It would also be useful to hide or shorten long affiliate links. Sometimes, people are less likely to click a link if they think it is an affiliate link, and the redirect would make it so that if you had a really long link or one with special characters, it would still turn out to just be a simple autolink.php?l=1 link in the forum.

Not all users of the hack would want this feature activated, so maybe it could be something optional?

Either way, great hack!

I use a separate tracker, one that I use for tracking to and from many sites. I don't think this is a feature that should be built into the autolinker hack, because to get a good level of click tracking and monitoring, you need a dedicated script that would dwarf the autolinker hack!

I would suggest you invest in a dedicated tracking script. I have mine on a dedicated domain that is nice and short, and created a subdomain called "a" to replace www with something shorter. On the end of that goes a short tracking number. The funny thing is, google and inktomi often pick my tracking links up, and list the actual tracking link it's self rather than the target. That's prety cool, because I can track hits direct from search engines, and send SE traffic straight to my advertisers. That's fluke though. If I tried to do that, I would surely fail!

rrr 02-24-2005 02:09 AM

Quote:

Originally Posted by slix
I use a separate tracker, one that I use for tracking to and from many sites. I don't think this is a feature that should be built into the autolinker hack, because to get a good level of click tracking and monitoring, you need a dedicated script that would dwarf the autolinker hack!

Interesting point. However for someone needing just simple tracking, I think it would be a nice feature to add into the script.

I have used several tracking scripts, and all of them would be overkill for what I'm describing.

One other benefit that an inscript tracker would have is that the link URL would be from the same domain as the forum. I think users would trust a link more (since they don't know where it's going) if it appears to just be a regular forum link, rather than a link that is from some other domain they aren't familiar with.

The Geek 02-24-2005 05:59 AM

hey rrr thanks for pointing out that the demo went to a blocked area. I just set permissions for articles and tutorials and forgot abou you guys checking it out... I better set them back :)

on to your suggestion. Personally, I think it is a great suggestion however I wouldnt have time to do a catch/referal script right now.

Why not use something like vBa links directory or scan here for a hack that does something similar (there are a few). Then make any autolinks you create simply refer to that redirect page (most link directories will use a refer page that tracks clicks).

Going off to sort my permissions ;)

memobug 02-24-2005 06:35 AM

This looks like quite a fun hack. I have a suggestion for users that they might be able to use to make a buck or two.

Offer to sell (actually to rent) words and phrases on your forums. You sell the word for say a dollar a month. So, for example, if you are running a makeup forum like I saw earlier, you could sell words like lipstick or foundation.

The longer phrases could pre-empt the shorter ones, so if somebody bought "skin moisturizer" it would take precedence over the person who bought "moisturizer" if the phrase "skin moisturizer" were actually used.

A more sophisticated hack could allow people to bid on adwords like google.

Each user has a total budget (that he can charge up with paypal or something) and he has a list of words with their associated links for each, and a daily budget for each, and a bid amount he is willing to pay - his bid for that word.

The user who offers the most for a specific word or phrase owns that offered the most for a word would own the link associated and every time one of his words gets clicked on, his budget gets depleted by that amount until his total budget or his daily budget ran out, or somebody outbid him on the word.

Now you might not even have to auction the actual words, but simply an adspace that appears right after the post that contains the word.

Regards,

Matt

rrr 02-24-2005 03:11 PM

Quote:

Originally Posted by The Geek
Why not use something like vBa links directory or scan here for a hack that does something similar (there are a few). Then make any autolinks you create simply refer to that redirect page (most link directories will use a refer page that tracks clicks).

Now that's an interesting idea. I think I may go that route (it'll give me a directory for my forums, and a link tracking script).

I've got to get out of this box more often.

rrr 02-24-2005 04:45 PM

The instructions say to find in admincp/index.php :

Code:

        // *************************************************
        if (can_administer('canadminstyles'))

But my admincp/index.php looks like:

Code:

        // *************************************************

        $printhr = false;
        if (can_administer('canadminstyles'))
        {

And your code wants $printhr = true.

Do I put your code in between the $printhr line and the if (can_administer line? Or do I replace the $printhr=false line as well?

Razz 02-25-2005 02:26 AM

This is also breaking up urls for me in safe mode, is there a workaround yet?

The Geek 02-25-2005 05:36 AM

rrr - put it above the $printhr = false; line then.

Razz- Everytime someone brings this up - it turns out that it isnt in safe mode. There may be an occasional issue with the settings being built - but I havent seen it yet! Try this:

In your functions_showthread.php file, comment out the following line:

PHP Code:


$post
['message']=preg_replace("<!--GAL_REMOVAL--> ","",$post['message']); 

So it looks like this:

PHP Code:


//$post['message']=preg_replace("<!--GAL_REMOVAL--> ","",$post['message']); 

Then rebuild your settings in safe mode and go to a page with mesed up URL. If it is still mesed up view the source and search for <--GAL_REMOVAL--> If it isnt there, it means the settings were not built right.

HTH's

Razz 02-25-2005 07:55 AM

Hi Nail Geek,

I didn't notice if this had been covered yet but the settings are incorrect for most due to an error in step 3.2 of the install with a typo on gal_settings (gel_settings)

Also in functions_showthread:

PHP Code:

if ($gal_setting['leading_space']==1

should be

PHP Code:

if ($gal_settings['leading_space']==1



All times are GMT. The time now is 11:59 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,762KB
  • 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
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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