Quote:
Originally Posted by AN-net
actually im working on it right now
um some questions though since i couldn't install the port of ryangle's fully, what the database field 'title' for? is it like User's Journal? or is it like whatever the user wanted to call their journal?
|
Wow, that is some great news!
What is title? It actually depends on which table you mean:
1. journal.
title = memobug's Journal
that is the journal name although it wasn't user configurable, it was set to the username's Journal
2. journal_entry.
title = Late Night!
that is the title of that entry
3. journal_comments.
title = Re: Late Night!
that is the title of the comment - Re: ~~~~~~ was the default
If you have any other questions, please ask. I have hacked the Ryangel port to death (to life?), so I have some familiarity with it.
I really hope the structure of mine is the roughly the same as yours? I have 3 tables:
journal
journalid int(11)
title text
description text (unused?)
imagename text (unused?)
entries int(11)
views int(11)
enabled smallint(6)
timestamp int(11)
userid int(11)
journal_entry
entryid int(11)
title text
entry text
private smallint(6)
timestamp int(11)
userid int(11)
journalid int(11)
displayorder int(11)
comments int(11)
journal_comments
commentid int(11)
title varchar(70)
comment text
timestamp int(11)
entryid int(11)
journalid int(11)
userid int(11)
displayorder int(11) (seems to be always zero - unused?)
Thanks & regards,
Matt