vBulletin Modifications

Miscellaneous Hacks - VB3 port of Ryangel Journal Hack

Welcome to vBHackers.com! - vBHackers Updates:

Go Back   vBulletin Modifications > Forum Archives > vBulletin 3.0 Hack Releases

Reply
 
Thread Tools Search this Thread
Download Options
You Must Register First
To Download This Modification

Bugs
No bugs found in the system. If you have found a bug, please report a bug here
Submit A Bug | View All Bugs

Advertisement
  
Not Supported (Beta Mode)
[vB 3.0.7] Miscellaneous Hacks - VB3 port of Ryangel Journal Hack (36)
Released: 07-22-2004, 12:37 PM
Modification Information:
Author: Reeve of Shinra
Last Online: 08-16-2006
Hack Version: 1.1 Installer Included: 0 Additional queries added to database: 0
New Templates: 2 Template Edits: 1 File Edits: 0
New Files: 0 New Phrases: 0 Installation Time (In Minutes): 5

This is the VB3 port of the Journal Hack created originally by Ryangel for VB2. It was hacked by Wonko the Sane from www.shinraonline.com for our own needs and further optimized and developed by Aiky, Oblivion Knight, Sabret00the and other members of EverythingVB.com.

EverythingVB.com will be down as it undergoes an upgrade and we hope to continue this project here at vbhacks.us (which opened after we started project).

-----------------------------------------------------------------

Attached is the original journal thread from everythingvb.com for reference should anyone have problems that were previously answered along with the two latest releases of the journal hack files. Oblivion Knight explains the differences between the two as:

Quote:
1.2b contains the "cleanest" code (optimized by Bane), and is based on sabre's templates and also contains a recent MySQL fix done by me (which is why 1.1d was released).

1.1d contains the original templates by myself, but you'd probably be better off using the journal.php file contained in the other zip since there is a lot of redundant code in this one..
-----------------------------------------------------------------

Things to note:

* The journal hack works and has been successfully installed by alot of people, including myself on two clean installs. There are ALOT of manual queries and file edits... just take your time and be thurough about it and you shouldn't have a problem. If you do have an issue, you probably missed one of the edits, go back and check it and read the original evb thread (attached) to see if its been covered. Otherwise feel free to post and we'll see if we can help.

* The phrases and templates currently need to be manaully installed. An automated way of adding them has not yet been currently added. I would suggest adding the multiple phrases hack on vb.org to make your life a little easier.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Add a Comment!
Old 07-30-2004, 03:59 AM   #11
Charter Member
Join Date: Jul 2004
blueuniverse is on a distinguished road

Default

When running this bit,

Quote:
Otherwise, these are the tables that the journal needs in order to
exist and function correctly:

--- SQL START ---

CREATE TABLE journal (
'journalid' int(11) NOT NULL auto_increment,
'title' text NOT NULL,
'description' text NOT NULL,
'imagename' text NOT NULL,
'entries' int(11) NOT NULL default '0',
'views' int(11) NOT NULL default '0',
'enabled' smallint(6) default '0',
'timestamp' int(11) NOT NULL default '0',
'userid' int(11) NOT NULL default '0',
'mood' text NOT NULL,
'np' text NOT NULL,
PRIMARY KEY ('journalid')
) TYPE=MyISAM ;

--- SQL END ---
phpmyadmin says

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''journalid'int( 11 ) NOT NULL AUTO_INCREMENT ,
'title'text





Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 07-30-2004, 08:16 AM   #12
Oblivion Knight's Avatar
Join Date: May 2004
Real Name: Andy
Location: England, UK
Oblivion Knight is on a distinguished road

Default

Run this instead..

[SQL] CREATE TABLE journal (
journalid int(11) NOT NULL auto_increment,
title text NOT NULL,
description text NOT NULL,
imagename text NOT NULL,
entries int(11) NOT NULL default '0',
views int(11) NOT NULL default '0',
enabled smallint(6) default '0',
timestamp int(11) NOT NULL default '0',
userid int(11) NOT NULL default '0',
mood text NOT NULL,
np text NOT NULL,
PRIMARY KEY (journalid)
) TYPE=MyISAM ;[/SQL]




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-30-2004, 10:32 PM   #13
Charter Member
Join Date: Apr 2004
Location: USA
cody is on a distinguished road

Default

Great job, guys. Thanks!

Any progress on pagination of links to Journals? Lots of journals are gonna produce a very long list.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-30-2004, 10:59 PM   #14
Charter Member
Join Date: Jul 2004
Matias is on a distinguished road

Default

i think pagination its done...

please check the thread attach at first post.
i got journal pagination on my test forum...
i think u need edit somethin on journal.php but i dont remember what ...
as i say check the thread attach on zip at 1st post of this thread.

Regards




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-31-2004, 12:19 PM   #15
Charter Member
Join Date: Apr 2004
Location: USA
cody is on a distinguished road

Default

I re-read the thread and I do not think the "issue" is resolved.

What I am referring to is the list of journals. I believe that one version lists them all (l..ong list if many journals) and the other lists 25 with no link to the next batch of 25, etc.

Am I wrong?




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-01-2004, 10:57 AM   #16
Oblivion Knight's Avatar
Join Date: May 2004
Real Name: Andy
Location: England, UK
Oblivion Knight is on a distinguished road

Default

Quote:
Originally Posted by cody
What I am referring to is the list of journals. I believe that one version lists them all (l..ong list if many journals) and the other lists 25 with no link to the next batch of 25, etc.

Am I wrong?
Nope, you're 100% correct..
I haven't quite mastered the art of pagination unfortunately..




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-01-2004, 01:31 PM   #17
Charter Member
Join Date: Apr 2004
Location: USA
cody is on a distinguished road

Default

Quote:
Originally Posted by Oblivion Knight
Nope, you're 100% correct..
I haven't quite mastered the art of pagination unfortunately..
Well, I gather it's a royal pain for most coders. Maybe someone will be inspired to help out with an add-on. You guys have been soooo generous with your work and time already!

Is it possible to add a link to a user's journal on the member list by any chance?




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-03-2004, 05:49 AM   #18
Charter Member
Join Date: Jul 2004
blueuniverse is on a distinguished road

Default

Do you need to change anything to be able to delete journal entries, because I'm set as an admin, I can edit normal posts, but I can't edit or delete journal entries or comments.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-13-2004, 01:40 PM   #19
Charter Member
Join Date: Apr 2004
Location: USA
cody is on a distinguished road

Default

Because some have expressed a desire to port to AN-net's Journal for vB3 when completed ... he is approaching beta ... just a heads-up for those who are interested.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-13-2004, 02:35 PM   #20
Charter Member
Paul's Avatar
Join Date: Mar 2004
Real Name: Paul Dobbins
Location: Beaverton, OR, USA
Paul is an unknown quantity at this point

Default

Well ppl have wanted a journal since v3 came out and I've needed one for quite sometime so this is does exactly what i need




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Install System Part 2 Ken Iovino Announcements 10 05-19-2005 10:40 AM
Port & Polish Journal Hack, please! cody vBulletin Modification Requests 0 04-19-2004 02:40 AM


All times are GMT -3. The time now is 11:21 AM.


SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc. (Patent Pending)