Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Beta Releases
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools
Geek AutoLinker 4.0 RC2 Details »»
Geek AutoLinker 4.0 RC2
Version: 1.00, by The Geek The Geek is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 05-02-2005 Last Update: Never Installs: 14
Is in Beta Stage  
No support by the author.

This is a totally new version of the popular GAL3.0 system

Thread closed. Release is gold here -> https://vborg.vbsupport.ru/showthrea...threadid=76054


I am pretty cool that this package should be the final release. I have spent about 50 hours recoding this from the ground up but want a green light from you guys before I stick it in the current release thread.

In a nutshell this system replaces any keywords in posts with specific replacements (no, not like replacements in vb). It will do anything form simply link keywords all the way to produce poup boxes when doing a mouseover keywords.
The popups now support bbcode, html, multiple styles, titles, etc...

Other new features:
Track impressions, track hits, limit categories to certain forums, have usergroups toggle on.off certain forums, blahblahblahblah.

Basically its GAL 3 on Steroids.

O yea, the replacments are also a bit smarter

Upgrading:
From 2.6 and 3.0
Follow the install instructions in the readme. When you start up gal4_install.php, follow the upgrade path.
Please note that any replacement codes you added in 3.0 will go byebye. These are NOT your gal items... they are the global, category, or item level replacments that looked like something like this:
<a href="$link" title="$description">$text</a>

I would be shocked if anyone had more than 1 or 2 of these. If you modified them in any particular way - just copy them into notepad... run the install... then create new ones with the new system. REMEMBER: YOUR EXISTING GAL LINKS WILL BE PORTED SAFELY OVER!!!

Check out the extensive readme for details.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #82  
Old 05-07-2005, 05:44 AM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by amanpartaps
Wonderful Hack as usual from The Geek and atlast i have a gr8 glossary option at my hands. Thanks a ton.

i have this warning message showing consistantly when i click Display in Admin CP.:

Warning: Invalid argument supplied for foreach() in /admincp/GAL_admin.php on line 1146


Is there anyway, where i have no need to enter an url e.g. if the link is to be used as a Glossary, i need no link but just the yellow box coz if leave the link option blank i am shown the "pants" :nervous: message ??

Best Regards
Ill remove the url check. Just put anything in for now.

Make sure you have your styles and replacements entered as per the readme. The error is most likely caused because you are missing one of those.
  #83  
Old 05-07-2005, 12:50 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated to 4RC2.

IMPORTANT: You MUST read the README!!! At the bottom is the instructions to upgrade from rc1x to rc2.

New additions:
Width property for popup (200 is a good figure)
Stats enhanced
Bugs squashed
New box style property - allows you to have a solid style instead of 2.

nJoy
  #84  
Old 05-07-2005, 06:00 PM
Lizard King Lizard King is offline
 
Join Date: Jan 2005
Location: Mersin
Posts: 907
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Geek there is a problem. When I make the edit in vbulletin_menu.js and upload it (RC2) the menu's in navbar are not working. When i uploaded the old backup they start to work. Here is my vbulletin_menu.js maybe i did a worng file edit :

Code:
var vbmenu_usepopups = true;
var vbmenu_registered = new Array();
var vbmenu_initialized = new Array();
var vbmenu_activemenus = new Array();
var vbmenu_currentactive = false;
var slidetimer = false;
var vbmenu_opensteps = 10;
var vbmenu_doslide = true;
var vbmenu_dofade = false; // can be very slow

var vbmenu_datefields = new Array();
function GAL_popup(e,offset,width, box_style, value,value_style, title, title_style){
    if (!offset){
    	offset=1;
    }
    var leftpx = fetch_object_posleft(e);
	var toppx = fetch_object_postop(e) + e.offsetHeight;
	var dest=fetch_object("GALBox");

    toppx=toppx-offset;

    //value=value.replace(/
/g,'<br />');
    //title=title.replace(/
/g,'<br />');
    dest.style.left = leftpx + "px";
    dest.style.top = toppx + "px";

    if (width){
    	width=" Width='" + width + "' ";
    }

    var innerhtml="<table border='0' cellpadding='5' cellspacing='0' " + box_style + width + "><tr><td ";

    if (title){
    	innerhtml=innerhtml + title_style + "'>" + title + "</td></tr><tr><td ";
    }
    innerhtml= innerhtml + value_style + "'>" + value + "</td></tr></table>";

    dest.innerHTML=innerhtml;
    //alert(innerhtml);
    if ((window.document.body.clientWidth-dest.offsetWidth)<leftpx){
        leftpx=window.document.body.clientWidth-dest.offsetWidth;
        dest.style.left = leftpx + "px";
    }
	dest.style.visibility='visible';

}

function GAL_hidepopup(){
 fetch_object("GALBox").style.visibility='hidden';

}
// #############################################################################
// another function to handle the different event models of different browsers
Didn't paste the rest cause it was not needed.
  #85  
Old 05-07-2005, 09:48 PM
stroke25 stroke25 is offline
 
Join Date: Jan 2004
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lizard King
Geek there is a problem. When I make the edit in vbulletin_menu.js and upload it (RC2) the menu's in navbar are not working. When i uploaded the old backup they start to work. Here is my vbulletin_menu.js maybe i did a worng file
I also had the exact same problem.I just put my old vbulletin_menu.js file back and works now. Also im now getting a mysql error when adding a new category.
  #86  
Old 05-08-2005, 02:00 AM
T3MEDIA T3MEDIA is offline
 
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey geek some forums are breaking up weird... check it out.
Quote:
i recently was talkin to a girlfriend of mine who had went on a first Dating Ideas", "border-top: 1px solid black;border-left: 1px solid black;border-right: 1px solid black;background: #CCCCCC;padding: 1px;font: 8pt;font-weight: bold;color: #000000;", "0");' onmouseout='GAL_hidepopup();'> date with this guy she met.
  #87  
Old 05-08-2005, 06:55 AM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Guys - in your vbulletin_menu.js file.... remove these lines:

PHP Code:
    //value=value.replace(/\n/g,'<br />');
    //title=title.replace(/\n/g,'<br />'); 
To see if that helps. If so then ill update the package. It looks like that line went screwy. Doesnt matter anyway as they are no longet needed.
  #88  
Old 05-08-2005, 06:56 AM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

t3media - did you do the changes required in the readme to update from rc1 to rc2?
  #89  
Old 05-08-2005, 10:19 AM
Lizard King Lizard King is offline
 
Join Date: Jan 2005
Location: Mersin
Posts: 907
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Geek
Guys - in your vbulletin_menu.js file.... remove these lines:

PHP Code:
    //value=value.replace(/\n/g,'<br />');
    //title=title.replace(/\n/g,'<br />'); 
To see if that helps. If so then ill update the package. It looks like that line went screwy. Doesnt matter anyway as they are no longet needed.
That solved the menu problem for me but now the pop up is not working. If you want to check here Tom Waits is auto linked but pop up is not working.
  #90  
Old 05-08-2005, 12:38 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lizard King
That solved the menu problem for me but now the pop up is not working. If you want to check here Tom Waits is auto linked but pop up is not working.
There is a typo in the readme.

Re: the popup replacement codes (the one with a title and the one with no title). Edit them and change:

"$gal_box_style" "$gal_description",

to

"$gal_box_style","$gal_description",

Then click debug->rebuild
  #91  
Old 05-08-2005, 01:30 PM
Craigr's Avatar
Craigr Craigr is offline
 
Join Date: May 2002
Location: Ayr, Scotland
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by stroke25
Also im now getting a mysql error when adding a new category.
I too get a SQL error when adding a new category.
Closed Thread


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 10:59 PM.


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.06499 seconds
  • Memory Usage 2,316KB
  • Queries Executed 25 (?)
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)bbcode_code
  • (2)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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_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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete