Warning: The author of this contribution does not provide support for it anymore.

Avatar of poster on Index and Viewforum

Field 'forum_last_poster_avatar' doesn't have a default valu - Avatar of poster on Index and Viewforum

Field 'forum_last_poster_avatar' doesn't have a default valu

by AnabolicCommunity » Sat Nov 17, 2012 5:47 am

I installed this mod and now I can not create new forums. I get this error message. I tried the mysql_updater.php for v3.0.11. and it did not work.


Return to the index page
General Error
SQL ERROR [ mysqli ]

Field 'forum_last_poster_avatar' doesn't have a default value [1364]

SQL

INSERT INTO phpbb_forums (parent_id, forum_type, forum_status, forum_parents, forum_name, forum_link, forum_desc, forum_desc_uid, forum_desc_options, forum_desc_bitfield, forum_rules, forum_rules_uid, forum_rules_options, forum_rules_bitfield, forum_rules_link, forum_image, forum_style, display_subforum_list, display_on_index, forum_topics_per_page, enable_indexing, enable_icons, enable_prune, prune_days, prune_viewed, prune_freq, forum_options, forum_flags, left_id, right_id) VALUES (0, 1, 0, '', 'Test', '', '', '', 7, '', '', '', 7, '', '', '', 0, 1, 0, 0, 1, 0, 0, 7, 7, 1, 0, 48, 39, 40)

BACKTRACE

FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()

FILE: [ROOT]/includes/db/dbal.php
LINE: 757
CALL: trigger_error()

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

FILE: [ROOT]/includes/acp/acp_forums.php
LINE: 1019
CALL: dbal_mysqli->sql_query()

FILE: [ROOT]/includes/acp/acp_forums.php
LINE: 188
CALL: acp_forums->update_forum_data()

FILE: [ROOT]/includes/functions_module.php
LINE: 507
CALL: acp_forums->main()

FILE: [ROOT]/adm/index.php
LINE: 74
CALL: p_master->load_active()


I look forward to your reply as my site is live and active.
AnabolicCommunity
Registered User
Posts: 12
Joined: Sat Nov 17, 2012 4:44 am

Re: Field 'forum_last_poster_avatar' doesn't have a default

by TheLaughingMan » Wed Nov 21, 2012 8:50 pm

I have the same issue, I tried to update the column to have a default value but it wont let me. Says that it can't have a default value.
TheLaughingMan
Registered User
Posts: 3
Joined: Sun Nov 18, 2012 9:41 am

Re: Field 'forum_last_poster_avatar' doesn't have a default

by cpt_jack » Tue Nov 27, 2012 11:01 am

I add my issue here as it sounds similar.

This mod worked fine for quite a while. But after working on an issue of one of your other mods (QTE) I cannot create new topics now. Because of this error


Code: Select all

SQL ERROR [ mysqli ]

Field 'topic_first_poster_avatar' doesn't have a default value [1364]

SQL

INSERT INTO phpbb_topics (topic_poster, topic_time, topic_last_view_time, forum_id, icon_id, topic_approved, topic_title, topic_first_poster_name, topic_first_poster_colour, topic_type, topic_time_limit, topic_attachment, topic_attr_id, topic_attr_user, topic_attr_time) VALUES (2, 1354011104, 1354011104, 8, 0, 1, 'blubb', 'Cpt. Jack Sparrow ☠', '3333FF', 0, 0, 0, 0, 0, 0)

BACKTRACE

FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()

FILE: [ROOT]/includes/db/dbal.php
LINE: 757
CALL: trigger_error()

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

FILE: [ROOT]/includes/functions_posting.php
LINE: 2296
CALL: dbal_mysqli->sql_query()

FILE: [ROOT]/posting.php
LINE: 1213
CALL: submit_post()


This occurs when I want to create a new topic. Answering an existing topic is no problem.

I had to remove the mod in order to keep my board live and working, but I would like to have this mod back.
cpt_jack
Registered User
Posts: 12
Joined: Wed May 30, 2012 5:38 pm

Re: Field 'forum_last_poster_avatar' doesn't have a default

by w5hro » Mon Dec 24, 2012 9:50 pm

Has anyone solved this problem. This MOD has a serious issue because it corrupts things as the last person who posted described. Its completely useless until the issue is corrected. I had to remove the MOD from my board for this very reason.
User avatar
w5hro
Registered User
Posts: 100
Joined: Sun Jan 16, 2011 4:40 pm

Re: Field 'forum_last_poster_avatar' doesn't have a default

by Valdoe » Tue Jan 01, 2013 6:23 am

Got it to work fine BUT.. the only problem I have is that you cannot create any new forums or sub forums... I get error messages as first post...

Like this mod but .. had to un-install so I could create more forums... is there a fix for this?
User avatar
Valdoe
Registered User
Posts: 29
Joined: Wed Aug 17, 2011 1:21 pm
Location: Brisbane AUSTRALIA
Name: Val Bugeja

Re: Field 'forum_last_poster_avatar' doesn't have a default

by nomad05 » Thu Jan 03, 2013 12:15 am

Yep I just checked mine and I get the same error. You would think this flaw would have been picked up earlier, and solved by someone else?
nomad05
Registered User
Posts: 16
Joined: Fri Dec 28, 2012 10:04 am

Re: Field 'forum_last_poster_avatar' doesn't have a default

by nomad05 » Thu Jan 03, 2013 12:35 am

Ah sorry there's a fix for this I didnt notice

viewtopic.php?f=70&t=2162268

Implemented and tested and now I can create forums.
nomad05
Registered User
Posts: 16
Joined: Fri Dec 28, 2012 10:04 am

Re: Field 'forum_last_poster_avatar' doesn't have a default

by w5hro » Thu Feb 21, 2013 6:11 pm

The fix for not being able to create forums is below.

includes/acp/acp_forums.php

Find:

Code: Select all

                    // On add, add empty forum_options... else do not consider it (not updating it)


Add Before:

Code: Select all

//-- mod : apiv ----------------------------------------------------------------
//-- add
                    $forum_data += array('forum_last_poster_avatar' => '');
//-- fin mod : apiv ------------------------------------------------------------
User avatar
w5hro
Registered User
Posts: 100
Joined: Sun Jan 16, 2011 4:40 pm

Re: Field 'forum_last_poster_avatar' doesn't have a default

by Stile Teckel » Tue Jun 11, 2013 10:10 am

Thank for the last post with the fix. saved me a lot of stress!
Stile Teckel
Registered User
Posts: 26
Joined: Tue Jun 11, 2013 6:00 am

Re: Field 'forum_last_poster_avatar' doesn't have a default

by mr.ruf » Tue Jan 14, 2014 6:45 pm

w5hro wrote:The fix for not being able to create forums is below.

includes/acp/acp_forums.php

Find:

Code: Select all

                    // On add, add empty forum_options... else do not consider it (not updating it)


Add Before:

Code: Select all

//-- mod : apiv ----------------------------------------------------------------
//-- add
                    $forum_data += array('forum_last_poster_avatar' => '');
//-- fin mod : apiv ------------------------------------------------------------


thanks you are great !
User avatar
mr.ruf
Registered User
Posts: 136
Joined: Thu Apr 04, 2013 11:12 pm
Location: PuErTo RiCo
Name: Harold