Installation Issue at license.php

Ask your questions regarding TimeTrex installation here.
Locked
dclune
Posts: 2
Joined: Tue Apr 10, 2007 7:59 pm

Installation Issue at license.php

Post by dclune »

Hi there,

I am getting to issues that I need help with. When I browse to http://moana.digitalnetwork.co.nz/~stra ... icense.php I get to a page telling me I need to adjust my timetrex.ini.php file to allow me to install.

It says:
The installer has already been run, as a safety measure it has been disabled from running again. If you are absolutely sure you want to run it again, or upgrade your system, please go to your timetrex.ini.php file and set "installer_enabled" to "TRUE". The line should look like:

"installer_enabled = TRUE"

After this change has been made, you can click the "Start" button below to begin your installation. After the installation is complete, you will want to change "installer_enabled" to "FALSE".

This is already set to true.... So why cant i continue?

Also at the top of the page I get the following error:
Warning: Error parsing /home/strategi/public_html/includes/../timetrex.ini.php on line 14 in /home/strategi/public_html/includes/global.inc.php on line 53
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Post by shaunw »

Warning: Error parsing /home/strategi/public_html/includes/../timetrex.ini.php on line 14 in /home/strategi/public_html/includes/global.inc.php on line 53
This is the issue here, you have a parse error in the timetrex.ini.php file on line 14. Can you please paste lines 10-15 here?
dclune
Posts: 2
Joined: Tue Apr 10, 2007 7:59 pm

timetrex.ini.php

Post by dclune »

;
;
; 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 = /~strategi

;
;log directory
;
;Linux
log = /home/strategi/public_html/logs
;
;Misc storage, for attachments/images
;
;Linux
storage = /home/strategi/public_html/storage

;
;Full path and name to the PHP CLI Binary
;
;Linux
php_cli = /usr/bin/php



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

host = localhost
database_name = strategi_time
user = strategi_time
password = ***** (Edit: Doesn't really need to be posted here)



;
; Cache settings
;
[cache]
enable = TRUE
;Linux
dir = /tmp/timetrex



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

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



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

;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


































;<? 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

Post by shaunw »

Change your base_url line to:

Code: Select all

base_url = "/~strategi "
Locked