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)

poolking 11-21-2005 08:04 PM

Quote:

Originally Posted by zajako
i guessed that, I dont see anything in the admin cp about it. Not in the options or anywhere else.

Have you read the documentation about 3.5.x? That would be the best place to start, look for the section dedicated to the plug-in system.

Chadi 11-21-2005 10:19 PM

How do I change the dark gray color in the journal comment list (see attached) to my alt1 color (the light blue area you see)?

dethfire 11-21-2005 11:02 PM

how do you upgrade to beta 2? ah crap, I uninstalled the product to install the new upgrade and it deleted all the journals! Now I gotta pay $20 to get the server dudes to restore the tables :mad:

Paul M 11-21-2005 11:13 PM

Quote:

Originally Posted by dethfire
how do you upgrade to beta 2? ah crap, I uninstalled the product to install the new upgrade and it deleted all the journals!

Yes. I think that's extremely bad practice, the uninstall code should not remove tables until it's the release version.

Andreas 11-21-2005 11:25 PM

The uninstall code should always remove all data belonging to the hack, this is what uninstall codes are for :)

dethfire 11-21-2005 11:38 PM

Quote:

Originally Posted by Andreas
The uninstall code should always remove all data belonging to the hack, this is what uninstall codes are for :)

I was unaware there was one, I suppose I'm still in 3.0x mode. I thought it would just uninstall the plugins. Anyway, to upgrade do you just overwrite the files and overwrite the product? If yes, it seems easy and obvious, but you still shouldn't make people guess what to do.

Paul M 11-22-2005 12:03 AM

Quote:

Originally Posted by Andreas
The uninstall code should always remove all data belonging to the hack, this is what uninstall codes are for :)

Not in pre release versions where you are releasing new versions all the while and therefore people will (are expected to) uninstall/reinstall. The uninstall code is for people who no longer want the hack. Deleting the tables of people who are testing your hack is a very poor thing to do and is one reason I no longer test this. I posted the fact very early on in the thread but nothing changed so I stopped using it. Trashing my tables is not something I appreciate.


(btw, as a seperate issue - I personally don't see the need to ever remove tables as part of an automatic uninstall, they don't do any harm if left, and people can make up their own minds to remove them if they want).

Omega Prime 11-22-2005 03:23 AM

Stupid question, but has anything changed with the journal? What I mean is that I noticed it shows that the last update was on the 20th, and yet I don't see any changelog for a beta 2...=/

Andreas 11-22-2005 05:16 AM

@dethfire
Yes, overwrite and import te product XML is the standard procedure to update hacks.

@Paul M
Do you also prefer to manually remove registry entries? ;)
Uninstall shoul clean up everything, so the board & database is in the same state as before the installation.
Anyway, this Hack could also be tagged "Final" (as there are no big issues whatsoever), so discussing about not having uninstall-codes for "pre-release versions" doesn't make much sense.

@Omega Prime
You won't see Beta 2 for a while, I just updated the laguage packs.

Paul M 11-22-2005 05:45 AM

Quote:

Originally Posted by Andreas
@Paul M
Do you also prefer to manually remove registry entries? ;)

Removing registry entries does not lose loads of data. No comparison really. ;)

Quote:

Originally Posted by Andreas
Anyway, this Hack could also be tagged "Final" (as there are no big issues whatsoever), so discussing about not having uninstall-codes for "pre-release versions" doesn't make much sense.

Well change it then. :p

Andreas 11-22-2005 02:30 PM

Delete HKLM or HKCR and you loose LOTS of data ;)

dethfire 11-22-2005 07:17 PM

Database error in vBulletin 3.5.1:

Invalid SQL:

SELECT journal_entries.entry_id, journal_entries.entrytitle,
journal_entries.entrytext, journal_entries.mood, journal_entries.np, journal_entries.allowbuddies,journal_entries.entry date,
journal_entries.entry_totalvotes, journal_moods.mood_name, journal_entries.ipaddress,journal_moods.mood_image , journal_entries.entry_totalrating,
journal_entries.private, journal_entries.whocanview,
COUNT(journal_comments.comment_text) AS comments
FROM journal_entries AS journal_entries
LEFT JOIN journal_comments AS journal_comments ON (journal_entries.entry_id=journal_comments.entry_i d)
LEFT JOIN journal_moods AS journal_moods ON (journal_moods.mood_id=journal_entries.mood)
WHERE journal_entries.journal_id=2
AND entry_active='1'
AND (journal_entries.private != 1 OR FIND_IN_SET('1', journal_entries.allowedusers))
GROUP BY journal_entries.entry_id
ORDER BY entrydate DESC
LIMIT 0,10;

MySQL Error : Unknown column 'journal_entries.np' in 'field list'
Error Number : 1054
Date : Tuesday, November 22nd 2005 @ 02:17:07 PM
Script : http://www.physicsforums.com/journal...howjournal&j=2
Referrer : http://www.physicsforums.com/journal.php
Classname : vb_database

Andreas 11-22-2005 07:33 PM

Did you import the product XML?

dethfire 11-22-2005 07:34 PM

Quote:

Originally Posted by Andreas
Did you import the product XML?

yeah twice, overwriting the original, the product info screen says it's at beta 1

Andreas 11-22-2005 07:36 PM

Change the version number to "1.0.2 Alpha 3" and import again.
If it still does not work, send me a PM with an ACP login.

dethfire 11-22-2005 07:48 PM

Quote:

Originally Posted by Andreas
Change the version number to "1.0.2 Alpha 3" and import again.
If it still does not work, send me a PM with an ACP login.

ok that worked, I understand why now, thanks

Reeve of shinra 11-22-2005 09:58 PM

I saw that "# It is not recommended to use mySQL 4.1+" -- is that still true?

I am running 4.1.1 and would like to use this on a new site running 3.5

dethfire 11-22-2005 10:32 PM

Quote:

Originally Posted by Reeve of shinra
I saw that "# It is not recommended to use mySQL 4.1+" -- is that still true?

I am running 4.1.1 and would like to use this on a new site running 3.5

I'm running 4.0.16 and it works just fine

Reeve of shinra 11-22-2005 10:36 PM

yeah but he is saying NOT to use anything above 4.1 which I am ;)

Andreas 11-22-2005 11:18 PM

Try it. If you get mySQL errors about conflicting collations it does not work, otherwise it does ;)

Paul M 11-23-2005 12:25 AM

Quote:

Originally Posted by Andreas
Try it. If you get mySQL errors about conflicting collations it does not work, otherwise it does ;)

As I recall, that mysql bug is fixed (around version 4.1.12 ?).

PixelFx 11-23-2005 01:15 AM

Quote:

Originally Posted by Paul M
As I recall, that mysql bug is fixed (around version 4.1.12 ?).

it works good, got it installed on my site now, :D with vbuddy system as well :D

I'm using php 4.4.1 and mysql 4.1.15 :D xp pro os .. I'm sure red hat or other would work just as well :D

lazytown 11-23-2005 04:35 AM

Bug Report:

Even if I have the option within vbulletin enabled to allow users to change their rating vote, users cannot change them for journals. Can this be corrected?

Thanks -vissa

Chadi 11-23-2005 04:51 AM

Quote:

Originally Posted by chadi
How do I change the dark gray color in the journal comment list (see attached) to my alt1 color (the light blue area you see)?


Someone please help me :) 3 pages gone and no response to mine.

Thanks

Dreiko 11-23-2005 08:27 AM

I wanna know how to show an icon in the postbit that not just displays that you have a journal, but to change to another icon when the journal contains new entries

I really wanna do this but I don't know how to :ermm:

funinthesun 11-23-2005 09:36 AM

I've just installed this and noticed afterwards that it's not compatible with mySQL 3. However it all seems to look ok? What won't work with mySQL 3? Where will it go wrong lol? I'm just wondering if maybe it's going to work ok? If not, guess I'm going to have to uninstall it!

funinthesun 11-23-2005 09:41 AM

Ok, I can create a journal, post comments, delete comments and journal. Can you tell me what it is about this hack that won't work with mySQL 3 please to save me having to try it all out lol. Thanks :D

Devil006 11-23-2005 09:55 AM

<font color="RoyalBlue">Sorry I have a problem, what's somebody can help me pleaz? The installation occurred well, all is correct but when I click on it, I don't have the permission to reach it: ( why? thank you in advance</font>

thank you still Andreas for this great hack

Andreas 11-23-2005 12:31 PM

If you don't have permission, then give yourself permission :) (through ACP/Usergroups)

@funinthesun
The upgrade code does not work properly without at least mySQL 4.0.4.
Except that it works fine on mySQL 3.
However, I strongly recommend to upgrade mySQL, as newer versions give much better performance and include things like fulltext search, multitable updates (which is why the upgrade code does not work on mySQL 3), etc.

@vissa
The vBulletin setting for changing votes applies to vBulletin (eg. threads), not to Journals.
Though I might consider such an option (I need a feature tracker ...)

@chadi
You are not using Beta 1, or you are running customized templates => upgrade and/or revert templates.

Vizionz 11-23-2005 12:33 PM

in the member info template you added a ciode to show there journal stuff. and there latest journal. anyway to add the latest 5 instead of just the last one

Rich 11-23-2005 03:53 PM

Hello,

I searched this thread but I did not find the asnwer to this question:

I created moods, and everything works except in the dropdown, they don't display.

I have that same problem. They are "there" as I can select one and it will display, but the text isn't visible. Its as if it is transparent. This makes it difficult as you never what "mood" you are actually selecting. They all went through fine via the acp and like I stated, they ARE there.

**EDIT - Needed to refresh a few times and they started displaying.***

dn lodge 11-23-2005 06:30 PM

Ok I have the same problem as Devil006.

I installed everything, and no errors or anything, but it says i dont have the permissions. There is NO link the the journal admin in ASP, I looked everywhere, and there is NOTHING about the journal in usergroup setting and permissions. I'm not a noob so dont tell me i just dont see it, i've been using vB a long time, and the link isnt there. (sorry if I sound a little mean, which i'm not trying to sound) I just dont want to waste time with the responce, as I'm eager to get it working!

www.dnlodge.com <--

cYa

weaver 11-23-2005 09:04 PM

I see admin options for journals in my usergroups, but I don't have any additional vbjournal settings in my ACP. I've checked the vbulletin options section as well as the navigational links on the left sidebar. I've logged out and then back into the admin panel to refresh the frame. I don't see any vbjournal settings (e.g. creating moods) other than the usergroup ones.

weaver 11-23-2005 09:08 PM

Quote:

Originally Posted by dn lodge
Ok I have the same problem as Devil006.

I installed everything, and no errors or anything, but it says i dont have the permissions. There is NO link the the journal admin in ASP, I looked everywhere, and there is NOTHING about the journal in usergroup setting and permissions. I'm not a noob so dont tell me i just dont see it, i've been using vB a long time, and the link isnt there. (sorry if I sound a little mean, which i'm not trying to sound) I just dont want to waste time with the responce, as I'm eager to get it working!

www.dnlodge.com <--

cYa

Check within each specific usergroup. There should be a section at the very bottom for the journal settings.

Wordplay 11-23-2005 09:35 PM

why is it not recommended to use mySQL 4.1+? i'm on 4.1.13-standard-log what problems would i be facing in that case?

Andreas 11-23-2005 09:41 PM

@dn_lodge
The permission setting are in usergroup manager. If they are not there, you did install it incorrectly.

@weaver
The navigation links are in the left frame. If they are not there you installed it incorrectly.

@Wordplay
mySQL errors about conflicting collations.

BrandiDup 11-23-2005 09:45 PM

Quote:

Originally Posted by dn lodge
Ok I have the same problem as Devil006.

I installed everything, and no errors or anything, but it says i dont have the permissions. There is NO link the the journal admin in ASP, I looked everywhere, and there is NOTHING about the journal in usergroup setting and permissions. I'm not a noob so dont tell me i just dont see it, i've been using vB a long time, and the link isnt there. (sorry if I sound a little mean, which i'm not trying to sound) I just dont want to waste time with the responce, as I'm eager to get it working!

www.dnlodge.com <--

cYa

For setting permissions, you need to go to your usergroup manager, then edit usergroup, then scroll down towards the bottom. You'll see options for the journal permissions. Edit permissions for each usergroup.

if you don't see it there, then you've done something wrong during the installation :ermm:

weaver 11-23-2005 10:39 PM

Quote:

Originally Posted by Andreas
@weaver
The navigation links are in the left frame. If they are not there you installed it incorrectly.

I've since read in this thread that bitfield_journalhack.xml should be imported before installing the product. Is that still the case or is that unnecessary in the newer version?

Andreas 11-23-2005 10:50 PM

bitfield_journalhack.xml can't, couldn't and can never be imported.
But it has to be uploaded before you import the product XML.

weaver 11-23-2005 10:52 PM

Quote:

Originally Posted by Andreas
bitfield_journalhack.xml can't, couldn't and can never be imported.
But it has to be uploaded before you import the product XML.

I followed the instructions in the readme file. All of the files were uploaded before I imported the product. :ermm:

ETA: I don't know if this makes a difference but the first time I installed this I uploaded the product through the product manager by browsing to where it was located on my hard drive. This second time I imported it through the server. The journal navigation is now in the ACP.


All times are GMT. The time now is 08:38 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.02461 seconds
  • Memory Usage 1,836KB
  • 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
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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