hallo,
there seems a generell bug with paths in my environment .
here are the facts and files :
conf_inc.php
Code: Select all
15 // paths
16 $phpwcms["root"]              = "phpwcms";         //default: ""
17 $phpwcms["file_path"]         = "phpwcms_filestorage";    //default: "phpwcms_filestorage"
18 $phpwcms["file_tmp"]          = "phpwcms_tmp";     //default: "phpwcms_tmp"
19 $phpwcms["templates"]         = "phpwcms_template";    //default: "phpwcms_template"
20 $phpwcms["dir_thlist"]        = "thumb_list";   //default: "thumb_list"
21 $phpwcms["dir_preview"]       = "thumb_preview";  //default: "thumb_preview"
22 $phpwcms["content_path"]      = "content"; //default: "content"
23 $phpwcms["cimage_path"]       = "images";  //default: "images"
24 $phpwcms["ftp_path"]          = "phpwcms_ftp";     //default: "phpwcms_ftp"
...
71 //$_SERVER['DOCUMENT_ROOT']     = '/srv/www/htdocs';
72 $_SERVER['DOCUMENT_ROOT']       = '';
73 // $phpwcms["root"]             = "";         //default: ""
74  $phpwcms["root"]               = "";         //default: ""
75
76 ?>
"
using this code login.php is working but 'anmelden' produces folowing error
Code: Select all
The requested URL /phpwcms.php was not found on this serv
using following code in 
conf_inc.php
Code: Select all
74   $phpwcms["root"]               = "/hwdocs/phpwcms";         //default
produces follwing url 
Code: Select all
http://mmvm008.mn-man.biz//hwdocs/phpwcms/phpwcms.php
this works for the welcome page
but "Artikel bearbeiten" produces follwing error
 	 	 	
Code: Select all
Artikelzentrale	
Neuer Artikel	
Benutzer Online
webmaster 		
Warning: Failed opening '//hwdocs/phpwcms/include/inc_tmpl/articlecontent.list.tmpl.php' for inclusion (include_path='.:/usr/share/php') in /srv/www/hwdocs/phpwcms/include/inc_lib/article.editcontent.inc.php on line 223
something strange happens , what can I do , what are the correct values for the conf_inc.php ???
any help is welcome