Welcome Guest, Not a member yet? Register   Sign In
Automatic config[base_url]
#43

[eluser]Velizar N.[/eluser]
[quote author="paulopmx" date="1189019955"]Don’t you just hate it, when you move from development server to production server that you have to change the $config[’base_url’] setting?

Well I do. Because I do it a lot, specially when I’m demoing a web application, that’s why I added this code to the config.php
Code:
$root = "http://".$_SERVER['HTTP_HOST'];
$root .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);

$config['base_url']    = "$root";

Once thats added, Codeigniter base_url will adapt to whatever the url you're using.[/quote]


My suggestion:

index.php (the main file of your CI application) :

Code:
$_ciroot = rtrim(dirname(__FILE__),"/")."/";
if (stristr(PHP_OS, 'WIN')) $_ciroot = str_replace("\\", "/", $_ciroot);
$_ciroot = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_ciroot);
define('CIROOT', $_ciroot );

config.php:

Code:
$config['base_url']    = "http://".$_SERVER['HTTP_HOST'].CIROOT;

...you can improve the protocol detection.

BR!


Messages In This Thread
Automatic config[base_url] - by El Forum - 09-05-2007, 08:19 AM
Automatic config[base_url] - by El Forum - 09-05-2007, 08:40 AM
Automatic config[base_url] - by El Forum - 09-19-2007, 10:05 AM
Automatic config[base_url] - by El Forum - 09-19-2007, 02:40 PM
Automatic config[base_url] - by El Forum - 09-19-2007, 07:44 PM
Automatic config[base_url] - by El Forum - 09-20-2007, 06:07 PM
Automatic config[base_url] - by El Forum - 10-09-2007, 07:41 AM
Automatic config[base_url] - by El Forum - 10-25-2007, 03:39 PM
Automatic config[base_url] - by El Forum - 10-27-2007, 07:29 PM
Automatic config[base_url] - by El Forum - 10-27-2007, 11:21 PM
Automatic config[base_url] - by El Forum - 11-04-2007, 10:02 PM
Automatic config[base_url] - by El Forum - 11-06-2007, 04:23 AM
Automatic config[base_url] - by El Forum - 11-25-2007, 08:42 AM
Automatic config[base_url] - by El Forum - 12-06-2007, 02:08 PM
Automatic config[base_url] - by El Forum - 12-06-2007, 04:19 PM
Automatic config[base_url] - by El Forum - 12-06-2007, 04:29 PM
Automatic config[base_url] - by El Forum - 12-06-2007, 04:58 PM
Automatic config[base_url] - by El Forum - 12-07-2007, 02:46 AM
Automatic config[base_url] - by El Forum - 03-18-2008, 11:38 AM
Automatic config[base_url] - by El Forum - 03-18-2008, 11:51 AM
Automatic config[base_url] - by El Forum - 03-18-2008, 11:53 AM
Automatic config[base_url] - by El Forum - 03-18-2008, 11:54 AM
Automatic config[base_url] - by El Forum - 03-18-2008, 12:49 PM
Automatic config[base_url] - by El Forum - 03-21-2008, 12:19 PM
Automatic config[base_url] - by El Forum - 03-21-2008, 01:33 PM
Automatic config[base_url] - by El Forum - 04-08-2008, 11:10 PM
Automatic config[base_url] - by El Forum - 04-09-2008, 08:44 AM
Automatic config[base_url] - by El Forum - 04-22-2008, 10:56 AM
Automatic config[base_url] - by El Forum - 04-23-2008, 04:07 AM
Automatic config[base_url] - by El Forum - 04-23-2008, 04:14 AM
Automatic config[base_url] - by El Forum - 04-23-2008, 08:06 PM
Automatic config[base_url] - by El Forum - 04-23-2008, 08:21 PM
Automatic config[base_url] - by El Forum - 04-23-2008, 09:00 PM
Automatic config[base_url] - by El Forum - 04-24-2008, 11:09 AM
Automatic config[base_url] - by El Forum - 04-24-2008, 01:19 PM
Automatic config[base_url] - by El Forum - 04-24-2008, 10:50 PM
Automatic config[base_url] - by El Forum - 04-25-2008, 12:53 AM
Automatic config[base_url] - by El Forum - 04-25-2008, 08:21 PM
Automatic config[base_url] - by El Forum - 05-02-2008, 10:26 AM
Automatic config[base_url] - by El Forum - 05-04-2008, 02:36 AM
Automatic config[base_url] - by El Forum - 08-08-2008, 12:07 PM
Automatic config[base_url] - by El Forum - 10-07-2008, 03:28 AM
Automatic config[base_url] - by El Forum - 10-07-2008, 05:08 AM
Automatic config[base_url] - by El Forum - 07-01-2009, 01:06 AM
Automatic config[base_url] - by El Forum - 09-25-2009, 11:07 AM
Automatic config[base_url] - by El Forum - 09-25-2009, 12:00 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 12:56 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 01:51 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 02:20 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 02:23 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 02:33 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 03:07 PM
Automatic config[base_url] - by El Forum - 09-25-2009, 05:05 PM
Automatic config[base_url] - by El Forum - 09-26-2009, 04:18 AM
Automatic config[base_url] - by El Forum - 09-28-2009, 03:58 AM
Automatic config[base_url] - by El Forum - 11-21-2010, 11:10 PM
Automatic config[base_url] - by El Forum - 05-11-2011, 09:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB