You all are definitely right and I appreciate the prompt responses. I apologize up front this is my first real attempt at putting this together since 1.3 changes so I may ask stupid questions I have no shame in saying I am a bit rusty on conversions like this. I spent far too much time dealing with lua development recently.
The thing about this package is that is was initially wrapped tightly around phpbb2 fairly heavy. Even following the install instructions only works so well.
I like the idea of including ctracker in this as well.
The core file adjustments can be found in ip_m2f/m2f/m2f_phpbb20x.txt Only a couple adjustments need to be there in their instructions. Such as the paths and what not.
Again thank you guys for your time.
What would be a good suggestion to edit in here
\m2f-ip\m2f\m2f\m2f_admin.php (1 hits)
Line 1206: FROM " . POSTS_TEXT_TABLE . " pt,
\m2f-ip\m2f\m2f\includes\insert_post.php (1 hits)
Line 139: $sql = "INSERT INTO " . POSTS_TEXT_TABLE . " (post_id, post_subject, bbcode_uid, post_text) VALUES ($post_id, '$subject', '$bbcode_uid', '$message')";
With these here I am just removing anything past the $user_ip right?
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_VIEWMEMBERS);
init_userprefs($userdata);
// Start session management
$userdata = session_pagestart($user_ip);
init_userprefs($userdata);
// End session management
I did a little cleaning to the files, so that should take out a few things. replaced the package in my first post.