Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem installing 3.3.0
#11
(02-29-2012, 10:40 PM)SSI-CG Wrote: settings.xml or conf.Settings.php?

settings.xml contains the configuration, but you don't have to edit it manually, use the installation tool.

Uwe
Reply
#12
Ran the install tool and still getting the following error in the Apache log

[Thu Mar 01 08:46:26 2012] [error] [client] PHP Warning: require_once(Zend/Search/Lucene/Document/Html.php): failed to open stream: No such file or directory in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:26 2012] [error] [client] PHP Fatal error: require_once(): Failed opening required 'Zend/Search/Lucene/Document/Html.php' (include_path='/var/www/:.:/usr/share/php:/usr/share/pear') in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:29 2012] [error] [client] PHP Warning: require_once(Zend/Search/Lucene/Document/Html.php): failed to open stream: No such file or directory in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:29 2012] [error] [client] PHP Fatal error: require_once(): Failed opening required 'Zend/Search/Lucene/Document/Html.php' (include_path='/var/www/:.:/usr/share/php:/usr/share/pear') in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
Reply
#13
Did you install Zend Framwork? I'm guessing LetoDMS_Lucene connects LetoDMS to Zend Lucene search engine. I was able to install just the 'minimal' Zend package and full-text search seems to be working.

(03-01-2012, 08:47 PM)SSI-CG Wrote: Ran the install tool and still getting the following error in the Apache log

[Thu Mar 01 08:46:26 2012] [error] [client] PHP Warning: require_once(Zend/Search/Lucene/Document/Html.php): failed to open stream: No such file or directory in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:26 2012] [error] [client] PHP Fatal error: require_once(): Failed opening required 'Zend/Search/Lucene/Document/Html.php' (include_path='/var/www/:.:/usr/share/php:/usr/share/pear') in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:29 2012] [error] [client] PHP Warning: require_once(Zend/Search/Lucene/Document/Html.php): failed to open stream: No such file or directory in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php
[Thu Mar 01 08:46:29 2012] [error] [client] PHP Fatal error: require_once(): Failed opening required 'Zend/Search/Lucene/Document/Html.php' (include_path='/var/www/:.:/usr/share/php:/usr/share/pear') in /var/www/letoDMS/Zend/Search/Lucene.php on line 27, referer: http://10.0.0.185/letoDMS//out/out.AdminTools.php

Reply
#14
Where did you install the Zend package??
Reply
#15
Since I'm using a hosted server, I don't have the ability to install packages in a default location, or (as far as I know) to change php.ini and restart apache. Here's what I did to install the packages on my host:

On my host, I created the directory /home/<user>/php. I unpacked Zend onto a local machine, and then found the path library/Zend/. This was then placed into /home/<user>/php, such that I have a file /home/<user>/php/Zend/Version.php. I also placed other PHP packages that Leto depends on (WebDAV and Log) into /home/<user>/php.

From there, it's necessary to help Leto understand where these PHP files are located, else the require_once() would fail. To do that, (please hold your nose while I tell you this), I modified letoDMS/inc/inc.Settings.php with a line to add a new include path at the top. Like this:

ini_set('include_path', ini_get('include_path'). ':/home/<user>/php');

Probably, a PHP expert would have a better way, but it's what I found to work.

(03-02-2012, 10:09 PM)SSI-CG Wrote: Where did you install the Zend package??

Reply
#16
(02-28-2012, 11:56 PM)SSI-CG Wrote: Having install issues...

I have filled out all the server settings and click Apply. I am just sent to a page with the following:

letoDMS Installation for version 3.3.0
Warning
Pear package : HTTP_WebDAV_Server : Not found
=> Install Pear package 'HTTP_WebDAV_Server', if you intend to use the webdav interface
Warning
Zend Framework : Not found
=> Install Zend Framework, if you intend to use the full text search engine


What am I missing??

I'm sorry, but I don't know how to make this clearer. What exactly is so hard to understand?

Uwe
Reply
#17
Uwe, I don't think the message is difficult to understand. It may be that, like myself, many people installing Leto are not very knowledgeable about the inner workings of PHP or Apache or some other component. It can be frustrating translating an error message into the necessary actions to fix it, if one is not already an expert.

I hope the answer I provided to SSI-CG was helpful, and accurate, and perhaps would save you a few minutes so you can focus more on enhancing Leto.

Your work on Leto is excellent, and I have honestly enjoyed getting it running for my website. Please keep up the great work!



(03-03-2012, 03:52 AM)steinm Wrote:
(02-28-2012, 11:56 PM)SSI-CG Wrote: Having install issues...

I have filled out all the server settings and click Apply. I am just sent to a page with the following:

letoDMS Installation for version 3.3.0
Warning
Pear package : HTTP_WebDAV_Server : Not found
=> Install Pear package 'HTTP_WebDAV_Server', if you intend to use the webdav interface
Warning
Zend Framework : Not found
=> Install Zend Framework, if you intend to use the full text search engine


What am I missing??

I'm sorry, but I don't know how to make this clearer. What exactly is so hard to understand?

Uwe

Reply
#18
EricM, that is what I was looking for. Followed your tips and it is working fine now with the full search as well.
Reply


Forum Jump:


Users browsing this thread: