![]() |
i've searched through this thread to find some answers to a question i've been meaning to ask. no luck so far, but how would i go about adding some info to the postbit legacy to show the number of journal entries a person has done with a link to that persons journal? like this
Journal Entries: 4 <- link to journal any ideas? |
Thank for the mod - saving my ass as we speak
|
I'm getting the same problem with the BBCode not working
I've done what people have suggested (saving the admin settings, saving usergroups) but nothing seems to work? |
Quote:
|
I jumped into this thread in august when I was on my first server and it didn't work cuz our server was running PHP5. A few months later, we switched to Host Monster = PHP4 and MySQL version 4.1.21-standard-log. Everything worked fine but I recently switched to Dreamhost because Dreamhost has unlimited cpu usage and Dreamhost is also = PHP4 but MySQL Version 5.0.24a-standard-log. The post below is the only thing I've found posted AFTER my last post that relates to my question:
Quote:
|
Quote:
But now I get an error similiar to the errors I got when I upgraded to php 5 Is there an alternative to this product? |
Quote:
**Edit** I'm not buying it due to it only being available for 3.6.x users and I'm NOT updating just for it. |
This works for me, a patch for the PHP5 problems
the problem comes from PHP5 having private and public are reserved words, so ive fixed those issues, i cant see anymore issues ive included all teh files, not just hte ones i patched, and it will overwrite parts of your database to solve issues with that too |
Quote:
Damn it. |
Quote:
|
Hi! My users love the journal. Their only complaint was that every time they posted an entry they had to post "updated my journal come see it" on a forum thread...
So I did this little plugin to show new entries https://vborg.vbsupport.ru/showthread.php?t=147664 I hope you guys like it :D |
Quote:
|
I'm still getting the following error: journal.php(985) : eval()'d code on line 48
|
I just get a white page when I try to view Journal Index.
I can edit my journal just once if I click My Journal but after I do it once it displays as a white page as well. |
Quote:
|
How can I set it up so i receive PM's on new comments in the journal entries.
|
Is there a way to convert / transform thread from a forum to journal?
I have users who used a ordinary Forum and build a thread as a diary, that I would like to move into vbJournal. |
Is anybody working on a script to migrate journals to the new official vBulletin Blog add-on?
ETA: Nevermind, I see that ImpEx can handle it. |
does this work with 3.6.8
|
I upgraded to php 5 and now my journal stopped working, started giving off this error
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in /home/user/public_html/journal.php(985) : eval()'d code on line 48 Anyone know of a fix? Line 985 in journal.php shows this Code:
$reccom['comment_text']= $bbcode_parser->do_parse($reccom['comment_text'], 0, $setting['allow_imgcode'], $setting['allow_smilies'], $setting['allow_bbcode']); |
just installed on vB 3.6.8
Code:
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in /home/.satai/bc3tech/eatoninside.com/journal.php(978) : eval()'d code on line 48 |
How do we attach pics? The attach image function dont seem to be working?
|
You all may be happy to know I've got this working for vb 3.6.8
To do so, perform the following additional template edits: in JOURNAL: find Code:
<div class="smallfont">$vbphrase[your_current_journal_status_is]: <if condition="$bbuserinfo[private]=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><if condition="$bbuserinfo[private]==''"><b><font color="orange">$vbphrase[non_existent]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if></if></div></td> Code:
<div class="smallfont">$vbphrase[your_current_journal_status_is]: <if condition="$bbuserinfo['private']=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><if condition="$bbuserinfo['private']==''"><b><font color="orange">$vbphrase[non_existent]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if></if></div></td> in journal_edit_entryinfo: find: Code:
<input type="checkbox" name="epriv" value="1" <if condition="$entryinfo[private]">checked="checked" </if>/>$vbphrase[make_this_entry_private] Code:
<input type="checkbox" name="epriv" value="1" <if condition="$entryinfo['private']">checked="checked" </if>/>$vbphrase[make_this_entry_private] in journalpage find: Code:
<b>$vbphrase[status]</b>: <if condition="$journalinfo[private]=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if> Code:
<b>$vbphrase[status]</b>: <if condition="$journalinfo['private']=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if> find: Code:
<input type="checkbox" name="jpriv" value="1" <if condition="$journalinfo[private]">checked="checked" </if>/>$vbphrase[make_this_journal_private] Code:
<input type="checkbox" name="jpriv" value="1" <if condition="$journalinfo['private']">checked="checked" </if>/>$vbphrase[make_this_journal_private] |
Hello,
I've installed this correctly but when attempting to read a users blog or add my own i get the following error: Code:
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in /home/danmil/public_html/profiles/journal.php(978) : eval()'d code on line 48 The only thing contained on this line is Code:
'journal_deletion_journal_confirmation', Thanks, Dan |
Sounds like an issue with the template.
You probably have a ' or " around a template variable. ie: it should be something like $var[whatever] and not $var['whatever'] |
Can someone please update this to work with PHP 5x?
|
Abomonation & chadi: Use the template changes bc3tech suggests here and it should work.
|
I enabled xcache hack here
https://vborg.vbsupport.ru/showthread.php?t=141005 now I get this when I go to "my journal" area Warning: unserialize() expects parameter 1 to be string, array given in /journal.php on line 115 Warning: Cannot modify header information - headers already sent by (output started at /home/user/public_html/includes/class_core.php:3118) in /includes/functions.php on line 2801 If I go to journal index I get this Warning: unserialize() expects parameter 1 to be string, array given in /journal.php on line 115 Anyone know how to fix this error? |
Installed on 3.6 and it works fine. I didn't do any template edits at all after finding that some of those edits referred to codes which don't exist on my board. Marked as installed.
|
Will a fresh install of this for 3.7.0 (Beta 5) work...or does this need to be rewritten for 3.7?
Thanks! :) |
I installed and uploaded everything and I get this error when I click the journal link:
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in /public_html/journal.php(564) : eval()'d code on line 188 |
Quote:
In journal_journalpage Find this: Code:
<div class="smallfont"> Code:
<div class="smallfont"> |
Quote:
|
Can anyone get this working in 3.7? I'm getting a blank page.
edit: remembered this thread, fixed it https://vborg.vbsupport.ru/showpost....postcount=1626 |
I'm trying to make sure that all the bbcode functions work within the journal section. All the other bbcode works but this one.
it is a hide function bbcode that allows one to collapse a post into a single line. This is useful for lengthy citations during debates. Code:
<div width="100%" class="alt2" onclick="spoiler(this);" style="border-collapse: collapse; border: solid thin black; padding: 8px;">{option} <span id="idTitle" class="alt1" style="border-collapse: collapse; width: 100%;"> <b> click to show</b> </span><div id="idSpoiler" style="display: none;">{param}</div></div> |
Quote:
I meant does the Journal system itself (this mod) work on 3.7.0? :) (Nothing about thread prefixes ;)) |
I got this working in 3.6.8 and 3.7, but I can't get comments. What did you guys do that got that part working?
|
I deleted this jounal from vB 3.54 version and get the following message via email. Does anyone know how to repair without shutting down the forum?
Quote:
|
Is anyone willing to port this over to 3.7 / 3.8? I'm willing to donate $25.
And no, I don't want to use the Vb Blog :) I like this instead. |
It would be a loooot of work to upgrade it, especially since it doesn't support php5. I'd strongly recommend vb blog or try and see if vbadvanced dymanics will be of use.
|
All times are GMT. The time now is 03:40 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|