script text max characters?
Posted:
Sat Oct 30, 2021 4:17 am
by bronson
Is there a max character count for the script text?
I tried posting my script text but it got chopped in half after pressing enter.
Re: script text max characters?
Posted:
Sat Oct 30, 2021 6:51 am
by mflorell
For VICIdial Scripts in the admin screen, the maximum length is 65,535 characters because it is a "TEXT" field type in MySQL.
If you need to raise that, you can try altering the database table, although I've never tried that before, but it should work:
ALTER TABLE vicidial_scripts MODIFY script_text MEDIUMTEXT;
The above mysql command should change it to a maximum of 16,777,215 characters.