CodeIgniter Forums
Problem with BASEPATH - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Problem with BASEPATH (/showthread.php?tid=23220)



Problem with BASEPATH - El Forum - 10-04-2009

[eluser]shinokada[/eluser]
I am using XAMPP and I have a problem with BASEPATH.

When I use the following in a view file,

Code:
<?= 'Basepath: ' . BASEPATH ?>

I get this one.

Code:
Basepath: C:\xampp\htdocs\ci_day6/system/


I assume it should be like this but I am not sure.

Code:
Basepath: C:\xampp\htdocs\ci_day6\system\


Can anyone guide me how to fix this problem please?


Problem with BASEPATH - El Forum - 10-04-2009

[eluser]InsiteFX[/eluser]
Try this

Code:
<?php echo "Basepath = " . BASEPATH; ?>

You can also do a search in the forums here, this has been answered lots of times, also check out the wiki.

Enjoy
InsiteFX