Ik wil een CMS programma gebruiken (PHPWeblog).
Ik heb naar mijn mening alles goed ingesteld maar nu wil ik dus het admin gedeelte openen en dan krijg ik de volgende fouten :
Warning: Failed opening '/phpweblog/backend/language/english.lng' for inclusion (include_path='') in ../include/common.inc.php on line 76
Warning: Failed opening '/phpweblog/include/func.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 80
Warning: Failed opening '/phpweblog/include/blocks.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 81
Warning: Failed opening '/phpweblog/include/layout.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 82
Warning: Failed opening '/phpweblog/include/parser.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 83
Warning: Failed opening '/phpweblog/include/polls.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 84
Warning: Failed opening '/phpweblog/include/search.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 85
Warning: Failed opening '/phpweblog/include/comments.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 86
Fatal error: Call to undefined function: import_layout() in ../include/common.inc.php on line 92
Common.inc.php ziet er als volgt uit :
=*=======================================================================*/
## MySQL connectivity variables
$G_DB = "WEBLOG"; # database name
$G_HOST = "stefan"; # hostname
$G_PORT = "3306"; # mysql port
$G_USER = "stefan"; # mysql username
$G_PASS = "********"; # mysql password
## (do not add a trailing / to the following paths)
## full path to the phpWebLog base directory
$G_PATH = "/phpweblog";
## full URL to your phpWebLog document root
$G_URL = "http://localhost/";
/*== No need to edit past this line ====================================*/
Dit zijn de regels waarnaar hij verwijst :
/*== include in language translation ==*/
$LANG= !empty($CONF["Language"]) ? $CONF["Language"] : "english";
include($G_PATH . "/backend/language/" . $LANG . ".lng");
/*== include functions ==================================================*/
include("$G_PATH/include/func.inc.php");
include("$G_PATH/include/blocks.inc.php");
include("$G_PATH/include/layout.inc.php");
include("$G_PATH/include/parser.inc.php");
include("$G_PATH/include/polls.inc.php");
include("$G_PATH/include/search.inc.php");
include("$G_PATH/include/comments.inc.php");
/*====================================================================*/
/*== read in layout data ==*/
$THEME= !empty($preview_layout) ? $preview_layout : $CONF["Layout"];
$LAYOUT= import_layout($THEME);
Wat doe ik fout ?
Ik heb naar mijn mening alles goed ingesteld maar nu wil ik dus het admin gedeelte openen en dan krijg ik de volgende fouten :
Warning: Failed opening '/phpweblog/backend/language/english.lng' for inclusion (include_path='') in ../include/common.inc.php on line 76
Warning: Failed opening '/phpweblog/include/func.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 80
Warning: Failed opening '/phpweblog/include/blocks.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 81
Warning: Failed opening '/phpweblog/include/layout.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 82
Warning: Failed opening '/phpweblog/include/parser.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 83
Warning: Failed opening '/phpweblog/include/polls.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 84
Warning: Failed opening '/phpweblog/include/search.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 85
Warning: Failed opening '/phpweblog/include/comments.inc.php' for inclusion (include_path='') in ../include/common.inc.php on line 86
Fatal error: Call to undefined function: import_layout() in ../include/common.inc.php on line 92
Common.inc.php ziet er als volgt uit :
=*=======================================================================*/
## MySQL connectivity variables
$G_DB = "WEBLOG"; # database name
$G_HOST = "stefan"; # hostname
$G_PORT = "3306"; # mysql port
$G_USER = "stefan"; # mysql username
$G_PASS = "********"; # mysql password
## (do not add a trailing / to the following paths)
## full path to the phpWebLog base directory
$G_PATH = "/phpweblog";
## full URL to your phpWebLog document root
$G_URL = "http://localhost/";
/*== No need to edit past this line ====================================*/
Dit zijn de regels waarnaar hij verwijst :
/*== include in language translation ==*/
$LANG= !empty($CONF["Language"]) ? $CONF["Language"] : "english";
include($G_PATH . "/backend/language/" . $LANG . ".lng");
/*== include functions ==================================================*/
include("$G_PATH/include/func.inc.php");
include("$G_PATH/include/blocks.inc.php");
include("$G_PATH/include/layout.inc.php");
include("$G_PATH/include/parser.inc.php");
include("$G_PATH/include/polls.inc.php");
include("$G_PATH/include/search.inc.php");
include("$G_PATH/include/comments.inc.php");
/*====================================================================*/
/*== read in layout data ==*/
$THEME= !empty($preview_layout) ? $preview_layout : $CONF["Layout"];
$LAYOUT= import_layout($THEME);
Wat doe ik fout ?
Al het goeie.......