LetoDMS Community Forum
question about version letoDMS-1.8.1 (localhost) - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Installation Problems (https://community.letodms.com/forumdisplay.php?fid=9)
+--- Thread: question about version letoDMS-1.8.1 (localhost) (/showthread.php?tid=18)



question about version letoDMS-1.8.1 (localhost) - loryamini - 05-29-2010

I installed version 1.8.1 with under setting
===========
<?php
class Settings
{
var $_siteName = "DMS";
var $_footNote = "document management system";
var $_printDisclaimer = false;
var $_siteDefaultPage = "";
var $_adminID = 1;
var $_guestID = 2;
var $_rootFolderID = 1;
var $_enableGuestLogin = true;
var $_restricted = false;
var $_strictFormCheck = false;
var $_rootDir = "/xampp/htdocs/letodms/";
var $_httpRoot = "/letodms/";
var $_contentDir = "/content/";
var $_contentOffsetDir = "1048576";
var $_maxDirID = 32700;
var $_language = "English";
var $_updateNotifyTime = 86400; //means 24 hours
var $_viewOnlineFileTypes = array();
var $_enableConverting = true;
var $_theme = "clean";
var $_titleDisplayHack = true;
var $_enableEmail = true;
var $_enableUsersView = true;
var $_enableAdminRevApp = false;
var $_versioningFileName = "versioning_info.txt";
var $_versionStartZero = true;
var $_ADOdbPath = "/xampp/htdocs/letodms/adodb/";
var $_dbDriver = "mysql";
var $_dbHostname = "localhost";
var $_dbDatabase = "letodms";
var $_dbUser = "root";
var $_dbPass = "";
function Settings()
{
$this->_convertFileTypes = array(".doc" => "cscript \"" . $this->_rootDir."op/convert_word.js\" {SOURCE} {TARGET}",
".xls" => "cscript \"".$this->_rootDir."op/convert_excel.js\" {SOURCE} {TARGET}",
".ppt" => "cscript \"".$this->_rootDir."op/convert_pp.js\" {SOURCE} {TARGET}");
}
}

$settings = new Settings();

?>
==================
after run in internet explorer
http://localhost/letodms
then view below error:

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\letodms\languages\English\lang.inc:499) in C:\xampp\htdocs\letodms\inc\inc.Authentication.php on line 29

=========
please help me.


RE: question about version letoDMS-1.8.1 (localhost) - administrator - 05-29-2010

(05-29-2010, 06:51 PM)loryamini Wrote: I installed version 1.8.1 with under setting
===========
<?php
class Settings
{
var $_siteName = "DMS";
var $_footNote = "document management system";
var $_printDisclaimer = false;
var $_siteDefaultPage = "";
var $_adminID = 1;
var $_guestID = 2;
var $_rootFolderID = 1;
var $_enableGuestLogin = true;
var $_restricted = false;
var $_strictFormCheck = false;
var $_rootDir = "/xampp/htdocs/letodms/";
var $_httpRoot = "/letodms/";
var $_contentDir = "/content/";
var $_contentOffsetDir = "1048576";
var $_maxDirID = 32700;
var $_language = "English";
var $_updateNotifyTime = 86400; //means 24 hours
var $_viewOnlineFileTypes = array();
var $_enableConverting = true;
var $_theme = "clean";
var $_titleDisplayHack = true;
var $_enableEmail = true;
var $_enableUsersView = true;
var $_enableAdminRevApp = false;
var $_versioningFileName = "versioning_info.txt";
var $_versionStartZero = true;
var $_ADOdbPath = "/xampp/htdocs/letodms/adodb/";
var $_dbDriver = "mysql";
var $_dbHostname = "localhost";
var $_dbDatabase = "letodms";
var $_dbUser = "root";
var $_dbPass = "";
function Settings()
{
$this->_convertFileTypes = array(".doc" => "cscript \"" . $this->_rootDir."op/convert_word.js\" {SOURCE} {TARGET}",
".xls" => "cscript \"".$this->_rootDir."op/convert_excel.js\" {SOURCE} {TARGET}",
".ppt" => "cscript \"".$this->_rootDir."op/convert_pp.js\" {SOURCE} {TARGET}");
}
}

$settings = new Settings();

?>
==================
after run in internet explorer
http://localhost/letodms
then view below error:

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\letodms\languages\English\lang.inc:499) in C:\xampp\htdocs\letodms\inc\inc.Authentication.php on line 29

=========
please help me.

hi loryamini

thanks for you interest in LetoDMS , sounds like LetoDMS can't authenticate with MySQL

checked your database , i would suggest you to put a password on mysql

Thanks

LetoDMS Team


RE: question about version letoDMS-1.8.1 (localhost) - raymondchi - 06-10-2010

Dear LetoDMS Team,
I hv the same problem and can't find the soultions....
For MySQL, I did create an sperate user and grant all privileges to the letoDMS database but still not work !

RE : I use letoDMS 1.8.2
Please advise !
Raymond


RE: question about version letoDMS-1.8.1 (localhost) - Elias Sajo - 06-12-2010

Hi,

The lang.inc file has too extra whitespaces after the php close tag.

Remove these lines and save the file, it will work normally then.

To be more accurate the file should end at the line 497 where the tag is but after that there are two empty lines which need to be removed.


Elias