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

Reply
 
Thread Tools
vB Journal 1.5 Beta 3 Details »»
vB Journal 1.5 Beta 3
Version: 1.5 Beta 3, by AN-net AN-net is offline
Developer Last Online: Jan 2010 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 11-07-2005 Last Update: 02-12-2006 Installs: 24
DB Changes Template Edits
Code Changes Additional Files Is in Beta Stage  
No support by the author.

vB Journal 1.5.0 Beta 3
by Anthony Scudese
  • Description:
    Allow your community members to express themselves like never before with their own journal! vB Journal 1.5.0 extends the popular vB Journal 1.0.x system with tons of new features and more stability than ever before.
  • Features:
    • Full vBulletin 3.0.x intergration
    • 1.0.1 Features:
      • Comment System
      • "GoToMyJournal"
      • link from postbit to journal
      • link from profile to journal
      • link from memberlist to journal
      • usergroup permissions
      • journal buddy system(by Wonko)
      • Journal Search Engine
      • journal highlight
      • bbcode parsing
      • smilie parsing
      • Admin Cp Support Section
      • Journal Status Icons
      • Who is viewing
      • most recent journal entries and journals
      • Who Can View for journals and entries
      • Complete journal and entry privacy
      • Comment on entries or journals
      • Journal Moderation(Like Post and Thread Moderation)
      • Entry Moderation(Like Post and Thread Moderation)
      • Pagination
      • Rating System
      • Lock System
      • Moods
      • "Can Have Journal" on a per user basis
      • Ip Logging
      • Journalists can name their journals
      • Export entries in TXT or XML format
      • Flood System
      • Administrators have absolute permissions
      • Search in Journal
      • Last Entry on Journal Index
      • Numerous AdminCp Settings
      • Unique Standard vB Images for vB Journal
      • View Single Entry
    • 1.5.0 Beta 1 Features:
      • Multiple Syndication Settings Including RSS 0.91, RSS 2.0, Atom 1.0, XML, CSV, and TXT.
      • vBulletin Standard Editors Added
      • Preview Entry
      • Reverse Entry Order
      • Improved Search Engine
      • Recent Comments for an Entry on Single Entry Page
      • Admin Settable Sort Orders
      • Printable Entry Format
      • Dynamic Last Entry
      • Database Indexes For More Speed
      • Optimized Code
      • Comes with Template, Phrase, and Database Installer and Upgrader.
      • Increased Security
    • 1.5.0 Beta 2 Features:
      • Reworked Editor Templates
      • Support For WYSIWYG
      • Back-End Post Checker
      • New Journal Buddy Interface
      • Navigation Bars Added Back
      • New Settings for Minimum/Maximum Postings
      • Known Bug Issues Solved
    • 1.5.0 Beta 3 Features:
      • Known Bugs Resolved
      • New Feature Settings
      • Majority of Settings Converted to Bitfields
      • Some Maintenance Tools Added
  • Disclaimer:
    • Support may be denied if provided files are edited/modified and support may be stopped at any time due to any circumstances.
    • The copyright notice may not be modified or removed.
  • Support:
    • Where to Get Support?
      • AIM: Antonbomb22
      • antonbomb22(at)gmail.com
      • this thread!
    • How to Report An Error:
      1. State The Error Message
      2. The Version of both vBulletin and vB Journal you are using.
      3. What page the error occured on(i.e. journal.php?do=showjournal)
      4. Screenshot if necessary
    • Read All The Entire First Post and Any Official Posts Following Before Posting An Error/Problem
  • Side Credits:
    • Zero Tolerance
    • KirbyDE
    • Danny.vbt
    • WonkotheSane
  • Contents of vBJournal_1-5-0_Beta3.zip:
    • install.txt
    • Upload
      • journal.php
      • admincp
        • journaladmin.php
        • journalinstaller.php
        • journalmaintenace.php
        • journalupgrade.php
        • journalupgrade2.php
        • journalupgrade3.php
        • journalupgrade4.php
        • vbj_install_class.php
        • vbj_phrases_install.xml
        • vbj_templates_install.xml
        • vbj_phrases_upgrade2.xml
        • vbj_templates_upgrade2.xml
        • vbj_templates_upgrade3.xml
      • includes
        • vbjournal_class.php
      • images
        • buttons
          • delete.gif
          • discuss.gif
          • newcomment.gif
          • newentry.gif
          • newentry_small.gif
          • newjournal.gif
        • statusicon
          • journal_lock.gif
          • journal_new.gif
          • journal_old.gif
    • Upgrade
      • 1-0-1_to_1-5-0_Beta1
        • Instructions.txt
      • 1-5-0_Beta1_to_1-5-0_Beta2
        • Instructions.txt
      • 1-5-0_Beta2_to_1-5-0_Beta3
        • Instructions.txt
  • Demo:
  • Updates/Fixes:

Please Click Install

Show Your Support

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

Comments
  #82  
Old 12-18-2005, 07:40 PM
ddavis ddavis is offline
 
Join Date: Sep 2005
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by T3MEDIA
I tried to upgrade but the old templates still look the same... (your signage on the bottom) and I get a database error even if I update the journals in admincp

I had the same problem - but if you look around line 120 of the vbjournal_class.php file - which is the code creating the problem:

Code:
FROM myvb3_ journal_entries AS journal_entries LEFT JOIN myvb3_journals AS journals ON
if you look closely, there's a space in the php code after the open quotes before 'journal entries'
Code:
FROM ".TABLE_PREFIX." journal_entries AS journal_entries
so the rendered output is looking for myvb3_<SPACE>journal_entries instead of myvb3_journal_entries
Reply With Quote
  #83  
Old 12-20-2005, 05:05 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ddavis
I had the same problem - but if you look around line 120 of the vbjournal_class.php file - which is the code creating the problem:

Code:
FROM myvb3_ journal_entries AS journal_entries LEFT JOIN myvb3_journals AS journals ON
if you look closely, there's a space in the php code after the open quotes before 'journal entries'
Code:
FROM ".TABLE_PREFIX." journal_entries AS journal_entries
so the rendered output is looking for myvb3_<SPACE>journal_entries instead of myvb3_journal_entries
ok thank you. also i have resolved my WYSIWYG editor issue so i should be able release beta 2 soon
Reply With Quote
  #84  
Old 12-22-2005, 12:53 AM
T3MEDIA T3MEDIA is offline
 
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AN-net
ok thank you. also i have resolved my WYSIWYG editor issue so i should be able release beta 2 soon
So scared to test.. lol...
should I try to fix or wait for your beta two?
Reply With Quote
  #85  
Old 12-29-2005, 05:01 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vB Journal 1.5.0 Beta 2
Beta 2 marks a vast improvement in the front-end editor interface for the vB Journal system. Including a new interface for the vB Journal Buddy System that is much more user-friendly than before. Also this interface provides a more secure way for your users to add their friends to their vB Journal Buddy List. Another addition to the system is a php back-end check for entries, comments, and journals. This will ensure information sent for insertion or updating will be correct. Another thing this new error check system will be those users who have javascript disabled will not be able to get around the front-end javascript check system. The error checking system will also give you, the administrator, more control with several new settings in your vB Journal Administration Panel. These new settings include minimum and maximum character lengths for entries and comments.

Check the first post for the Beta 2 Zip File which includes the updated installer and upgrade script. As always thank you for installing the vB Journal System and your continued support.
Sincerely,
Anthony Scudese
Lead Developer, vB Journal
Reply With Quote
  #86  
Old 01-01-2006, 09:57 AM
T3MEDIA T3MEDIA is offline
 
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AN-net
it should have updated the old templates...you did not get any errors while upgrading?
I tried again... and the installer insists its a beta 1 to beta 2 install of course that gave database errors.
So I dug and luckly I had in my unzip forlder a beta 1 unziped file.

I uploaded that but I cant jump to template and phrases.

Is there a simple way I can manualy do this install?

These installers force you to do things one way and if you cant it wont continue.

My tables are already there so I cant go forward in the install and I do not know how to disect your php to figure what goes where.
Reply With Quote
  #87  
Old 01-01-2006, 04:36 PM
Corriewf's Avatar
Corriewf Corriewf is offline
 
Join Date: Dec 2004
Location: parse error
Posts: 799
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will there be a final version for 3.0.x and 3.5 or just 3.5? I want to install this on one of my boards that is 3.0.x but dont want to get shafted on final version.....
Reply With Quote
  #88  
Old 01-01-2006, 05:48 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Corriewf
Will there be a final version for 3.0.x and 3.5 or just 3.5? I want to install this on one of my boards that is 3.0.x but dont want to get shafted on final version.....
a final version will be released for 3.0.x and then that final version will be ported to 3.5
Reply With Quote
  #89  
Old 01-01-2006, 05:49 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by T3MEDIA
I tried again... and the installer insists its a beta 1 to beta 2 install of course that gave database errors.
So I dug and luckly I had in my unzip forlder a beta 1 unziped file.

I uploaded that but I cant jump to template and phrases.

Is there a simple way I can manualy do this install?

These installers force you to do things one way and if you cant it wont continue.

My tables are already there so I cant go forward in the install and I do not know how to disect your php to figure what goes where.
i contacted u via pm
Reply With Quote
  #90  
Old 01-01-2006, 07:28 PM
Guest190829
Guest
 
Posts: n/a
Default

I'll test this out either later today or tomorrow.
Reply With Quote
  #91  
Old 01-02-2006, 05:00 PM
T3MEDIA T3MEDIA is offline
 
Join Date: Dec 2004
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AN-net
there are no categories in this version and probably not till version 2. the author can not be changed through front-end. again that is probably not a likely feature until version 2. the main focus of 1.5 is to improve the basic system we have right now. version 2 will extend 1.5 by adding more frivulous features.
here is a question... how do I delete journals of users that are no longer on the site? say I ban a few members. or they close thier accounts how do I know who is who I see the journals work by first member is journal 1... is there a userid somewhere I can use to bulk remove dead journals?
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 09:57 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.05186 seconds
  • Memory Usage 2,325KB
  • 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
  • (4)bbcode_code
  • (7)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
  • (10)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