Mini Knowledge Base block for Mini Knowledge Base v 0.2.8

Forum rules
This forum is not for support requests.

Only post Modifications for Board3 Portal 1.0.x in this forum.

the.ronin
Valued Contributor
Posts: 64
Joined: 30. October 2008 16:20

Re: Mini Knowledge Base block for Mini Knowledge Base v 0.2.8

Post by the.ronin »

Hmmm ... can you elaborate on that Kevin? The kb tables appear to be in utf8 from my phpMyAdmin. Is that what you meant?

Image
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Mini Knowledge Base block for Mini Knowledge Base v 0.2.8

Post by Kevin »

Yes. Switch it over to utf8_bin - and check the fields included within these tables and switch them over if needed.
Don't forget to create a backup before!
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!

RoxRio
Active Member
Posts: 3
Joined: 22. October 2008 23:21

Re: Mini Knowledge Base block for Mini Knowledge Base v 0.2.8

Post by RoxRio »

hum, for me don't work. i don't know why, but anything appear in the block, except the title of block. :roll:

begemont
Active Member
Posts: 20
Joined: 6. June 2008 01:30

Re: Mini Knowledge Base block for Mini Knowledge Base v 0.2.8

Post by begemont »

Kevin wrote:I get the "Undefined variable: s_reported"
try
open kb_show.php

find

Code: Select all

    $s_reported = ($report_id) ? true : false;
} 
after add

Code: Select all

else
{
    $s_reported = false;
} 
find

Code: Select all

    'POST_URI'                => ($row['post_id'] != 0 && $row['topic_id']) ? generate_seourl_topic($row['topic_id'], false, $row['forum_id']) : '',
    //'POST_URI'                => ($row['post_id'] != 0) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id']) : '',  
replace with

Code: Select all

    //'POST_URI'                => ($row['post_id'] != 0 && $row['topic_id']) ? generate_seourl_topic($row['topic_id'], false, $row['forum_id']) : '',
    'POST_URI'                => ($row['post_id'] != 0) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id']) : '', 
Locked

Return to “board3 Portal v1.0.x - Modifications in Dev”