Actually... 3 of the 4 majors install with issues... 2 of them minor "button" issues (I modified the button code so it errors out) which is an easy fix for me and then SMF which errors out with a number of button issues (no problem) and one issue that caused me to look elsewhere...
when it searches for:
if (empty($parse_tags) || in_array($code['tag'], $parse_tags))
$bbc_codes[substr($code['tag'], 0, 1)][] = $code;
}
$codes = null;
}
It errors out. I found the code as been modified... not sure which mod did it but it has been modified... this is what i currently have:
foreach ($codes as $c)
$bbc_codes[substr($c['tag'], 0, 1)][] = $c;
$codes = null;
So I am not sure exactly what to do. Rather than overwrite the code and hope for the best I was looking at other options. I like TinyPortal but I'd really rather setup my portal before I go live with it... and I am not sure what to do with Simple Portal at this point.