Welcome Guest, Not a member yet? Register   Sign In
cant get to work site_url in anchor
#5

[eluser]Edgars[/eluser]
Not Found
The requested URL /index.php/welcome/content was not found on this server.
Apache Server at example.com Port 80


Same error as before. Reinstalled wamp server and codeigniter.
When I try using that link I made, he throws me to
http://example.com/index.php/welcome/content and shows error instead 'asdf'
But when I enter manually in adress bar
http://localhost/index.php/welcome/content, I got echo'ed 'asdf' as it is supposed to.

Ah when I posted reply, I saw my problem. Had to change
$config['base_url'] = "http://example.com/";
to
$config['base_url'] = "http://localhost/";
in config file Smile Now im good. Thanks

<?php

class Welcome extends Controller {
function __construct() {
parent::Controller();
$this->load->helper('url');
}
function index() {
$this->load->view('welcome_message');
}
function content(){
echo "asdf";
}
}
?>
Code:
<body>

<?php
echo anchor('/welcome/content', 'title="My News"');
?>

</body>


Messages In This Thread
cant get to work site_url in anchor - by El Forum - 11-15-2010, 12:15 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 01:34 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 01:51 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 02:13 PM
cant get to work site_url in anchor - by El Forum - 11-15-2010, 02:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB