The above is the plug-in I installed but I still get that error when trying to run this link script (which works fine when run on a non wordpress page:
<?php
require 'http://www.muledeerfanatic.com/linkman103/settings.php';
$lines = array ();
$lines=file($settings['linkfile']);
echo '<p class="linkman">';
foreach ($lines as $thisline) #THIS IS WHERE THE PROBLEM IS
{
$thisline=trim($thisline);
if (!empty($thisline)) {
list($name,$email,$title,$url,$recurl,$description)=explode($settings['delimiter'],$thisline);
if ($settings['clean'] != 1) {$url='home/muledeer/public_html/linkman103/go.php=?url'.$url;}
echo ''.$title.' - '.$description.'<br>';
}
}
?>
any help would be appreciated.