Part of the EllisLab Network
   
 
get wrong url in form and links
Posted: 30 August 2007 09:32 AM   [ Ignore ]  
Summer Student
Total Posts:  2
Joined  08-30-2007

hey, I have to admit that I’m totally new to CodeIgniter and decided to start following those tutorials videos that can be found on CodeIgniter webpage.

But there is a one small thing that I just can’t get to work:

in the “blog” tutorial everything works perfekt at the first page where it lists all the blogs that exist in the database, that’s great, then I click on “comment” at any of the blog and that direct me to the right page (http://localhost/codeigniter_1.5.4/index.php/blog/comments/1).

But if I try to submit a comment or even try to add link on the comment page then I always get some wrong url in the addressbar:

f.ex.

I want to submit a comment, then I use: <?=form_open(‘blog/comment_insert’);?> ......
but the page I’m then submittet to is

http://localhost/codeigniter_1.5.4/index.php/blog/comments/index.php/blog/comment_insert

instead of

http://localhost/codeigniter_1.5.4/index.php/blog/comment_insert

Can anyone help me with this one ?

Profile
 
 
Posted: 30 August 2007 09:56 AM   [ Ignore ]   [ # 1 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  352
Joined  04-27-2006

do you have the correct base url in your config.php?

$config['base_url']    = "http://localhost/codeigniter_1.5.4/";

$config['index_page'] = "index.php";

Profile
 
 
Posted: 30 August 2007 09:59 AM   [ Ignore ]   [ # 2 ]  
Summer Student
Total Posts:  2
Joined  08-30-2007

crap, ofcourse not, had the index page but of some reason not the base_url…..

thanks man!

Profile
 
 
Posted: 31 August 2007 03:27 AM   [ Ignore ]   [ # 3 ]  
Grad Student
Rank
Total Posts:  63
Joined  08-03-2007

you add the url helper in the ‘config/autoload.php’

$autoload[‘helper’] = array(‘url’);

then you can edit these lines :

$url=site_url();
<?=form_open(’$url/blog/comment_insert’);?>

or u may be try this one :

<?=form_open(‘site_url()/blog/comment_insert’);?>

Thanks
Saidur Rahman

Profile
 
 
   
 
 
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 719, on June 06, 2008 10:16 AM
Total Registered Members: 64454 Total Logged-in Users: 22
Total Topics: 80961 Total Anonymous Users: 0
Total Replies: 435697 Total Guests: 201
Total Posts: 516658    
Members ( View Memberlist )