Page 1 of 2

ManiaLive wont start.

Posted: 17 Sep 2011, 16:17
by insistent
Hi, i have been trying to start manialive, ive installed php 5.3.8, changed my run.ini to look like this.

; config the path to your php executeable here
phpPath=C:\Program Files (x86)\PHP\php.exe
; do not remove this line!

But when i try to run run, or updater or anything, a dos pop up apear then disapear immediatly, after several run, i could something like "File was unexpected this time"

Any idea? thanks.

Re: ManiaLive wont start.

Posted: 17 Sep 2011, 16:43
by insistent
Ah, i copied the php to c:\php\ instead, now it work, but i still got a problem, i changed the timezone in php.ini to this.

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
;date.timezone = "Europe/Berlin"

; http://php.net/date.default-latitude
;date.default_latitude = 31.7667

; http://php.net/date.default-longitude
;date.default_longitude = 35.2333

; http://php.net/date.sunrise-zenith
;date.sunrise_zenith = 90.583333

; http://php.net/date.sunset-zenith
;date.sunset_zenith = 90.583333

[filter]
; http://php.net/filter.default
;filter.default = unsafe_raw

; http://php.net/filter.default-flags
;filter.default_flags =


But i still get the timezone error when i run "Run.bat"

Any idea?

Re: ManiaLive wont start.

Posted: 17 Sep 2011, 16:52
by svens
insistent wrote:;date.timezone = "Europe/Berlin"
Replace this line with:
date.timezone = Europe/Berlin
The semicolon comments out the line (the setting has no effect). You can also leave away the quotes, but you don't have to.

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 00:25
by insistent
I changed it to this, im still getting the error.

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 00:27
by w1lla
try in bootstrapper.php

Code: Select all

date_default_timezone_set('Europe/Berlin');
right after the comments.

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 01:03
by insistent

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 01:08
by w1lla
you have a ( in your config.ini

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 01:11
by insistent
date_default_timezone_get(Europe/Berlin)

Is the only thing on config.ini

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 01:26
by w1lla
remove it in config.ini

try in bootstrapper.php

Code: Select all

date_default_timezone_set('Europe/Berlin');

right after the comments.

Re: ManiaLive wont start.

Posted: 20 Sep 2011, 01:38
by insistent
If i remove it, i will get the timezone error again.

Damn its complicated.