This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
niota-docs:niota_install_php [2025/07/17 14:11] 127.0.0.1 external edit |
niota-docs:niota_install_php [2025/11/23 20:32] (current) admin [configure PHP] |
||
|---|---|---|---|
| Line 20: | Line 20: | ||
| ==== configure Apache ==== | ==== configure Apache ==== | ||
| + | If your Apache is currently running, shut it down! | ||
| + | |||
| + | <code - apache_shutdown.txt> | ||
| + | |||
| + | sc stop Apache24x64_niota | ||
| + | |||
| + | </code> | ||
| + | |||
| Open your Apache **''..\conf\httpd.conf''** file and check if PHP settings are made correctly | Open your Apache **''..\conf\httpd.conf''** file and check if PHP settings are made correctly | ||
| Line 58: | Line 66: | ||
| * extension_dir = -- set it to you PHP extension directory | * extension_dir = -- set it to you PHP extension directory | ||
| + | |||
| + | There are some extions that must be enabled. | ||
| + | - zip - for EXCEL upload | ||
| + | - soap - for Zagreus SOAP calls | ||
| + | - sqlserver in case you need native MS SQL connection | ||
| + | ... | ||
| <code - phpini_phpconfig.txt> | <code - phpini_phpconfig.txt> | ||
| Line 63: | Line 77: | ||
| session.save_path = "c:\Apache24x64\tmp\" | session.save_path = "c:\Apache24x64\tmp\" | ||
| extension_dir = "c:\Program Files\php-8.2.18_x64\ext" | extension_dir = "c:\Program Files\php-8.2.18_x64\ext" | ||
| + | |||
| + | extension=soap | ||
| + | extension=php_zip.dll | ||
| + | extension=php_sqlsrv_82_ts_x64.dll | ||
| + | |||
| + | |||
| </code> | </code> | ||