Topic: I dont see anything in my web
Hello sorry for my bad English. My problem: I don’t see anything in my
> web www.bolsaempleados.com
>
> Config.php
>
> <?php
> /**
> * jobber job board platform
> *
> * @author Filip C.T.E. <http://www.filipcte.ro> <me@filipcte.ro>
> * @license You are free to edit and use this work, but it would
> be nice if you always referenced the original author
> * (see license.txt).
> */
>
> header('Content-Type: text/html; charset=UTF-8');
>
> ini_set('display_errors', 'On');
> error_reporting(E_ALL ^ E_STRICT);
>
> date_default_timezone_set('Europe/Bucharest');
>
> // MySQL + misc settings for local environment
> if ($_SERVER['SERVER_NAME'] == 'localhost')
> {
> define('DB_HOST', 'localhost');
> define('DB_USER', 'xxxxxxx');
> define('DB_PASS', 'xxxxxxx');
> define('DB_NAME', 'empleados');
> define('LOCATION', 'local'); ------> This is correct
> ?
> define('ENVIRONMENT', 'dev');
> }
> // MySQL + misc settings for production environment
> else
> {
> define('DB_HOST', 'localhost');
> define('DB_USER', 'xxxxxx');
> define('DB_PASS', 'xxxxxx');
> define('DB_NAME', 'empleados');
> define('LOCATION', 'online'); -------> This is correct ?
> define('ENVIRONMENT', 'prod');
> }
>
> Thank you very much for your time