MLM Problem

langquest

New Member
When I try to subscribe an email address I get the following error:

Fatal error: Call to undefined function: preg_split() in /usr/local/apache/htdocs/mlm/mlm.php on line 1539

When I uploaded the mlm folder to the website, it added the file as

mlm.php (the folder, not the program).

I removed the .php extension.

I just purchased this program a few minutes ago.
 

stanbusk

Administrator
Staff member
What PHP version are you running on your server? The preg_split() function was introduced in PHP v4 and it is a common function.
 

langquest

New Member
Solution

Just a quick note for completeness.

This problem was solved by installing the Perl Compatible Regular Expressions (PCRE) package. This allows the preg_split() function to work.
 
Top