Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBJournal for vBulletin 3.5 Details »»
vBJournal for vBulletin 3.5
Version: 1.0.2 Beta, by Andreas Andreas is offline
Developer Last Online: Jan 2023 Show Printable Version Email this Page

Version: 3.5.1 Rating:
Released: 09-16-2005 Last Update: 11-16-2005 Installs: 597
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

This is a Port of vB Journal by An-Net

A t t e n t i o n
This Hack is unsupported and incompatible with PHP 5.
You are herby advised to not use it.
If you do have this hack installed it is advised to use vBulletin Blog instead.
You can import current entries to vBulletin Blog via Impex and uninstall this hack afterwards.

Supporters / CoAuthors

Show Your Support

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

Comments
  #282  
Old 10-14-2005, 06:49 PM
aranthorn's Avatar
aranthorn aranthorn is offline
 
Join Date: Jun 2004
Location: Chicago
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
I said at least mySQL 4.0.4 is required (due to the fact that the install code uses multi-table updates).
You are running mySQL 4.0.25, which is newer than 4.0.4 so there won't be a problem.
Even if you were running an older Version, just a few queries upon install would fail, but the script itself would work just fine.
pwn3d, but I did warn about the stupid question...

thanks for the responses kirby and dethfire
Reply With Quote
  #283  
Old 10-15-2005, 02:56 AM
john1744 john1744 is offline
 
Join Date: Apr 2005
Posts: 268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I do have a question Kirby, my forum currently has about 250 active members a day, and is pretty active all day and night. Most would embrace a journal system. Is this ready to go primetime? As in do uninstallation issues still exist? Also the only issue I had with the journal when I beta-ed it was the new posts going the wrong order.

I'd love to install this tomorrow, but am not sure if its ready yet. Should I hold off a bit longer?
Reply With Quote
  #284  
Old 10-15-2005, 03:48 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@john1744
This Hack is in alpha stage (eg. pre-beta).
It's up to you to decide if you want to use it; i'd strongly recommend not to use it in production environment.
Reply With Quote
  #285  
Old 10-16-2005, 08:10 PM
Leah's Avatar
Leah Leah is offline
 
Join Date: Aug 2002
Posts: 100
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

This is a great hack.
I love it, and the members of my forum loves it.

I do have one request/wish though.
Could it be possible to connect the last entry, like shown on the members profile page, to the postbits? Like it's done here?



That way the journal, in my opinion, would be fully integrated.
Reply With Quote
  #286  
Old 10-16-2005, 08:23 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Leah
Should be possible with a slightly modified plugin - but will require a bit more processing.
Reply With Quote
  #287  
Old 10-17-2005, 01:57 AM
Daniel's Avatar
Daniel Daniel is offline
 
Join Date: Jul 2005
Location: USA
Posts: 707
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm not sure this has been asked, but since the MEMBERINFO change for 3.5.0 is different than RC3, how would we do the template mod for it?

Thanks
Reply With Quote
  #288  
Old 10-17-2005, 02:03 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please make a bug report so I can keep track of it.
Thank you.
Reply With Quote
  #289  
Old 10-17-2005, 11:08 AM
n1ckn4me n1ckn4me is offline
 
Join Date: Jan 2005
Location: The Netherlands
Posts: 67
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hey very nice hack!

I was playing with get 5 latest journals on my vBa CMPS indexpage!.. can't get it totally to work so was wondering if there allready an add-on out there or if someone can help me?

I have made a new module witch calls the following phpfile "latestjournals":

PHP Code:
<?php
// ++=========================================================================++
// || vBadvanced CMPS v2.0.0 (vB 3.5) - ****
// || ? 2003-2004 vBadvanced.com & PlurPlanet, LLC - All Rights Reserved
// || This file may not be redistributed in whole or significant part.
// || http://vbadvanced.com
// || Downloaded --
// || 
// ++ ========================================================================++

$getlatestj$db->query_read("SELECT journalname,journalist,journalist_id,journal_id,journaldate,journaldesc FROM " TABLE_PREFIX "journals
                 WHERE active=1
                 AND (journalist_id=" 
$vbulletin->userinfo['userid'] . " OR private != 1 OR FIND_IN_SET('" $vbulletin->userinfo['userid'] . "', allowedusers))
                 ORDER BY journaldate
                 DESC LIMIT 5"
);
    
$countlatestj$db->num_rows($getlatestj);
    if(
$countlatestj>0)
    {
        while(
$latestj$db->fetch_array($getlatestj))
        {
            
$journaldatevbdate($vbulletin->options['dateformat'], $latestj['journaldate'], 1);
            
$journaltimevbdate($vbulletin->options['timeformat'], $latestj['journaldate']);
            
exec_switch_bg();
            
// TODO: fetch_trimmed_title()
            
if(strlen($latestj['journaldesc'])>200)
            {
                
$latestj['journaldesc']= "".substr($latestj['journaldesc'],0,200)."...";
            }
            eval(
'$latestjournalbits .= "' fetch_template('journal_latestjournalbits') . '";');
        }
        
$db->free_result($lastestj);
    }
    else
    {
        
$latestjournalbits="There are no journals.";
    }

eval(
'$home["$mods[modid]"][\'content\'] = "' fetch_template('journal_latestjournalbits') . '";');
?>
As you probably can see this isn't sufficient or even good but I am still a tottaly noob with a willing to learn more..

Thanks in advance!
Reply With Quote
  #290  
Old 10-17-2005, 11:11 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The next version will have a CMPS module.
Reply With Quote
  #291  
Old 10-17-2005, 01:18 PM
n1ckn4me n1ckn4me is offline
 
Join Date: Jan 2005
Location: The Netherlands
Posts: 67
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice!.. will get it sooner or later ciao
Reply With Quote
Reply


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 04:28 PM.


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.05655 seconds
  • Memory Usage 2,333KB
  • 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
  • (1)bbcode_php
  • (1)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
  • (4)pagenav_pagelinkrel
  • (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