Posts: 10
Threads: 1
Joined: Jan 2011
Reputation:
0
(01-06-2011, 12:21 AM)Doudoux Wrote: Hy
In file " inc.Settings.php", try :
PHP Code:
<?php
var $_ADOdbPath = "/var/www/letoDMS-2.0.2/adodb/";
and in your file "inc.DNAccess.php", replace
PHP Code:
<?php
include $settings->_ADOdbPath . "adodb.inc.php";
//include "http://kuka/letoDMS-2.0.2/adodb/"
doudoux
Hi thanks for that. I now get:
"Warning: include(/var/www/mydms/adodb/adodb.inc.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\mydms\inc\inc.DBAccess.php on line 20
Warning: include() [function.include]: Failed opening '/var/www/mydms/adodb/adodb.inc.php' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\mydms\inc\inc.DBAccess.php on line 20
Fatal error: Call to undefined function adonewconnection() in C:\wamp\www\mydms\inc\inc.DBAccess.php on line 84"
Please note I have named the root folder 'mydms' not 'letoDMS-2.0.2'.
Rob
Posts: 10
Threads: 1
Joined: Jan 2011
Reputation:
0
(01-06-2011, 10:44 PM)Doudoux Wrote: hy
it's for linux :-)
try
in inc.Settings.php
doudoux
Thank you for your really prompt and helpful answers. We are getting there!
I now have a login page, with a few errors. It seems to want to access 'letoDMS-2.0.2' rather than my folder 'mydms' not sure what to do about that. Anyway here are the errors and I have attached the inc.Language.php file
Warning: include(/var/www/letoDMS-2.0.2/languages/English/lang.inc) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\mydms\inc\inc.Language.php on line 41
Warning: include() [function.include]: Failed opening '/var/www/letoDMS-2.0.2/languages/English/lang.inc' for inclusion (include_path='.;C:\php5\pear') in C:\wamp\www\mydms\inc\inc.Language.php on line 41
and also on line 27 of lang.inc : readdir () : supplied argument is not valid directory resource
and the same on lines 104 and 106 of inc.ClassUI.php
phew!
and also l
Posts: 129
Threads: 14
Joined: Jul 2010
Reputation:
0
hy
i think you are again a bad path
can you give your last "inc.Settings.php"
doudoux
Posts: 10
Threads: 1
Joined: Jan 2011
Reputation:
0
01-07-2011, 07:44 PM
(This post was last modified: 01-07-2011, 08:12 PM by robshim.)
(01-07-2011, 06:46 PM)Doudoux Wrote: Your folder is mydms and not letodms
Your system is Windows
PHP Code:
<?php
// 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:
<?php
// 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
Thanks, I should have spotted that!

Got the login page OK, but logging in as admin / admin get this error:
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error."
More information about this error may be available in the server error log.
(01-07-2011, 07:44 PM)robshim Wrote: (01-07-2011, 06:46 PM)Doudoux Wrote: Your folder is mydms and not letodms
Your system is Windows
PHP Code:
<?php
// 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/";