Can anyone help me please?enkigur wrote:Hello,
how can I disable this again?
Can anyone help me please?enkigur wrote:Hello,
how can I disable this again?
undo whatever you did to enable it.enkigur wrote:Hello,
how can I disable this again?
enkigur wrote: Can anyone help me please?
Code: Select all
UPDATE phpbb_forums SET forum_flags = forum_flags &~64 WHERE forum_type = 1
Hi,JimA wrote:If you're using MySQL, this SQL query should enable Quick Reply in all forums.Code: Select all
UPDATE phpbb_forums SET forum_flags = forum_flags + 64 WHERE forum_type = 1 AND forum_flags & 64 <> 1
cYbercOsmOnauT wrote:The better way to do it (mySQL) isRegards,Code: Select all
UPDATE phpbb_forums SET forum_flags = (forum_flags | 64) WHERE forum_type = 1
Tekin
Code: Select all
UPDATE phpbb_forums SET forum_flags = (forum_flags | 64) WHERE forum_type = 1
Could be, but more likely the style you are using is not up to date. Please fill out the Support Request Template and post it back here to enable us to assist you better.Kampfbiene wrote:Could it be the corresponding code got lost in one of the preceding automatic updates?
Code: Select all
1391 Query UPDATE phpbb_config
SET config_value = '1'
WHERE config_name = 'allow_quick_reply'
1391 Query UPDATE phpbb_forums
SET forum_flags = forum_flags | 32
In /includes/constants.php check for the lineKampfbiene wrote:I just don't see where the script gets the 32. I checked all the constants/functions/variables involved an can't see the error.
Code: Select all
define('FORUM_FLAG_QUICK_REPLY', 64);
FORUM_FLAG_QUICK_REPLY
.Still works on .12 servers, thanks.JimA wrote:If you're using MySQL, this SQL query should enable Quick Reply in all forums.Code: Select all
UPDATE phpbb_forums SET forum_flags = forum_flags + 64 WHERE forum_type = 1 AND forum_flags & 64 <> 1
Or just click the 'apply to all forums' button in post settings.Master_Cylinder wrote:Still works on .12 servers, thanks.JimA wrote:If you're using MySQL, this SQL query should enable Quick Reply in all forums.Code: Select all
UPDATE phpbb_forums SET forum_flags = forum_flags + 64 WHERE forum_type = 1 AND forum_flags & 64 <> 1