Page 2 of 4
Re: ManiaLive r2207
Posted: 08 Feb 2011, 19:07
by 4lturbo
ManiaLive has mistakes in update. I explain
A few minutes ago, ManiaLive tell me that an update exist, so I made the update, and my version was downgraded to 1830 ...
I redownload the 2207 version, i still have the message for update (may be due to the new renamming of ManiaLive version)
Re: ManiaLive r2207
Posted: 08 Feb 2011, 19:14
by maurath
I have made, but in my phpinfo it is still the version 5.2.6
Re: ManiaLive r2207
Posted: 08 Feb 2011, 19:32
by 4lturbo
Update 5.3 on debian lenny :
Installer PHP 5.3 sur Debian Lenny
With user root
Add this lines :
Code: Select all
# PHP 5.3
deb http://php53.dotdeb.org lenny all
deb-src http://php53.dotdeb.org lenny all
Add GPG key :
Code: Select all
1 gpg --keyserver keys.gnupg.net --recv-key 89DF5277
2 gpg -a --export 89DF5277 | sudo apt-key add -
And the finish part :
Code: Select all
1 apt-get update
2 apt-get upgrade
3 apt-get install libapache2-mod-php5 php5-cli
Re: ManiaLive r2207
Posted: 08 Feb 2011, 23:09
by weerwolf
Code: Select all
/manialive1/update# php update.php
###############################
# ManiaLive Updater
###############################
> Checking local ManiaLive version ...
> ManiaLive is at version 2028
> Checking remote ManiaLive version ...
> Remote ManiaLive is at version 1830
Local version is the same or even newer than the remote one.
Re: ManiaLive r2207
Posted: 08 Feb 2011, 23:23
by weerwolf
On manialive.com im missing the freezones plugin on the downloads section
EDIT
I get the error:
Code: Select all
promatt23 drove a new 30. record!
-> ErrorException with code 0
Undefined variable: records_by_login
/manialive1/libraries/ManiaLivePlugins/Standard/Dedimania/Dedimania.php on line 794
Re: ManiaLive r2207
Posted: 08 Feb 2011, 23:59
by aseco
4lturbo wrote:ManiaLive has mistakes in update. I explain
A few minutes ago, ManiaLive tell me that an update exist, so I made the update, and my version was downgraded to 1830 ...
I redownload the 2207 version, i still have the message for update (may be due to the new renamming of ManiaLive version)
Whoops, there has been a false version info on the server.
I will fix it tomorrow morning.
Anyways, downloading the new release from Google Code project is more reliable at the moment.
It's true that the situation is a bit tricky, because we're moving to the new version numbers ...
Re: ManiaLive r2207
Posted: 09 Feb 2011, 00:03
by aseco
weerwolf wrote:On manialive.com im missing the freezones plugin on the downloads section
EDIT
I get the error:
Code: Select all
promatt23 drove a new 30. record!
-> ErrorException with code 0
Undefined variable: records_by_login
/manialive1/libraries/ManiaLivePlugins/Standard/Dedimania/Dedimania.php on line 794
Ouch, quickfix, open Dedimania.php and replace:
Code: Select all
unset($records_by_login[$record->login]);
by
Code: Select all
unset($this->records_by_login[$record->login]);
Re: ManiaLive r2207
Posted: 09 Feb 2011, 12:58
by aseco
Okay there has just been a new release of the Default Plugins package.
Thought I'd let you know because it fixes all of the issues that have been mentioned since the release of the new ManiaLive version.
Hopefully we're back to normal now - the version file on the server is updated as well, but it won't inform about the new version. Otherwise this would have led to trouble. For the next version there will be notifications and auto updating again!
Sorry for the inconveniences
As always get it here
http://code.google.com/p/manialive/downloads/list
Re: ManiaLive r2207
Posted: 10 Feb 2011, 00:11
by weerwolf
Code: Select all
[21:14:43|Dedimania] Player mekitch has been marked offline!
-> ErrorException with code 0
array_pop() expects parameter 1 to be array, null given
- in
/manialive1/libraries/ManiaLive/Gui/Windowing/WindowHandler.php on line 228
Re: ManiaLive r2207
Posted: 10 Feb 2011, 08:04
by oliverde8
Hi,
I just have found a probleme with onPlayerNewBestTime event. When you restart ML it works well but after it just stops working on other tracks. (works but not as expected)
I have looked in to your code

it seems that $player->bestTime isn't reseted onEndChallenge
I just added $player->bestTime = 0 onEndChallenge to see the effect and it was working.
Thanks