Welcome Guest, Not a member yet? Register   Sign In
Multiple Parked Domains
#9

[eluser]John_Betong[/eluser]
 
Hi RichMan,
 
I have three domains all pointing to the same URL. I check for the ($_SERVER['SERVER_NAME']) and set the $application_folder to the appropriate domain as you can see from the index.php code snippet.
 

index.php
Code:
...
...
      $system_folder = "ci_system";
...
...

switch ($_SERVER['SERVER_NAME']) {
    // has the $_SESSION['_MENU_'] variable been set in my _menu.php
    // which allows me to select different LocalHost applications.
    case '127.0.0.1'          :
    case 'localhost'          :
                              $application_folder    = isset($_SESSION['_MENU_']) ? $_SESSION['_MENU_'] : 'ci_test';
                              break;
    case 'anetizer.com'       :
    case 'www.anetizer.com'   :
                                $application_folder    = 'ci_jokes';
                                break;
    case 'betsprint.com'      :
    case 'www.betsprint.com'  :
                                $application_folder    = 'ci_betsprint';
                                break;
    case 'justjoolz.com'      :
    case 'www.justjoolz.com'  : // NEVER REACHES HERE BECAUSE TRAPPED AT THE BEGINNING OF FILE
                                $application_folder    = 'ci_justjoolz';
                                break;
 
Here is a link to the menu system.

Cheers,

John_Betong
 
Updated speling miistakes
 


Messages In This Thread
Multiple Parked Domains - by El Forum - 12-26-2007, 08:28 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 09:36 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 09:48 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:00 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:03 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:11 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:26 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:40 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 10:59 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 11:37 PM
Multiple Parked Domains - by El Forum - 12-26-2007, 11:54 PM
Multiple Parked Domains - by El Forum - 12-27-2007, 12:28 AM
Multiple Parked Domains - by El Forum - 12-27-2007, 04:54 PM
Multiple Parked Domains - by El Forum - 12-27-2007, 11:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB