Last active
December 20, 2015 14:39
-
-
Save joaohcrangel/1125f70dc5d334f998a4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* ********************************************************* */ | |
$siteForderName = ''; | |
if($_SERVER["HTTP_HOST"]=="localhost"){ | |
//Instruções | |
/* Altere a variável ServerAdmin no arquivo httpd.confvdo | |
* seu apache com o valor do seu e-mail para configurar a | |
* pasta de desenvolvimento local. | |
*/ | |
switch($_SERVER['SERVER_ADMIN']){ | |
case '[email protected]': | |
$siteForderName = ""; | |
break; | |
default: | |
$siteForderName = ""; | |
break; | |
} | |
define("PATH", $_SERVER["DOCUMENT_ROOT"]."/$siteForderName"); | |
}else{ | |
//PATH de produção | |
define("PATH", $_SERVER["DOCUMENT_ROOT"]."/$siteForderName"); | |
} | |
/* ********************************************************* */ | |
require_once("function.php"); | |
require_once("raintpl-v.2.7.2/inc/rain.tpl.class.php"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment