Skip to content

Instantly share code, notes, and snippets.

@joaohcrangel
Last active December 20, 2015 14:39
Show Gist options
  • Save joaohcrangel/1125f70dc5d334f998a4 to your computer and use it in GitHub Desktop.
Save joaohcrangel/1125f70dc5d334f998a4 to your computer and use it in GitHub Desktop.
<?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 'joaohcrangel@gmail.com':
$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