![]() |
(Resolved) Problems trying to install LetoDMS 3.01 - 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: (Resolved) Problems trying to install LetoDMS 3.01 (/showthread.php?tid=341) |
(Resolved) Problems trying to install LetoDMS 3.01 - haylau - 07-22-2011 I have uploaded akk files, and create database. I have modified and uploaded the config file When I go to Index.php get this error: Fatal error: main() [function.require]: Failed opening required 'LetoDMS/Core.php' (include_path=':.:/usr/lib/php') in /homepages/10/d37005225/htdocs/LetoDMS/inc/inc.DBInit.php on line 27var $_httpRoot = "/LetoDMS/"; I ran check.php and get: Parse error: syntax error, unexpected '{' in /homepages/10/d37005225/htdocs/LetoDMS/check.php on line 374 Config file settings are: var $_rootDir = "/homepages/10/d37005225/htdocs/LetoDMS/"; var $_httpRoot = "/LetoDMS/"; var $_contentDir = "/homepages/10/d37005225/htdocs/letodata"; var $_ADOdbPath = ""; I have tried adding in the adopath, but no difference to messages.# Any ideas? RE: Problems trying to install LetoDMS 3.01 - steinm - 07-23-2011 (07-22-2011, 05:47 PM)haylau Wrote: I have uploaded akk files, and create database. I have modified and uploaded the config file The syntax error in check.php is a unrelated to your problem. Have you set _coreDir? Uwe RE: Problems trying to install LetoDMS 3.01 - haylau - 07-23-2011 (07-23-2011, 06:23 PM)steinm Wrote:Thanks for the reply Uwe, The instrucation say(07-22-2011, 05:47 PM)haylau Wrote: I have uploaded akk files, and create database. I have modified and uploaded the config file If left empty LetoDMS_Core will used from the standard include path Having said that, i have tried putting setting it, same response ![]() RE: Problems trying to install LetoDMS 3.01 - administrator - 07-24-2011 (07-23-2011, 11:09 PM)haylau Wrote:(07-23-2011, 06:23 PM)steinm Wrote:Thanks for the reply Uwe, The instrucation say(07-22-2011, 05:47 PM)haylau Wrote: I have uploaded akk files, and create database. I have modified and uploaded the config file hi thanks for using LetoDMS please post your mysql and php version and os Thanks LetoDMS RE: Problems trying to install LetoDMS 3.01 - haylau - 07-24-2011 (07-24-2011, 04:44 AM)administrator Wrote:(07-23-2011, 11:09 PM)haylau Wrote:(07-23-2011, 06:23 PM)steinm Wrote:Thanks for the reply Uwe, The instrucation say(07-22-2011, 05:47 PM)haylau Wrote: I have uploaded akk files, and create database. I have modified and uploaded the config file Thanks, got it sorted. I tidied uo the trailing "/" in paths (some seem to be requirted some not) Also I included a httaccess file to force php5 even though the system should have been that already RE: Problems trying to install LetoDMS 3.01 - OliverB - 10-14-2011 (07-24-2011, 04:48 AM)haylau Wrote:(07-24-2011, 04:44 AM)administrator Wrote:(07-23-2011, 11:09 PM)haylau Wrote:(07-23-2011, 06:23 PM)steinm Wrote:Thanks for the reply Uwe, The instrucation say(07-22-2011, 05:47 PM)haylau Wrote: I have uploaded akk files, and create database. I have modified and uploaded the config file Could you please let me know your tidied code looks like. I've tried as follows but did not work.... $_rootDir = "/public_html/leto/" $_coreDir = "/public_html/leto/LetoDMS_Core/" $_httpRoot = "/leto/" $_contentDir = "/public_html/letodata/" $_ADOdbPath = "/public_html/leto/ Thanks RE: (Resolved) Problems trying to install LetoDMS 3.01 - haylau - 10-14-2011 I think i ended up using all trailing "/" like yours. But the exact syntax may depend on where the system is being hosted For example I had to use: var $_ADOdbPath = "/homepages/10/d37005225/htdocs/LetoDMS/"; Obviously being very careful with capitalisation. I seme to remember that if I did not se the exact names that LetoDMS had as defualt I ran into problems. So try to use their defaults if at all possible Also, I seem to remember eeven though the data folder should be elsewhere, in practice on my server, it could not be i had to use var $_contentDir = "/homepages/10/d37005225/htdocs/LetoDMS/data/"; Good luck. I love LetoDMS but it is a bit of a pig to get up and running (IMHO) RE: (Resolved) Problems trying to install LetoDMS 3.01 - haylau - 10-14-2011 I think i ended up using all trailing "/" like yours. But the exact syntax may depend on where the system is being hosted For example I had to use: var $_ADOdbPath = "/homepages/10/d37005225/htdocs/LetoDMS/"; Obviously being very careful with capitalisation. I seme to remember that if I did not se the exact names that LetoDMS had as defualt I ran into problems. So try to use their defaults if at all possible Also, I seem to remember eeven though the data folder should be elsewhere, in practice on my server, it could not be i had to use var $_contentDir = "/homepages/10/d37005225/htdocs/LetoDMS/data/"; Good luck. I love LetoDMS but it is a bit of a pig to get up and running (IMHO) RE: (Resolved) Problems trying to install LetoDMS 3.01 - steinm - 10-14-2011 (10-14-2011, 03:55 PM)haylau Wrote: I think i ended up using all trailing "/" like yours. But the exact syntax may depend on where the system is being hosted Sure, propper path names are always an issue, but letodms doesn't behave differently from other php applications. On Unix file names are case sensitive, but that do not have to be absolute. The data folder can be everywhere and it should not be under htdocs for security reasons. Uwe RE: (Resolved) Problems trying to install LetoDMS 3.01 - haylau - 10-14-2011 "Sure, propper path names are always an issue, but letodms doesn't behave differently from other php applications. On Unix file names are case sensitive, but that do not have to be absolute. The data folder can be everywhere and it should not be under htdocs for security reasons. " Sorry Uwe, was not meaning to sound negative, I love the product, I was just reporting my problems. Our host (1&1) does not give access to outside of htdocs, so I had to have data within the letodms folder - but for us that is fine as all our docuemtns are open to all "Sure, propper path names are always an issue, but letodms doesn't behave differently from other php applications. On Unix file names are case sensitive, but that do not have to be absolute. The data folder can be everywhere and it should not be under htdocs for security reasons. " Sorry Uwe, was not meaning to sound negative, I love the product, I was just reporting my problems. Our host (1&1) does not give access to outside of htdocs, so I had to have data within the letodms folder - but for us that is fine as all our docuemtns are open to all |