[eluser]methos112[/eluser]
Greetings my fellow CI developers. I have been recently tasked to make changes to our website. I've been able to successfully create a test area before i can break anything.
Under the view folder I have:
Code:
<div class="apt_right">
<h3><a href="<?=$apartment->url;?>" title="<?=$apartment->keywords;?>"><?=$apartment->name;?></a></h3>
<p><?=$apartment->address;?></p>
<p><em class="tollfree"><?=$apartment->tollfree;?></em></p>
<p><em class="tollfree"><?=$apartment->phone;?></em></p>
</div>
I've determined that
Code:
<?=$apartment->url;?>
is referring to the field in my db. However when I click on the link (on the test page i get a 404), on the live site it is up and running perfectly.
In routes.php, I noticed that the 'default_controller' is set to 'home' and an a path for one of the links is
Code:
$route['apg3'] = 'home/ae/3';