TimeTrex Install issue: PHP CLI ... does not exist or ...

Ask your questions regarding TimeTrex installation here.
Post Reply
myurukov
Posts: 1
Joined: Tue Jan 03, 2017 1:59 am

TimeTrex Install issue: PHP CLI ... does not exist or ...

Post by myurukov »

Hello,

I'm trying to install TimeTrex_Community_Edition_v10.0.1 on my Ubuntu 16.04.1 LTS with Plesk Onyx v17.0.17 as a virtualhost.

This is my PHP info http://time.qualityhouse.com/interface/ ... hpinfo.php
errorimg.JPG
errorimg.JPG (123.29 KiB) Viewed 3494 times
This is my timetrex.ini.php:

;<?php die('Access denied...');?>
;
;
; TimeTrex Configuration File
; *Linux* Example
;
;

;
; System paths. NO TRAILING SLASHES!
;
[path]
;URL to TimeTrex web root directory. ie: http://your.domain.com/<*BASE_URL*>
;DO NOT INCLUDE http://your.domain.com, just the directory AFTER your domain
base_url = /interface

;
;log directory
;
;Linux
log = /var/www/vhosts/qualityhouse.com/time.qualityhouse.com/log

;
;Misc storage, for attachments/images
;
;Linux
storage = /var/www/vhosts/qualityhouse.com/time.qualityhouse.com/storage

;
;Full path and name to the PHP CLI Binary
;
;Linux
php_cli = /var/www/vhosts/qualityhouse.com/:/tmp/



;
; Database connection settings. These can be set from the installer.
;
[database]
type = mysqli
;type = postgres8

host = localhost
database_name = db
user = user
password = "pass"


;
; Email delivery settings.
;
[mail]
;Least setup, deliver email through TimeTrex's email relay via SOAP (HTTP port 80)
;delivery_method = soap

;Deliver email through local sendmail command specified in php.ini
;delivery_method = mail

;Deliver email through remote SMTP server with the following settings.
delivery_method = smtp
smtp_host=smtp.qualityhouse.com
smtp_port=25
smtp_username=noreply@qualityhouse.com
smtp_password=LEPASS


;
; Cache settings
;
[cache]
enable = TRUE
;Linux
dir = /var/www/vhosts/qualityhouse.com/time.qualityhouse.com/tmp



[debug]
;Set to false if you're debugging
production = TRUE

enable = FALSE
enable_display = FALSE
buffer_output = TRUE
enable_log = FALSE
verbosity = 10



[other]
; Force all clients to use SSL.
force_ssl = FALSE
installer_enabled = TRUE
primary_company_id = 0
hostname = localhost

; System Administrators Email address to send critical errors to if necessary. Set to FALSE to disable completely.
;system_admin_email = "sysadmin@mydomain.com"

default_interface = html5

;WARNING: DO NOT CHANGE THIS AFTER YOU HAVE INSTALLED TIMETREX.
;If you do it will cause all your passwords to become invalid,
;and you may lose access to some encrypted data.
salt = 0


I'm pretty sure I'm missing something basic but I can't put my finger on it.

Could you please help?

Thanks in advance!!!
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Re: TimeTrex Install issue: PHP CLI ... does not exist or ..

Post by shaunw »

Code: Select all

php_cli = /var/www/vhosts/qualityhouse.com/:/tmp/
That should be the full path to your PHP CLI executable, its usually something like: /usr/bin/php
Post Reply