Attribute mod error not working like it should!

master412160

Seasoned Veteran
Joined
Dec 5, 2009
Messages
3,718
Reaction score
4
FP$
1,428
General Error
SQL ERROR [ mysqli ]

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

SQL

INSERT INTO alvt_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 (33, 2, 0, '', 'It\'s All About Music', '', '', '', 7, '', '', '', 7, '', '', '', 0, 1, 0, 0, 1, 0, 0, 7, 7, 1, 0, 49, '35', 36)

BACKTRACE


FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()

FILE: includes/acp/acp_forums.php
LINE: 1048
CALL: dbal_mysqli->sql_query()

FILE: includes/acp/acp_forums.php
LINE: 203
CALL: acp_forums->update_forum_data()

FILE: includes/functions_module.php
LINE: 516
CALL: acp_forums->main()

FILE: adm/index.php
LINE: 79
CALL: p_master->load_active()

help please I can't use a link forum it always asks me to enable the attribute mod how to I fix it that I don't need to enable it every time on every forum ? On a link forum you can't btw so how do I tell the code in the mod it is k that it is disabled on some forums ?
 
I can't follow the guide or anything I just can't do it it won't let me extract it.

Update Followed it but still have the error.
 
Go into phpMyAdmin and exicute the following SQL queries...

Code:
INSERT INTO alvt_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 (33, 2, 0, '', 'It\'s All About Music', '', '', '', 7, '', '', '', 7, '', '', '', 0, 1, 0, 0, 1, 0, 0, 7, 7, 1, 0, 49, '35', 36)

If that doesn't work, I'm guessing this error is MOD related? If so, you need to ask the MOD Author as they would have a better understanding of the problem.
 
the error is caused by a mod yes. I will try that out tomorrow but before I do I will take a backup in case something goes wrong.

I guess I shall contact him if what you are saying does not work.
 
Run this in Phpmyadmin
Code:
    ALTER TABLE phpbb_forums CHANGE attributes_selected attributes_selected TEXT CHARACTER SET utf8 COLLATE utf8_bin NULL;
 
Back
Top Bottom