error when running first time

Ask your questions regarding TimeTrex installation here.
Locked
lfrazier
Posts: 37
Joined: Wed Aug 12, 2009 8:12 am
Location: Northern Colorado

error when running first time

Post by lfrazier »

I installed WAMP.
Setup timetrex.ini.php (see below) as I thought it should be.
Ran TimeTrex from this URL: http://localhost:8088/timetrex

Am getting this error when running TimeTrex for first time:
Deprecated: Function split() is deprecated in C:\wamp\www\TimeTrex\classes\modules\core\Profiler.class.php on line 193

Will not go into setup. What am I doing incorrectly?

Versions:
PHP 5.3.0
MySQL 5.1.36
Apache 2.2.11

I unzipped TimeTrex into c:\wamp\www\timetrex

timetrex.ini.php:

Code: Select all

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
log = c:\wamp\logs

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

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



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

host = localhost
database_name = timetrex
user = timetrex
password = ENTER_PASSWORD_HERE



;
; Cache settings
;
[cache]
enable = TRUE
dir = c:\wamp\tmp\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

;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
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Post by shaunw »

TimeTrex doesn't support PHP v5.3.0 yet, please use 5.2.X instead.
Locked