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)

hsl.com 01-01-2006 03:50 PM

What's up with this?!?!?


Quote:

Parse error: parse error, unexpected T_PRIVATE, expecting ']' in /home/darius12/public_html/forum/journal.php(978) : eval()'d code on line 48

scottct1 01-02-2006 02:00 AM

For some reason my MEMBERINFO stuff is not showing.

I am looking at it as someone with a journal.

Even if I remove the <if condition="$show[journalinfo]"> and the </if> the info shows up however it contains no information.

Also the link to show the members link to the journal does not work is shows http://www.satelliteguys.us/journal....showjournal&j= (note no journal number at the end)

Everything else works fine any ideas?

Lottis 01-02-2006 06:16 AM

Quote:

Originally Posted by hsl.com
What's up with this?!?!?

I found one answere;Seems to be issues with template conditionals which currently can't be fixed.
Will take care in future versions

kgirl 01-02-2006 02:22 PM

I don't seem to have the Journal settings in the ACP, so I can't edit anything apart from the usergroups.

I've reinstalled it following the instructions to the letter, and re-imported the product and it still doesn't show up. The cpnav_journalhack.xml is in includes/xml on my server.

I can't see whats gone wrong - can anyone shed any light on it please??

lazytown 01-02-2006 09:41 PM

So how do we allow our moderators to edit journal entries and comments without giving them full admin access? My mods have some work to do. :)

Thanks -vissa

scottct1 01-02-2006 09:44 PM

Anyone have any ideas why this is not working in my MEMBER info for the users profile?

lazytown 01-02-2006 10:06 PM

In the bug database list, I see reference to a version "=> 1.0.2 Beta 2 " with some fixes. Any chance we can have that uploaded here to VB.org?

-vissa

lazytown 01-02-2006 10:17 PM

Strange... I see these entries in the bitfield_journalhack.xml file
PHP Code:

    <bitfield name="caneditothersentries" group="journal_permissions" phrase="can_edit_others_entries">4096</bitfield>
    <
bitfield name="candeleteothersjournal" group="journal_permissions" phrase="can_delete_others_journal">8192</bitfield>
    <
bitfield name="candeleteothersentries" group="journal_permissions" phrase="can_delete_others_entries">16384</bitfield--> 

However, they do not appear in the usergroup settings (and I am super admin)
Any idea why? Do others see these options withou their usergroup settings?
-vissa

Lpspider 01-03-2006 01:03 AM

quick question...

is there an [easy] way I can universally edit the word "journal" (journal, journal entries, etc) to the word "blog"? I've done so on the navbar, but I'd like to do so in the profile as well.

gibhut 01-03-2006 04:29 PM

You can make a post to anyone's blog if you know their blog id

In journal.php there is an error in the Function.
on line 94

PHP Code:

function journalist_check($jid,$checkid)
{
    global 
$db;
    
$check$db->query_first("SELECT journalist_id FROM " TABLE_PREFIX "journals WHERE journal_id='".$jid."'");
    if(
$check['journalist_id']!=$checkid)
    {
        return 
"false";
    }
    else
    {
        return 
"true";
    }



you are returning the string false and true. so the
!journalist_check will be bypassed. it needs to be

PHP Code:

function journalist_check($jid,$checkid)
{
    global 
$db;
    
$check$db->query_first("SELECT journalist_id FROM " TABLE_PREFIX "journals WHERE journal_id='".$jid."'");
    if(
$check['journalist_id']!=$checkid)
    {
        return 
false;
    }
    else
    {
        return 
true;
    }




All times are GMT. The time now is 05:05 PM.

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.02281 seconds
  • Memory Usage 1,754KB
  • 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
  • (3)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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