first sorry my english.. have problem in my project, I can not solve, see.
Warning: require_once(../action/config.php): failed to open stream: No such file or directory in C:\wamp64\www\maismaranhao\index.php on line 5 Call Stack
Fatal error: require_once(): Failed opening required '../action/config.php' (include_path='.;C:\php\pear') in C:\wamp64\www\maismaranhao\index.php on line 5
my index.php is correct, and the settings also. See
<?php
session_start();
require_once "action/config.php";
require_once LIB."system/Utils.class.php";
require_once LIB."system/Data.class.php";
$ACTION = Utils::getAction();
//echo "<pre>"; //var_dump($_GET);exit;
$_GET["DEBUG"] = false;
Utils::utf8_filter(); ...
config.php
<?php
define("DOCUMENT_ROOT",$_SERVER["DOCUMENT_ROOT"]);
define("WORKSPACE",DOCUMENT_ROOT . "action/");
define("TEMP",DOCUMENT_ROOT . "temp/");
define("LIB",WORKSPACE ."lib/");
define("CLASS_PATH",DOCUMENT_ROOT . "classes/");
define("ADMIN_PATH","admin/");
define('SMARTY_PATH',LIB .'external/Smarty/libs/');
define('TEMPLATE_PATH',DOCUMENT_ROOT .'smarty_templates/');
define("URL","localhost");
define("ADMIN_URL",URL . ADMIN_PATH);
define("SITE_NAME","MaisMaranhão");
define("SITE_SLOGAN","Mais Notícias do Maranhão para Você!");
set_include_path(get_include_path() . PATH_SEPARATOR . WORKSPACE .PATH_SEPARATOR . LIB . PATH_SEPARATOR . CLASS_PATH);
?>