The package manager only gave me an error on Subs.php. It was looking for this but couldn't find it:
array(
if (strpos($data, \'http://\') !== 0 && strpos($data, \'https://\') !== 0)
$data = \'http://\' . $data;
'),
'disallow_children' => array('email', 'ftp', 'url', 'iurl'),
'disabled_after' => ' ($1)',
),
So I opened up Subs.php and found this instead:
array(
'tag' => 'url',
'type' => 'unparsed_equals',
'before' => '<a href="$1" class="bbc_link" target="_blank">',
'after' => '</a>',
'validate' => create_function('&$tag, &$data, $disabled', '
if (strpos($data, \'http://\') !== 0 && strpos($data, \'https://\') !== 0)
$data = \'http://\' . $data;
'),
'disallow_children' => array('email', 'ftp', 'url', 'iurl'),
'disabled_after' => ' ($1)',
),
So I just manually added this right after the above code as per the directions in the error:
array(
'tag' => 'sse',
'before' => '<!--sse-->',
'after' => '<!--/sse-->',
'block_level' => true,
),
I then ignored the error and installed the package. It's now reporting IP's properly.
However, I'm getting tons of errors related to httpBL, ForumFirewall:
8: Undefined variable: ip File: /home/sr/public_html/my_site/Sources/httpBL_Subs.php
8: Undefined index: HTTP_CF_CONNECTING_IP File: /home/sr/public_html/my_site/Sources/Subs-ForumFirewall.php Line: 28
It also doesn't fix the IP reporting in AjaxChat.
Anyone know what I can do to resolve this issue?