support
4 posts Location: n.a. |
23.11.2012 21:56 Re: Some problems. Hi,
There are some size limitations in the compiled pattern in PHP when it calls PCRE (a compiled pattern in PHP for spinning text). The maximum length of the compiled pattern is 65539 bytes. You have crossed that limits that way the component was showing the error message.
Try to split your spin text into small chunks (not more than 65539 bytes), it should work
|