Regarding Setup Of TimeTrex software in web server

Ask your questions regarding TimeTrex installation here.
Locked
universaltechnolabs
Posts: 3
Joined: Thu Feb 06, 2014 10:42 pm

Regarding Setup Of TimeTrex software in web server

Post by universaltechnolabs »

Hello,

I want to install TimeTrex software on my web server but I have tried number of times for installing software in our web server but getting some error on this and not installed so I want your help regarding installation.

Please check following URL for checking the error..

1. http://universaltechnolabs.net/timetrex/interface/flex/

2. When I install TimeTrex at that time got terms and agreement page but when click on for further process getting some error.
For checking that please check this URL.. http://universaltechnolabs.net/timetrex ... nstall.php

3. Here I described the timetrex.ini.php file that i have configured please check that and also let me know is there any error in this...

********************
timetrex.ini.php
********************

;
;
; TimeTrex Configuration File
; *Windows Example*
;
;

;
; System paths. NO TRAILING SLASHES!
;
[http://universaltechnolabs.net/timetrex]
;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 = /timetrex/interface

;
;log directory
;
log = c:\timetrex\log

;
;Misc storage, for attachments/images
;
storage = c:\timetrex\storage

;
;Full path and name to the PHP CLI Binary
;
php_cli = c:\php\php.exe



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

host = admintimetrex.db.10424531.hostedresource.com
database_name = admintimetrex
user = admintimetrex
password = Abc@123#


;
; 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.gmail.com
;smtp_port=587
;smtp_username=timetrex@gmail.com
;smtp_password=testpass123


;
; Cache settings
;
[cache]
enable = TRUE
dir = c:\temp\timetrex



[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 = admintimetrex.db.10424531.hostedresource.com

default_interface = flex

;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


;<?php if (; //Cause parse error to hide from prying eyes, just in case. DO NOT REMOVE?>

***********************************************************************
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Re: Regarding Setup Of TimeTrex software in web server

Post by shaunw »

Have the following line in your timetrex.ini.php file:
Which should be
[path]
Because you have changed it, TimeTrex isn't able to find any of the settings that are under that section.
universaltechnolabs
Posts: 3
Joined: Thu Feb 06, 2014 10:42 pm

Re: Regarding Setup Of TimeTrex software in web server

Post by universaltechnolabs »

Hello,

I have checked that and also changed [path] but still i am getting an error.

When i install timetrex software with this link http://www.universaltechnolabs.net/time ... nstall.php at that time got error with this link http://www.universaltechnolabs.net/time ... icense.php.

I also attached that image please check and please give me solution because its a very urgent for me.

Thanks
Attachments
Capture.JPG
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Re: Regarding Setup Of TimeTrex software in web server

Post by shaunw »

Please attach your timetrex.ini.php file here, so we can see what settings you have.
universaltechnolabs
Posts: 3
Joined: Thu Feb 06, 2014 10:42 pm

Re: Regarding Setup Of TimeTrex software in web server

Post by universaltechnolabs »

Hello,

Here i mention all code of timetrex.ini.php file, please check..

*************************************************
;
;
; TimeTrex Configuration File
; *Windows 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 = /timetrex/interface

;
;log directory
;
log = c:\timetrex\log

;
;Misc storage, for attachments/images
;
storage = c:\timetrex\storage

;
;Full path and name to the PHP CLI Binary
;
php_cli = c:\php\php.exe



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

host = admintimetrex.db.10424531.hostedresource.com
database_name = admintimetrex
user = admintimetrex
password = Abc@123#


;
; 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.gmail.com
;smtp_port=587
;smtp_username=timetrex@gmail.com
;smtp_password=testpass123


;
; Cache settings
;
[cache]
enable = TRUE
dir = c:\temp\timetrex



[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 = admintimetrex.db.10424531.hostedresource.com

default_interface = flex

;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


































;<?php if (; //Cause parse error to hide from prying eyes, just in case. DO NOT REMOVE?>

*************************************************

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

Re: Regarding Setup Of TimeTrex software in web server

Post by shaunw »

You didn't attach the file (you copied and pasted it instead), and I'm guessing that you also modified it, so we can't tell for sure what the problem is, but if your password has any "special" characters in it, it should be wrapped in quotes, ie:

password = "Abc@123#"
Locked