Your folder is mydms and not letodms
Your system is Windows
==>
doudoux
Your system is Windows
PHP Code:
// path to where mydms is located
var $_rootDir = "/var/www/letoDMS-2.0.2/";
// The relative path in the URL, after the domain part. Do not include the
// http:// prefix or the web host name. e.g. If the full URL is
// http://www.example.com/mydms/, set $_httpRoot = "/mydms/".
// If the URL is http://www.example.com/, set $_httpRoot = "/".
var $_httpRoot = "/letoDMS-2.0.2/";
// Where the uploaded files are stored (best to choose a directory that
// is not accessible through your web-server)
var $_contentDir = "/var/www/letoDMS-2.0.2/data/";
==>
PHP Code:
// path to where mydms is located
var $_rootDir = "C:/wamp/www/mydms/";
// The relative path in the URL, after the domain part. Do not include the
// http:// prefix or the web host name. e.g. If the full URL is
// http://www.example.com/mydms/, set $_httpRoot = "/mydms/".
// If the URL is http://www.example.com/, set $_httpRoot = "/".
var $_httpRoot = "/mydms/";
// Where the uploaded files are stored (best to choose a directory that
// is not accessible through your web-server)
var $_contentDir = "C:/wamp/www/mydms/data/";
doudoux