[RC] phpBB Blog

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Get Involved
lustucrus
Registered User
Posts: 45
Joined: Tue Dec 06, 2011 12:39 pm

Re: [RC] phpBB Blog 1.0.3

Post by lustucrus »

im not able too post in a specific forums whit 1.0.2 but i use them anyway

thank for the update :D

thank for your good work i like it :P
User avatar
Ephemeraboy
Registered User
Posts: 333
Joined: Tue Dec 29, 2009 4:25 pm
Location: Bandung Kota Hujan
Name: Bernando Bona Tius Sianipar

Re: [RC] phpBB Blog

Post by Ephemeraboy »

i want to ask something
1. the bbcode images and url are not used on blog. isn't right? or those are bugs?
2. this mod conflict with user blog mod from exreaction (as using same table name).
is there any way to solve this?. i want this blog as frontpage forum article system and exreaction blog mod as user personal blog based system. oh forget me, it still in development stage :mrgreen:

suggestion maybe:
1. oh yeah maybe, recent comment and recent blog post on the blog side bar maybe?
2. limited tag display (doest it display all tag we make or the most used?)
3. dual column display maybe
4. friendly url
5. yearly archive system
sorry asking so much
thanks very much Unknown Bliss
My diary, my notepad, and my life on
http://www.bonatius.com
User avatar
FB92
Registered User
Posts: 181
Joined: Sun Oct 02, 2011 8:34 pm

Re: [RC] phpBB Blog

Post by FB92 »

Comment system now has the issue with the timestamp.
User avatar
FloridaMan339
Registered User
Posts: 112
Joined: Thu Jan 07, 2010 11:58 pm
Location: Fort Myers, Florida
Name: Randy Wood

Re: [RC] phpBB Blog

Post by FloridaMan339 »

Error when I tried to post a comment...

Image
Jabhi
Registered User
Posts: 572
Joined: Mon Feb 27, 2012 6:12 am

Re: [RC] phpBB Blog

Post by Jabhi »

^^^^

Did you download the latest version ?
https://github.com/downloads/phpBB-Blog ... -1.0.3.zip
Go phpBB go... Respected : Developers, Supporters.
User avatar
FloridaMan339
Registered User
Posts: 112
Joined: Thu Jan 07, 2010 11:58 pm
Location: Fort Myers, Florida
Name: Randy Wood

Re: [RC] phpBB Blog

Post by FloridaMan339 »

I'm using the latest version. I even uninstalled it and reinstalled it today, and am still getting the error.
Comments DO appear after getting the error message posted previously - even after the error screen!

Just noticed another thing. In the ACP, when I click on the "check version" link of the Blog, it tells me that I don't have permission, and knocks me off the board - Then I have to relog in. The ACP lets me do everything else.

BTW, as board founder, I have God Permissions. I have it set up so I can do anything - every permission available is set to yes.
mikesell
Registered User
Posts: 3
Joined: Tue Jun 26, 2012 2:29 pm

Unapproved Comment

Post by mikesell »

I have a comment that is showing unapproved and there is no way for me to approve it because within the blog section there is not open for a moderator panel. Ive checked settings and I have all PHPbb blog setting enabled for myself and still unable to see the moderator panel or approve the comment. Plz Help. Thx
GameMASTER0809
Registered User
Posts: 1
Joined: Thu Jul 26, 2012 9:40 am

Re: [RC] phpBB Blog

Post by GameMASTER0809 »

Works nearly perfect for me, except this: when i try to choose one of the tags from the tag cloud the following error occurs:

Image

Code: Select all

SQL ERROR [ mysqli ]

Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause [1140]

SQL

SELECT b.*, COUNT(c.cmnt_id) AS cmnt_count, ct.cat_title, u.username, u.user_colour FROM (phpbb_blog b CROSS JOIN phpbb_blog_comments c CROSS JOIN phpbb_blog_categories ct CROSS JOIN phpbb_users u) WHERE ct.cat_id = b.blog_cat_id AND c.cmnt_blog_id = b.blog_id AND u.user_id = b.blog_poster_id AND b.blog_tags LIKE '%Test%' ORDER BY b.blog_id DESC

BACKTRACE

FILE: [ROOT]/includes/db/mysqli.php
LINE: 182
CALL: dbal->sql_error()

FILE: [ROOT]/blog.php
LINE: 678
CALL: dbal_mysqli->sql_query()
any ideas?
van de werde
Registered User
Posts: 42
Joined: Mon Oct 05, 2009 9:35 am

Re: [RC] phpBB Blog

Post by van de werde »

I have same problem, me not show error - only empty post where author is "guest"

One idea: Is possible showing tags as a cloud? If i have later aprox 1000 tags, then page is very long.
Sorry for my poor english...
Wedding shop
ABDev
Registered User
Posts: 909
Joined: Sun Aug 21, 2005 9:29 pm
Location: France
Name: Adrien Bonnel

Re: [RC] phpBB Blog

Post by ABDev »

Hi,
There is an issue when PHP 5.4 is used :
Fatal error: Call-time pass-by-reference has been removed in [root]/includes/mods/functions_blog.php on line 165
To fix that :

Code: Select all

#
#-----[ OPEN ]------------------------------------------------
#
includes/mods/functions_blog.php
#
#-----[ FIND ]------------------------------------------------
#
        $s = submit_post('post', $subject, $user->data['username'], POST_NORMAL, &$poll, &$data);
#
#-----[ REPLACE WITH ]----------------------------------------
#
        $s = submit_post('post', $subject, $user->data['username'], POST_NORMAL, $poll, $data);
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM  
User avatar
MichaelC
Consultant
Consultant
Posts: 3642
Joined: Mon Dec 21, 2009 3:36 pm
Location: London, UK
Name: Michael Cullum

Re: [RC] phpBB Blog

Post by MichaelC »

ABDev wrote:Hi,
There is an issue when PHP 5.4 is used :
Fatal error: Call-time pass-by-reference has been removed in [root]/includes/mods/functions_blog.php on line 165
To fix that :

Code: Select all

#
#-----[ OPEN ]------------------------------------------------
#
includes/mods/functions_blog.php
#
#-----[ FIND ]------------------------------------------------
#
        $s = submit_post('post', $subject, $user->data['username'], POST_NORMAL, &$poll, &$data);
#
#-----[ REPLACE WITH ]----------------------------------------
#
        $s = submit_post('post', $subject, $user->data['username'], POST_NORMAL, $poll, $data);
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM   
Thanks, I'll apply this fix shortly.
:)
Formerly known as Unknown Bliss.
Formerly Website Team Lead/Manager & Development Team.
Please don't PM me for support (or stuff that belongs in the forums or tracker) but otherwise feel free
User avatar
nextgen
Registered User
Posts: 2395
Joined: Mon Jul 26, 2010 10:58 pm
Location: Guatemala
Name: Melvin García

Re: [RC] phpBB Blog

Post by nextgen »

Any updates for this? :)
メルビン・ガルシア • nextgen SolutionsDDAnimeXenForo Hispano

Please do NOT contact for support via PM or email.
User avatar
MichaelC
Consultant
Consultant
Posts: 3642
Joined: Mon Dec 21, 2009 3:36 pm
Location: London, UK
Name: Michael Cullum

Re: [RC] phpBB Blog

Post by MichaelC »

Except maybe for ABDev's fix or a major feature I doubt there will be another release for this MOD on Olympus.
:)
Formerly known as Unknown Bliss.
Formerly Website Team Lead/Manager & Development Team.
Please don't PM me for support (or stuff that belongs in the forums or tracker) but otherwise feel free
User avatar
Mathieu M.
Registered User
Posts: 181
Joined: Tue Nov 02, 2010 11:42 am
Location: France 🇫🇷
Name: Mathieu

Re: [RC] phpBB Blog

Post by Mathieu M. »

Hello,

Any chance to have all BBcodes ? (IMG and URL are missing) Then, is there a way to allow BBcode for commenting ?

Edit :
And last but not least, I'm working on a template for my website and would apply a specific CSS class when user is viewing one category of your MOD... Is it possible to get something like <!-- IF SCRIPT_NAME eq blog and BLOG_CAT_ID eq 1 --> class="current"<!-- ENDIF --> ?


Thanks ;)
😄😄😍😄😄
ABDev
Registered User
Posts: 909
Joined: Sun Aug 21, 2005 9:29 pm
Location: France
Name: Adrien Bonnel

Re: [RC] phpBB Blog

Post by ABDev »

Hey,
I found another small error :

Code: Select all

#
#-----[ OPEN ]------------------------------------------------
#
blog.php
#
#-----[ FIND ]------------------------------------------------
#
        $sql = 'SELECT COUNT(cmnt_id) AS cmnt_count
        FROM ' . BLOG_CMNTS_TABLE . '
        WHERE cmnt_blog_id = \'' . $blog_id . '\' ' . (($perm != true) ? 'AND cmnt_approved = \'1\'' : '');
#
#-----[ REPLACE WITH ]----------------------------------------
#
        $sql = 'SELECT COUNT(cmnt_id) AS cmnt_count
            FROM ' . BLOG_CMNTS_TABLE . '
            WHERE cmnt_blog_id = ' . $blog_id . (($perm != true) ? ' AND cmnt_approved = 1' : '');
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM 

Return to “[3.0.x] MODs in Development”