vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vBJournal for vBulletin 3.5 (https://vborg.vbsupport.ru/showthread.php?t=96462)

aranthorn 10-14-2005 06:49 PM

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

john1744 10-15-2005 02:56 AM

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?

Andreas 10-15-2005 03:48 AM

@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.

Leah 10-16-2005 08:10 PM

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?

https://vborg.vbsupport.ru/attachmen...chmentid=31725

That way the journal, in my opinion, would be fully integrated.

Andreas 10-16-2005 08:23 PM

@Leah
Should be possible with a slightly modified plugin - but will require a bit more processing.

Daniel 10-17-2005 01:57 AM

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

Andreas 10-17-2005 02:03 AM

Please make a bug report so I can keep track of it.
Thank you.

n1ckn4me 10-17-2005 11:08 AM

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!

Andreas 10-17-2005 11:11 AM

The next version will have a CMPS module.

n1ckn4me 10-17-2005 01:18 PM

nice!.. will get it sooner or later ;) ciao

version2 10-18-2005 12:12 AM

Hey, Kirby. I installed your version and it looks like when folks try to add comments everything goes through but no text is shown in the comment place after submission. It's like it just disappears.

Andreas 10-18-2005 12:23 AM

Any chance you have customized journal_* Templates?
If so, please revert them.

Otherwise, please make a bug report with detaild description on how to reproduce the problem.
Thank you.

version2 10-18-2005 12:28 AM

Quote:

Originally Posted by KirbyDE
Any chance you have customized journal_* Templates?
If so, please revert them.

Otherwise, please make a bug report with detaild description on how to reproduce the problem.
Thank you.

I will try that now.

sherykah 10-18-2005 01:18 PM

before switching to vb3.5 my admin could admin the journal from the Admin CP. Now they don't get that option. How can I give them that option back?

akoj 10-18-2005 09:39 PM

First of all, great hack!

I don't know what I have done wrong but I have one member who is trying to make the journal private...however when she (or me) adds the id#'s of the people who can view, they can see the entry titles as links but when they click it they get a no permission page. I know that she did not make each individual entry private.
Any ideas?

Andreas 10-18-2005 09:48 PM

Hmm, works fine for me.
Can you verify the problem on my testboard?

akoj 10-18-2005 10:04 PM

Is that accessible through your bug tracker?

I am thinking that it is something rather stupid I messed up but cannot figure out what. No one else reported it so it most likely is me. I have re-uploaded the files and gone through the templates but can you think of something off hand I could have missed or done to cause this?

Andreas 10-18-2005 10:23 PM

Testboard is http://kirbydemos.ath.cx/forum/journal.php :)

akoj 10-19-2005 12:06 PM

Quote:

I don't know what I have done wrong but I have one member who is trying to make the journal private...however when she (or me) adds the id#'s of the people who can view, they can see the entry titles as links but when they click it they get a no permission page. I know that she did not make each individual entry private.
Any ideas
Fixed. Thanks. It is usually is something simple that I just can't get. The user was putting the id #'s in the journal buddy field. :ermm:

Schwartz12 10-19-2005 10:30 PM

I am getting an empty Internet Explorer Error on the add entry page when I press submit.

This can be removed by deleting the webtv section in the form that was already there, but then it does not post the message only the title.

Mr Chad 10-20-2005 02:36 AM

Would it be possible for the journal owner to be able to choose a custom header pic/font/colors ...

s1l3NCER 10-20-2005 05:25 AM

well since I dont want to make an account on the bug tracker. All add it here in hopes the owner will read it and see the bug.
soo when you add a sentence With (") the quoute doesnt appear only the letters that make that symbol S&qoute something like that
here ire some attachemnst so you can see the bug and stuff

Andreas 10-20-2005 11:03 AM

@s1|3NCER
Maybe it is this Bug?

Code Monkey 10-20-2005 04:52 PM

Nice Job.

The only problem I have with this setup up is that it doesn't empower the user enough. It would be nice if they automatically had mod status over all replies and such for their journal. The ability to add a banner and css changes or style choice would be cool too. Maybe a favorite links box or something. There are so many journal blog choices out there that give the author so much more.

Flexo 10-20-2005 09:57 PM

Yeah but none for vBulletin. All the ones out there seem to be one-user-solutions.
If you want to give each of your users his/her own journal/blog, you´re stuck to this one I´m afraid.

Mr Chad 10-20-2005 10:38 PM

Quote:

Originally Posted by JumpD
Nice Job.

The only problem I have with this setup up is that it doesn't empower the user enough. It would be nice if they automatically had mod status over all replies and such for their journal. The ability to add a banner and css changes or style choice would be cool too. Maybe a favorite links box or something. There are so many journal blog choices out there that give the author so much more.

yea, make it a lil more like livejournal.com.

dethfire 10-22-2005 01:28 AM

Having entries listed in ASC order doesn't make much sense. How do I change to DESC?

Dialtone98 10-22-2005 01:12 PM

I just installed the journal and when I try to adjust the settings in users groups I get an error code on the top of the screen. Can you help please.

Alien 10-22-2005 03:57 PM

While this is still being worked on, we'd like to uninstall this.. How do we go about it? I removed all phrases and all added/altered tables from the database manually (uninstall does not work).. I also deleted each plug-in manually but still have the product still show (albeit disabled) in the product manager. How do I remove it from there as well?

I'm going to give it a fresh try right after it's updated again was getting too many errors.

Guest190829 10-22-2005 04:00 PM

Quote:

Originally Posted by Dialtone98
I just installed the journal and when I try to adjust the settings in users groups I get an error code on the top of the screen. Can you help please.

You need to upload all files (xml bitfield file specifically) before you import the product.

Anyway, I just installed this and everything is working fine. Good job Andreas :)

Alien 10-22-2005 04:21 PM

Okay I was able to remove it from the product section admincp area by editing the product/productcode table as well.

I still list a few instances in the datastore, is it safe to remove these? Uninstalling this one is quite a chore, but I didn't want to wait. ;)

Dialtone98 10-22-2005 04:57 PM

There are all in the XML folder. I tried to run the bitfield hack.xml and got invalid file. Am i missing something?

Alien 10-22-2005 06:15 PM

Update: Okay I got the entire thing uninstalled. I'll give this another whirl shortly!

Sinistra 10-23-2005 03:36 PM

How do I put latest entries first and I have had reports of the comments system only aloownignthe view of page 1 when they click on say like page 2 or 10

Guest190829 10-23-2005 07:28 PM

Quote:

Originally Posted by Dialtone98
There are all in the XML folder. I tried to run the bitfield hack.xml and got invalid file. Am i missing something?

You may have the xml file in there but you must upload it before importing the product. Uninstall the product reupload all the xml files and then import product again.

Andreas 10-23-2005 08:01 PM

@Lord Kathsuhito
Changing the order is not yet possible.
If you get errors and feel that they are caused by a bug, please report them to the bugtraker, thank you.

Oblivion Knight 10-23-2005 08:07 PM

Andreas, would you mind if I posted the zip I sent to you last month as an "unofficial update" in this thread?

A lot of what is being requested is already done and surely apart from the version number (my update uses Alpha 4), it's not going to affect your future plans for this.?

trackpads 10-23-2005 10:42 PM

Quote:

Originally Posted by Danny.VBT
You may have the xml file in there but you must upload it before importing the product. Uninstall the product reupload all the xml files and then import product again.

I have this exact same problem, did this and removed etc. Still had problems and got that exact same error. Uninstalled, reinstalled still no luck.

-Jason

trackpads 10-23-2005 10:48 PM

Quote:

Originally Posted by trackpads
I have this exact same problem, did this and removed etc. Still had problems and got that exact same error. Uninstalled, reinstalled still no luck.

-Jason

Never mind, found it in the bug tracker.

Andreas 10-23-2005 11:19 PM

@Oblivion Knight
Feel free to post it, as I currently don't have much time to work on this.


All times are GMT. The time now is 08:58 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02298 seconds
  • Memory Usage 1,838KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete