This manual is deprecated. Please visit https://groupoffice.readthedocs.io for the latest documentation. |
Difference between revisions of "Talk:Installation"
From Group-Office Groupware and CRM Documentation
(New page: I suggest changing the ioncube loaders to something more Debian like. Instead of adding ioncube to php.ini, which is very error prone und not 100% upgradeable you should do the following: ...) |
|||
Line 3: | Line 3: | ||
Create a file /etc/php5/conf.d/ioncube.ini and insert the following lines: | Create a file /etc/php5/conf.d/ioncube.ini and insert the following lines: | ||
+ | <pre> | ||
zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so | zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so | ||
zend_extension_ts=/usr/local/ioncube/ioncube_loader_lin_5.2_ts.so | zend_extension_ts=/usr/local/ioncube/ioncube_loader_lin_5.2_ts.so | ||
+ | </pre> | ||
+ | |||
+ | The ts version is for threaded php. It can't hurt to add this even if you don't need it. I could'nt test this yet, thats why I added it to discussion. |
Revision as of 11:57, 17 November 2009
I suggest changing the ioncube loaders to something more Debian like. Instead of adding ioncube to php.ini, which is very error prone und not 100% upgradeable you should do the following:
Create a file /etc/php5/conf.d/ioncube.ini and insert the following lines:
zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so zend_extension_ts=/usr/local/ioncube/ioncube_loader_lin_5.2_ts.so
The ts version is for threaded php. It can't hurt to add this even if you don't need it. I could'nt test this yet, thats why I added it to discussion.