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
  #42  
Old 09-18-2005, 12:59 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, I thought it was obvious that one has to turn on appropriate Permissions
Reply With Quote
  #43  
Old 09-18-2005, 01:36 AM
Omega Prime's Avatar
Omega Prime Omega Prime is offline
 
Join Date: Sep 2002
Location: ::Infinity::
Posts: 169
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Omega Prime
Well, that worked

Just a side question, but how can you have it so that it shows journals on the index in descending order by the last entry date? I know I can set it myself, but there doesn't seem to be a way to have it set like that for all members (the same goes with journal entries) :ermm:
Just thought I'd quote myself since it was on the bottom of the 2nd page and Kirby might've not noticed
Reply With Quote
  #44  
Old 09-18-2005, 01:52 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
@Paul M
There are ALTER Statements?
Well yes, there are now, since you've now added them. They wern't there when I downloaded it earlier - I can only report on what I have - esp if you change it without saying anything.

FYI, I also had to manually rebuild the bitfields before I could use it (or edit usergroups).
Reply With Quote
  #45  
Old 09-18-2005, 02:29 AM
Daniel's Avatar
Daniel Daniel is offline
 
Join Date: Jul 2005
Location: USA
Posts: 707
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Set the proper usergroup settings, uploaded everything, but I get it's deactivated when it's not...
Reply With Quote
  #46  
Old 09-18-2005, 06:07 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Paul M
Yeah, in the first ZIP they were missing, but they were already added when you posted that they are not there
Hmm, the Bitfields should be rebuilt automatically.
Gonna test why they are not.
Edit: Tested and gets rebuilt for me.

@Danieldude
If it tells you that it is deactivated then it is deactivated.

@Omega Prime
Not possible (yet)
Reply With Quote
  #47  
Old 09-18-2005, 06:16 AM
ged's Avatar
ged ged is offline
 
Join Date: Feb 2005
Location: Istanbul, Turkey
Posts: 207
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had vbjournal on my 3.0.7, does this hack upgrade it? I don't want to loose my users' journal data.
Reply With Quote
  #48  
Old 09-18-2005, 06:19 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It should, unless you uninstall it.
To be 100% safe, I'd suggest to backup your journals, journal_entries, journal_comments, journal_moods and journal_settings tables first.
Reply With Quote
  #49  
Old 09-18-2005, 06:47 AM
hydrostatic hydrostatic is offline
 
Join Date: Jun 2005
Posts: 123
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
It should, unless you uninstall it.
To be 100% safe, I'd suggest to backup your journals, journal_entries, journal_comments, journal_moods and journal_settings tables first.
When trying to edit moods, there comes an SQL error.
Code:
Database error in vBulletin 3.5.0 Release Candidate 3:

Invalid SQL:
DELETE FROM journal_moods WHERE mood_id=1;

MySQL Error  : Table 'blootix_forums.journal_moods' doesn't exist
Error Number : 1146
Date         : Sunday, September 18th 2005 @ 02:45:26 AM
Script       : http://www.blootix.com/forums/admincp/journaladmin.php?do=killmood&mid=1
Referrer     : http://www.blootix.com/forums/admincp/journaladmin.php?do=moderatemoods
IP Address   : ***********
Username     : Blootix
Classname    : vb_database
I think you mistyped something about a TABLE PREFIX. I'll try to find it.

EDIT: Found it. You forgot to do that .TABLE PREFIX. thing with this code:

PHP Code:
$mid $vbulletin->input->clean_gpc('r''mid'TYPE_INT);
        
$db->query("DELETE FROM journal_moods WHERE mood_id=".$mid."");
        
define('CP_REDIRECT''journaladmin.php?do=moderatemoods');
        
print_stop_message('journal_mood_deleted_successfully'); 
it should be:
PHP Code:
$mid $vbulletin->input->clean_gpc('r''mid'TYPE_INT);
        
$db->query("DELETE FROM ".TABLE_PREFIX."journal_moods WHERE mood_id=".$mid."");
         
define('CP_REDIRECT''journaladmin.php?do=moderatemoods');
         
print_stop_message('journal_mood_deleted_successfully'); 
Am I right?
Reply With Quote
  #50  
Old 09-18-2005, 06:54 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes.
People should not use Table-Prefixes
But: Bugs should not be reported here.
That just gets too messy
Reply With Quote
  #51  
Old 09-18-2005, 06:57 AM
hydrostatic hydrostatic is offline
 
Join Date: Jun 2005
Posts: 123
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ops I didn't see that link in the first post. I'll do that next time.
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 02:58 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.04971 seconds
  • Memory Usage 2,322KB
  • 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_code
  • (2)bbcode_php
  • (3)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
  • (3)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