Extend Mchat static message char

Support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Forum rules
Please only request support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Post Reply
Novation
Member
Member
Posts: 78
Joined: 25 Jun 2009, 00:08
Contact:

Extend Mchat static message char

Post by Novation »

Hi,

How can i extend the mysql char for the static message section in the acp.

I tried the following but it doesn't work

Code: Select all

ALTER TABLE phpbb_mchat_config MODIFY config_value varchar(500);
Oyabun1
New member
New member
Posts: 34
Joined: 16 Sep 2009, 08:16

Re: Extend Mchat static message char

Post by Oyabun1 »

Novation wrote: but it doesn't work
What does that mean? What were you expecting to happen?
Novation
Member
Member
Posts: 78
Joined: 25 Jun 2009, 00:08
Contact:

Re: Extend Mchat static message char

Post by Novation »

Oyabun1 wrote:
Novation wrote: but it doesn't work
What does that mean? What were you expecting to happen?
when i try to add more than 255 characters into mchat's Static Message section, i get the following error.

Warning

The static message value is too long.


I want to extend the characters allowed.
User avatar
RMcGirr83
Supporter
Supporter
Posts: 6243
Joined: 30 Nov 2006, 14:23
Real name: Rich McGirr

Re: Extend Mchat static message char

Post by RMcGirr83 »

Code: Select all

ALTER TABLE phpbb_mchat_config MODIFY config_value VARCHAR(500)
or

Code: Select all

ALTER TABLE phpbb_mchat_config CHANGE COLUMN config_value config_value VARCHAR(500)
Novation
Member
Member
Posts: 78
Joined: 25 Jun 2009, 00:08
Contact:

Re: Extend Mchat static message char

Post by Novation »

RMcGirr83 wrote:

Code: Select all

ALTER TABLE phpbb_mchat_config MODIFY config_value VARCHAR(500)
or

Code: Select all

ALTER TABLE phpbb_mchat_config CHANGE COLUMN config_value config_value VARCHAR(500)
I almost had it correct.... Thanks RMcGirr83 :rock:

Nice to see you around again btw :cool:
Novation
Member
Member
Posts: 78
Joined: 25 Jun 2009, 00:08
Contact:

Re: Extend Mchat static message char

Post by Novation »

Tested and working :clap:
Post Reply