We decided to migrate all our data for the website into one single database. So we deleted wowroster and re-installed using the new database. We inputed the same fix as before however this time it errors on parsing the file after .02-.05 seconds. Looking at the wowroster directory we see the file was uploaded to the new directory but it appears that it is not parsing the file. Below is the code that we used.
$new_lua_file = ROSTER_BASE.'temp'.DIR_SEP.$file['name']; move_uploaded_file($file['tmp_name'],$new_lua_file); // Parse the lua file into a php array that we can use $data = ParseLuaFile( $new_lua_file,$file_type ); @unlink($new_lua_file);
Is there something wrong here, any ideas why it isn't parsing the file? We have tried everything including deleting/purging the profiler data.