The basic idea would be, in your sign up script, to have it use cURL to send the information via the web to the other SMF and have the registration script there enter the new account info.
Several problems. One of which would be that you have to synchronize the two databases first so that the...
ini_set doesn't do anything in this case. You cannot override the system settings:
upload_max_filesize is set at 16M
max_input_time is 60 sec
max_execution_time is 30 sec
post_max_size is 8M
Where is FORUM_CACHE_DIR defined?
Also, without knowing what is in the other two files, it is impossible to say. One of the included files might be the problem.
You are on Starka, which has just had some major work done on it.
http://x10hosting.com/forums/news-announcements/164137-starka-major-upgrade.html#post841180
If the problem persists, please reply in this thread.
It has been noted that the new configuration has caused problems with PHP mail()
Gmail is a good alternative. For one thing, it avoids the problems with services like Hotmail blacklisting mail from the x10 mail servers.
<?php
$patt = '/\[a\](.*?)\[\/a\]/i' ;
$hay = 'foo and something here past the match';
$res = preg_match_all( $patt, $hay, $matches ) ;
echo $matches[ 0 ][0] ;
echo " <br />\n" ;
echo $matches[ 1 ][0] ;
Works as expected with no errors.
Posting just a snippet as you did removes it...
The following script runs fine on Chopin.
Gmail accepts it.
Hotmail does not bounce it, but does put it in the Spam folder.
<?php
date_default_timezone_set('America/Los_Angeles');
echo date('l jS \of F Y h:i:s A');
echo "\n";
$from = "myName@myDomain.x10.bz"...