Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Beta Releases

Closed Thread
 
Thread Tools
Geek Article System 3 - RC1 Details »»
Geek Article System 3 - RC1
Version: b2.08, by The Geek The Geek is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Version: 3.0.6 Rating:
Released: 02-04-2005 Last Update: Never Installs: 15
DB Changes
Is in Beta Stage  
No support by the author.

HowdA All.

The GAS3 system is a comprehensive article system that completely integrates into vB3.

History

Originally, I looked into other article systems to integrate with my forums but just got irritated over and over again as I found the other offering out there very limiting for my needs. I wanted to use my members usergroup permissions, the search facility (so when someone did a search for bob both articles AND threads appeared on one page), I also wanted wysiwyg editing and vBs attachment system. Well, I accomplished 99% of my needs with the Geek Article System 2.0
Why 3.0? While the 2.0 was fine for my needs, many users began asking for a far more complex system that took the beauty of 2.0 and added popular features in the other article systems.

Here are the features in a nutshell:
  • Integrates 100% into vB. No importing forums or creating special groups. Simply mark forum as an 'Article' forum and instantly all threads become articles. Dont like it anymore? Simply remove the ID and the therads and forums go back to normal.
  • Whatever you can do in a thread or post, you can do with the GAS3 system (uploading attachments, smiles, BBcode, various editors, yadayadayada)
  • Create multiple pages in your post by simply putting [BREAK] anywhere in your post.
  • The first thumbnail in an article substitutes the posters avatar (switchable via admincp)
  • Integrated article byline.
  • Article sidebar that shows the article rating, your rating, the rating form, article tools, and article attachments (all toggable via admincp)
Special thanks goes to rlamego and to peterska2 for private Beta testing this for me. Couldnt of happened without them!

Planned work:
  • I have integrated an attachment description modification, but so far I dont have an interface for the newattachment.php yet. I will do this as an add on (though the backend work is already in place)
Known issues:
  • none that I am currently aware of.
Demos: (note that I have a custom skin, so your results will be ever so slightly different)
http://www.thenailgeek.com/showthread.php?t=11287
http://www.thenailgeek.com/showthread.php?t=8801 - pages of comments


Difficulty - Medium
Time - about 15 minutes
File modifications? a few

Instructions

Click install. Especially as a beta, the package could get important updates that you need to be aware of. Also, as soon as it goes live, I may do the gold release outside of this thread as I dont want to bog down the gold release thread with any beta issues (if there are any). You will need to be aware of when that happens (so click install darnit!)
Download the package and unzip.
Follow the GAS3_README file to the letter!
There is an install script that does most of the work for you. There are several file edits that you will have to do yourself though.
When done, go into your admncp, open vBulletin settings, open Geek Articles 3 settings (in the big list where you turn your VB on and off).

Troubleshooting:
  • No phrases after install? This happens a lot with many installers for some bizzare reason. All you have to do is do a phrase search for GAS_ , edit the phrase (dont change it), then save it. Bingo - all your phrases appear.
  • Settings not taking? Your settings need to be saved in your adminco in order to take effect.
Also:

For the love of Pete - this is a BETA hack. I would therefore backup your DB, your styles, and any of the files the README asks you to change.

nJoy

Supporters / CoAuthors

Show Your Support

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

Comments
  #32  
Old 02-06-2005, 03:40 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 xmitchx
Hi,

First off I'd like to tip my hat off to such a great hack Second, I found a typo

Step 8.6:


The bold part should be $template
Nice one! Thanks for that.

I updated the package to 2-06 with this typo fixed.

rlamego -> Forgot that option is not wired up all the way yet. I really only put it in for hockeyfan. I'll wire it up most likely tomorrow. What it should do is toggle x amount of comments on all pages OR just the last page (if you remember everyone wanted them on last page only and he wanted the option).

Thanks again.
  #33  
Old 02-06-2005, 04:37 PM
rlamego rlamego is offline
 
Join Date: Nov 2004
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, ok. That's what I recall from the early dev stages but wasn't sure you changed it.
  #34  
Old 02-06-2005, 07:57 PM
hockyfan hockyfan is offline
 
Join Date: Mar 2003
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by the nail geek
rlamego -> Forgot that option is not wiredupallthe way yet. I really only put it in for hockeyfan. I'll wire itupmostlikely tomorrow. What it should do is toggle x amount ofcommentson allpages OR just the last page (if you remember everyonewantedthem on lastpage only and he wanted the option).

Thanks again.
Ahh, you didn't have to do all that just for me! I do appreciate it though.

I'm not a very talented coder, so I'm just waiting until this is donewith the beta testing to install. A big thank you to all those who aredoing such a great job with that as well! Can't wait to install this,muchthanks! :up:


h
  #35  
Old 02-06-2005, 08:58 PM
xmitchx xmitchx is offline
 
Join Date: Apr 2004
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Another bug. The article byline is not grabbed for editpost.

Fix:

Find in editpost.php:
PHP Code:
    if ($edit['title'] != '')
    {
        
$title htmlspecialchars_uni($edit['title']);
    }
    else
    {
        
$title $postinfo['title'];
    } 
Add BELOW:
PHP Code:
    // === GEEK ARTICLES START ===
    
if ($edit['articlebyline'] != '')
    {
        
$articlebyline htmlspecialchars_uni($edit['articlebyline']);
    }
    else
    {
        
$articleinfo getArticleInfo($postinfo['threadid']);
        
$articlebyline $articleinfo['byline'];
        unset(
$articleinfo);
    }
    
// === GEEK ARTICLES END === 
  #36  
Old 02-06-2005, 09:09 PM
xmitchx xmitchx is offline
 
Join Date: Apr 2004
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Another problem, this time with templates. In the GAS_article_pb template, the message/title section of the article is not vertical aligned to the top, so if the article is smaller than the sidebar, it is centered, which is not very article-like. To fix, open up GAS_article_pb and find:

HTML Code:
    	<td class="alt1">
	    <!-- message, attachments, sig -->
Replace with:

HTML Code:
    	<td class="alt1" valign="top">
	    <!-- message, attachments, sig -->
  #37  
Old 02-06-2005, 09:14 PM
xmitchx xmitchx is offline
 
Join Date: Apr 2004
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bug on installation step 8.7/8.8. Find should either include the "}" in the end, or step 8.8 should get rid of the "}" in the end so it should look like this:

PHP Code:
    // === GEEK ARTICLES step 8.6 ===
    // WAS:
    //eval('$postbits .= "' . fetch_template('printthreadbit') . '";');
    // NOW:
    
eval('$postbits .= "' fetch_template($template) . '";');
    
// === /GEEK ARTICLES === 
I think the latter is a better choice.
  #38  
Old 02-06-2005, 09:16 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 xmitchx
Another problem, this time with templates. In the GAS_article_pb template, the message/title section of the article is not vertical aligned to the top, so if the article is smaller than the sidebar, it is centered, which is not very article-like. To fix, open up GAS_article_pb and find:

HTML Code:
    	<td class="alt1">
	    <!-- message, attachments, sig -->
Replace with:

HTML Code:
    	<td class="alt1" valign="top">
	    <!-- message, attachments, sig -->
Yea, just noticed the valign problem.

Odd about the editpost. Thought I did that. Ill fold in your changes tomorrow into a new release.

Thanks a lot! (Keep em coming!)
  #39  
Old 02-06-2005, 09:20 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

xmitchx : Can you verify the editpost problem again? Mines is working fine here. Anyone else? I may have missed something in the install... Ill go back over it.
  #40  
Old 02-06-2005, 09:21 PM
xmitchx xmitchx is offline
 
Join Date: Apr 2004
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by the nail geek
xmitchx vbmenu_register("postmenu_608280", true); : Can you verify the editpost problem again? Mines is working fine here. Anyone else? I may have missed something in the install... Ill go back over it.
I already verified it by posting a few articles and reading over the editpost.php section of the install. I believe you may have forgotten it there
  #41  
Old 02-06-2005, 09:25 PM
winky6 winky6 is offline
 
Join Date: Nov 2001
Location: Boston
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The directions for the printhread edits are off a bit -

HTML Code:
Find :
eval('$postbits .= "' . fetch_template($template) . '";');
HTML Code:
8.8 REPLACE with:	// === GEEK ARTICLES step 8.6 ===
// === GEEK ARTICLES step 8.6 ===
    // WAS:
    //eval('$postbits .= "' . fetch_template('printthreadbit') . '";');
    // NOW:
	eval('$postbits .= "' . fetch_template($template) . '";');
    }
	// === /GEEK ARTICLES ===
It should be -

HTML Code:
Find :
eval('$postbits .= "' . fetch_template('printthreadbit') . '";');
Closed Thread

Thread Tools

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 06:39 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10841 seconds
  • Memory Usage 2,321KB
  • Queries Executed 26 (?)
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
  • (7)bbcode_html
  • (3)bbcode_php
  • (4)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
  • (3)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