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
  #1552  
Old 11-28-2006, 08:09 PM
aacircle aacircle is offline
 
Join Date: Jun 2005
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was comparing blog vs blog. Zoints offers a blog system and obviously vBlogetin offers a blog system. The beauty with Zoints is that it's more sticky for creating online communities. vBlogetin only offers Blogs and from what I could see, Zoints offers blogs and more. It allows members to be more connected to each other and show off their own profile pages. There is the control with Zoints blog too - ie. members can choose who can view their blogs which is a cool feature.

The whole idea with building online forums is to create a sticky experience for users and Zoints lends to this nicely.

Cheers.
Reply With Quote
  #1553  
Old 11-29-2006, 11:16 AM
Greek Wizard Greek Wizard is offline
 
Join Date: Jun 2006
Posts: 94
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had this working fine on a different forum (3.5.4) and it worked pretty good.

When I created a new site, I was hoping to have this as a perk/premium for VIP members, etc.

After reading everything over, I have installed it fine on a 3.6.4 board, and all works well.

However today one of my members told me there was an issue with the buddy/ignore screen, and that the Journal buddies was "trapped" inside the Ignore users box. I guess when I modified the MODIFYLIST template, I stuck the code in the wrong place and it was causing issues with my ignore user functions.

I now see that much of the code it's looking for does not exist in my style (unsure of default 3.6), so i must have spaced out and installed it close to what I think it was.

The instructions say:

Code:
   In Template modifylist
   FIND
   ----------------------------------------------------------------------------------------------------------------------------------
					<form action="profile.php" method="post">
					<input type="hidden" name="s" value="$session[sessionhash]" />
					<input type="hidden" name="do" value="updatelist" />
					<input type="hidden" name="userlist" value="ignore" />					
					<fieldset class="fieldset">
						<legend>$vbphrase[ignore_list]</legend>
						<div style="padding:$stylevar[formspacer]px">
							$ignore_listbits
							<div><input type="text" class="bginput" name="listbits[]" size="25" /></div>
							<div><input type="text" class="bginput" name="listbits[]" size="25" /></div>
						</div>
						<div align="center"><input type="submit" class="button" value="$vbphrase[update_ignore_list]" accesskey="s" /></div>
					</fieldset>					
					</form>				
				</td>
			</tr>
   ----------------------------------------------------------------------------------------------------------------------------------


   BELOW that ADD
   ----------------------------------------------------------------------------------------------------------------------------------
   <tr>
   <td>
   <form action="profile.php" method="post">
   <input type="hidden" name="s" value="$session[sessionhash]" />
   <input type="hidden" name="do" value="updatelist" />
   <input type="hidden" name="userlist" value="jbuddy" />					
   <fieldset class="fieldset">
   	<legend>$vbphrase[journal_buddy_list]</legend>
	<div style="padding:$stylevar[formspacer]px">
		$jbuddy_listbits
		<div><input type="text" class="bginput" name="listbits[]" size="25" /></div>
		<div><input type="text" class="bginput" name="listbits[]" size="25" /></div>
	</div>
	<div align="center"><input type="submit" class="button" value="$vbphrase[update_journal_buddies]" accesskey="s" /></div>
   </fieldset>					
   </form>				
   </td>
   </tr>
   ----------------------------------------------------------------------------------------------------------------------------------
Anyways, I guess I had to fix it.

I looked it over and decided that I didn't like the one that was there anyways.

So i created my own:

In MODIFYLIST find:

Code:
<script type="text/javascript">
								<!--
								vbmenu_register('userfield_buddy', true);
								snc_buddy = new vB_AJAX_NameSuggest('snc_buddy', 'userfield_buddy_txt', 'userfield_buddy');
								//-->
								</script>
							</if>
						</td>
						<td align="$stylevar[right]"><input type="submit" class="button" value="$vbphrase[save_list]" accesskey="s" /></td>
					</tr>
					<tr>
						<td colspan="2"><label for="chkall_b"><input type="checkbox" name="allbox" id="chkall_b" onclick="js_check_all(this.form)" checked="checked" />$vbphrase[check_uncheck_all]</label></td>
					</tr>
					</table>
					
				</fieldset>
				</form>
			</div>
			</if>
Replace with:

Code:
<script type="text/javascript">
								<!--
								vbmenu_register('userfield_buddy', true);
								snc_buddy = new vB_AJAX_NameSuggest('snc_buddy', 'userfield_buddy_txt', 'userfield_buddy');
								//-->
								</script>
							</if>
						</td>
						<td align="$stylevar[right]"><input type="submit" class="button" value="$vbphrase[save_list]" accesskey="s" /></td>
					</tr>
					<tr>
						<td colspan="2"><label for="chkall_b"><input type="checkbox" name="allbox" id="chkall_b" onclick="js_check_all(this.form)" checked="checked" />$vbphrase[check_uncheck_all]</label></td>
					</tr>
					</table>
					
				</fieldset>
				</form>
			</div>
			</if>
			<div id="userfield_buddy_div">
				<form action="profile.php" method="post">
				<input type="hidden" name="s" value="$session[sessionhash]" />
				<input type="hidden" name="do" value="updatelist" />
				<input type="hidden" name="userlist" value="jbuddy" />					
				<fieldset class="fieldset">
					<legend>$vbphrase[journal_buddy_list]</legend>
					
					<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
					<tr valign="top">
						<td>$jbuddy_listbits</td>
					</tr>
					</table>
					
					<br />
					
					<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" style="display:none">
					<tr valign="top">
						<td><img src="$stylevar[imgdir_statusicon]/wol_error.gif" alt="" /></td>
						<td id="userfield_buddy_errortext">&nbsp;</td>
					</tr>
					</table>
					
					<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
					<tr valign="bottom">
						<td>
							<div>$vbphrase[add_new_user_to_list]</div>
							<div><input type="text" class="bginput" name="listbits[]" id="userfield_buddy_txt" size="45" value="$userinfo[username]" autocomplete="off" /></div>
							<if condition="$show['popups']">
								<div class="vbmenu_popup" style="display:none"></div>
						</td>
						<td align="$stylevar[right]"><input type="submit" class="button" value="$vbphrase[save_list]" accesskey="s" /></td>
					</tr>
					<tr>
						<td colspan="2"><label for="chkall_j"><input type="checkbox" name="allbox" id="chkall_j" onclick="js_check_all(this.form)" checked="checked" />$vbphrase[check_uncheck_all]</label></td>
					</tr>
					</table>
					
				</fieldset>
				</form>
			</div>
			</if>
Please save your modifylist template first, just in case, because I am not a coder by any means, i simply hack away, so please be gentle, it might not work for you (it should though)

The results are in the attached image

if anyone thinks they can improve on it (and they probably can), feel free. All i did was copy the buddies section, and edited it out as needed

However this is where I need some very small help.

When you add a username to the buddy or ignore list, the name is defaulted as checked, therefore next time you add names, they will remain on the list.

In my changes above, when I add a user, it is defaulted unchecked. if you press the check / uncheck all button it works fine. Can anyone help me fix this small issue?

Also, on the /journal.php?do=showjbuddies page, all the user names are stuck together 9no spaces between them)

i know both are related to $jbuddy_listbits but when i search the journal.php, I can't really figure it out much.

Can anyone interested in fixing this buddy page help me out on these two minor issues?

thanks
Reply With Quote
  #1554  
Old 11-29-2006, 11:20 AM
Sinistra's Avatar
Sinistra Sinistra is offline
 
Join Date: Jun 2005
Posts: 190
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I checked out the vBlogetin, its a nice system but it can't compare to the IPB nore Zoints System. I havegrown tired of vBulletin putting an update out every week. So I converted my board to Invision Power Board. Tho still in Beta and RC Release IPB 2.2 plus their blog Gallery and download products built officly boy them its a pretty stable community.

I still usevB but only on the site I admin at. We are still using the vBjournal and we are going to the Zoints system as well. Why do you ask? because its stupid paying money for a mod that is done by a third party.

I bought GARS for my vB but never really used it. So I gave it to the sit eI admin at that is a vBulletin.

Sorry but I am going to have to go with aacircle on this. I like the Zoints. is myspace without all the loonies
Reply With Quote
  #1555  
Old 11-30-2006, 09:02 PM
noonespecial noonespecial is offline
 
Join Date: Nov 2002
Posts: 250
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lord Katsuhito View Post
I checked out the vBlogetin, its a nice system but it can't compare to the IPB nore Zoints System. I havegrown tired of vBulletin putting an update out every week. So I converted my board to Invision Power Board. Tho still in Beta and RC Release IPB 2.2 plus their blog Gallery and download products built officly boy them its a pretty stable community.

I still usevB but only on the site I admin at. We are still using the vBjournal and we are going to the Zoints system as well. Why do you ask? because its stupid paying money for a mod that is done by a third party.

I bought GARS for my vB but never really used it. So I gave it to the sit eI admin at that is a vBulletin.

Sorry but I am going to have to go with aacircle on this. I like the Zoints. is myspace without all the loonies
Uh, thanks for sharing?

Vbulletin is far more powerful than Invision.
Reply With Quote
  #1556  
Old 12-01-2006, 03:45 AM
Zoints Zoints is offline
 
Join Date: Feb 2004
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Let's not turn this into a this system versus that system thread. In the end, each forum owner should evaluate what is best for their community; to each their own. We're hoping to work with vBlogetin to standardize our block systems which would, in the end, benefit the forum owners.

With that said, after evaluating vbjournal's current state and codebase, we at Zoints have decided to write an import script to our Zoints Local blogging system which runs nicely on 3.5.x and 3.6.x and will continue to be supported and upgraded. It should be ready soon.
Reply With Quote
  #1557  
Old 12-02-2006, 12:28 AM
Zoints Zoints is offline
 
Join Date: Feb 2004
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We have an importer for Zoints Local available for testing. We've tested it successfully on a couple forums but want a couple more testers before we release it to the general public. If you're interested, please PM me here.

Reply With Quote
  #1558  
Old 12-02-2006, 12:00 PM
aacircle aacircle is offline
 
Join Date: Jun 2005
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Have installed Zoints on our forum and am just playing with it now. Looks like a cool system and will import the blogs from vbJournal tomorrow hopefully.
Reply With Quote
  #1559  
Old 12-06-2006, 08:06 AM
grundybin grundybin is offline
 
Join Date: Mar 2005
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DChapman View Post
We have an importer for Zoints Local available for testing. We've tested it successfully on a couple forums but want a couple more testers before we release it to the general public. If you're interested, please PM me here.
free games online
gave up trying to get zoints to work... didn't get passed the install though.
Reply With Quote
  #1560  
Old 12-13-2006, 04:57 AM
nikki712 nikki712 is offline
 
Join Date: Sep 2006
Posts: 105
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will this work in 3.6.4?
Reply With Quote
  #1561  
Old 12-13-2006, 05:03 AM
aacircle aacircle is offline
 
Join Date: Jun 2005
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No. You will get strange stuff happening. Hence the reason why many have moved over to Zoints.
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 03:07 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.05246 seconds
  • Memory Usage 2,330KB
  • 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
  • (3)bbcode_code
  • (2)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