eXpansion 0.9.7 @ nighty branch (26/7/2014)

The next generation of server controlling with clean and powerful user interface

Moderators: oliverde8, reaby, NADEO

chipo89
Posts: 26
Joined: 21 Jul 2014, 16:25

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by chipo89 »

i have past your code in my WidgetAd.php

Code: Select all

<?php
/**
* Created by PhpStorm.
* User: chipo
* Date: 02/08/14
* Time: 12:42
*/

namespace ManiaLivePlugins\chipo89\news\Gui\Widgets;


class WidgetAd extends \ManiaLivePlugins\eXpansion\Gui\Widgets\PlainWidget {

    protected $label;

    protected function onConstruct() {
        parent::onConstruct();
        $this->label= new \ManiaLib\Gui\Elements\Quad();
        $this->addComponent($this->quad);
    }

    public function setText( $text) {
        $this->label->setText($text, true);

    }
}
now when i want run plugin , not crash but error
error : undefined property:
ManiaLivePlugins\chipo89\news\Gui\Widgets\WidgetAd: :$quad
TheBigG.
Posts: 401
Joined: 11 Jun 2011, 16:11

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by TheBigG. »

hi,

should /admin netstat really show 51 players and not 50 player?
Image
also it seems that spectators are not included in the widget?

second thing is that the dedimania widget shows different things from /dedirecs and after race did end all dedimania records are lost.
Image
Client:
OS: Win10/Debian CPU: Intel 9900k GPU: NVIDIA 1080TI Display: 3x Acer Predator XB271HUbmiprz 1440p@165 Hz

Server:
OS: Debian Stable @ Backports Kernel CPU: Intel 6700k RAM: 32 GB Storage: 2x 256 GB NVMe SSD@Raid 1
oliverde8
Posts: 1286
Joined: 16 Jun 2010, 07:33
Location: in a Blue Box

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by oliverde8 »

TheBigG. wrote:hi,

should /admin netstat really show 51 players and not 50 player?

also it seems that spectators are not included in the widget?

second thing is that the dedimania widget shows different things from /dedirecs and after race did end all dedimania records are lost.
Hi,

I don't understand your first issue, maybe reaby does he understands the plugin;

For the dedimania widget, you are not using last version of eXpasion and lately I have been fixing that widget so I don't know it might just be the update.
Not saving the dedimania records is there a rule for very long maps I wonder :oops: because it works :roflol: will check again but I lately had checked.
Image
Developper for The next generation, Clean and Powerfull controller eXpansion for your SM & TM server . Working on eXpansion² with full MP4 support and many other awesome features...
TheBigG.
Posts: 401
Joined: 11 Jun 2011, 16:11

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by TheBigG. »

oliverde8 wrote: For the dedimania widget, you are not using last version of eXpasion and lately I have been fixing that widget so I don't know it might just be the update.
Not saving the dedimania records is there a rule for very long maps I wonder :oops: because it works :roflol: will check again but I lately had checked.
/admin check says im up to date, also i don't understand why you safe the time for dedimania after all rounds are finished and not for each round like the local record does. :?:

will check for the dedimania thing next weekly race if it will then be safed if i run multiple times /admin update /admin manialive restart before.

Next request for future is that live ranking does show for the player driving how far ahead the player before him and how far behind the player behind him is, that was wished from lots of players on fb's weekly race so they can see better if they have to drive faster or can drive safer.

Thanks for your work :thx:
Client:
OS: Win10/Debian CPU: Intel 9900k GPU: NVIDIA 1080TI Display: 3x Acer Predator XB271HUbmiprz 1440p@165 Hz

Server:
OS: Debian Stable @ Backports Kernel CPU: Intel 6700k RAM: 32 GB Storage: 2x 256 GB NVMe SSD@Raid 1
oliverde8
Posts: 1286
Joined: 16 Jun 2010, 07:33
Location: in a Blue Box

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by oliverde8 »

TheBigG. wrote:
oliverde8 wrote: For the dedimania widget, you are not using last version of eXpasion and lately I have been fixing that widget so I don't know it might just be the update.
Not saving the dedimania records is there a rule for very long maps I wonder :oops: because it works :roflol: will check again but I lately had checked.
/admin check says im up to date, also i don't understand why you safe the time for dedimania after all rounds are finished and not for each round like the local record does. :?:
Hmm wonder if admin check works XD which branch were you running? night no?
Well for dedimania to accept records we need to send a validation replay and the game genarate one for the entire race and not just one lap. :(
TheBigG. wrote: will check for the dedimania thing next weekly race if it will then be safed if i run multiple times /admin update /admin manialive restart before.
Well until then we will probably release the 0.9.7 so you might consider switching to master when we do.
TheBigG. wrote: Next request for future is that live ranking does show for the player driving how far ahead the player before him and how far behind the player behind him is, that was wished from lots of players on fb's weekly race so they can see better if they have to drive faster or can drive safer.

Thanks for your work :thx:
Well I agree it something that would be great, but at the moment we are a bit at a stand still for features. Adding features makes maintaining eXpansion harder, we expect other developers to join the development and do such things.
Of course in the future we might do this, but at the moment my priority in eXPansion is to prepare the next release,
and later work on making eXpansion even better for developers and make it a better platform for feature developpment.

Example is settings not being separate for each plugin not all of them but at least some of them needs to be separated. The code structure allows it but to gain time we had to let go of the feature like this one that is actually coded.
Image
Developper for The next generation, Clean and Powerfull controller eXpansion for your SM & TM server . Working on eXpansion² with full MP4 support and many other awesome features...
oliverde8
Posts: 1286
Joined: 16 Jun 2010, 07:33
Location: in a Blue Box

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by oliverde8 »

chipo89 wrote:i have past your code in my WidgetAd.php

Code: Select all

<?php
/**
* Created by PhpStorm.
* User: chipo
* Date: 02/08/14
* Time: 12:42
*/

namespace ManiaLivePlugins\chipo89\news\Gui\Widgets;


class WidgetAd extends \ManiaLivePlugins\eXpansion\Gui\Widgets\PlainWidget {

    protected $label;

    protected function onConstruct() {
        parent::onConstruct();
        $this->label= new \ManiaLib\Gui\Elements\Quad();
        $this->addComponent($this->quad);
    }

    public function setText( $text) {
        $this->label->setText($text, true);

    }
}
now when i want run plugin , not crash but error
error : undefined property:
ManiaLivePlugins\chipo89\news\Gui\Widgets\WidgetAd: :$quad
hey that is because I forgot to replace $this->quad by $this->label on the line

Code: Select all

$this->addComponent($this->quad);
You should try and read some tutorials about coding, it will help you, and allow you to learn faster :thumbsup:
Image
Developper for The next generation, Clean and Powerfull controller eXpansion for your SM & TM server . Working on eXpansion² with full MP4 support and many other awesome features...
reaby
Posts: 956
Joined: 29 Dec 2010, 23:26
Location: Eastern Finland
Contact:

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by reaby »

Just for info:
very cool animations has been added for menu and windows :)

to see in action join at:
http://maniapla.net/#join=rmp_testserver

right click for menu and select menu item to open window :)
oliverde8
Posts: 1286
Joined: 16 Jun 2010, 07:33
Location: in a Blue Box

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by oliverde8 »

Hey today reaby has done a huuuugeeee job fine tuning expansion. I have done little :) here is the changes fixes applied to the nighty :)
  • server statistics fixed
  • Tooltips in windows fixed => it should explain why no one understood the plugin windows red and green icons XD
  • Cool animation added to the menu on opening
  • Load screen can now shos Mania exchange images of the maps, for a greater wooow effect
  • Animation on opening & closing windows for woow effect as well
edit : Sorry but just seen that Live Ranking & Local records widget didn't work in script mode since dedimania widget fix in script mode. Should be fixed.
Image
Developper for The next generation, Clean and Powerfull controller eXpansion for your SM & TM server . Working on eXpansion² with full MP4 support and many other awesome features...
TheBigG.
Posts: 401
Joined: 11 Jun 2011, 16:11

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by TheBigG. »

hello,

here what i got in my error log

Code: Select all

[2014-07-19T11:11:22+00:00] 
    Occured on 19.07.2014 at 11:11:22 at process with ID #14908
    ---------------------------------
 -> RuntimeException with code 0
    Can't peek at an empty heap
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php on line 65
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(65): SplPriorityQueue->top()
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/Plugin.php(332): ManiaLive\Event\Dispatcher::unregister('ManiaLive\\Dedic...', Object(ManiaLivePlugins\eXpansion\JoinLeaveMessage\JoinLeaveMessage), 4294967295)
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/Plugin.php(468): ManiaLive\PluginHandler\Plugin->disableDedicatedEvents()
           #3 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/BasicPlugin.php(232): ManiaLive\PluginHandler\Plugin->onUnload()
           #4 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(101): ManiaLivePlugins\eXpansion\Core\types\BasicPlugin->onUnload()
           #5 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/BasicPlugin.php(475): ManiaLive\PluginHandler\PluginHandler->unload('\\ManiaLivePlugi...')
           #6 [internal function]: ManiaLivePlugins\eXpansion\Core\types\BasicPlugin->exp_unload('\\ManiaLivePlugi...')
           #7 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(195): ReflectionMethod->invokeArgs(Object(ManiaLivePlugins\eXpansion\JoinLeaveMessage\JoinLeaveMessage), Array)
           #8 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/AutoLoad/AutoLoad.php(275): ManiaLive\PluginHandler\PluginHandler->callPublicMethod(Object(ManiaLivePlugins\eXpansion\AutoLoad\AutoLoad), '\\ManiaLivePlugi...', 'exp_unload', Array)
           #9 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/AutoLoad/Gui/Controls/Plugin.php(218): ManiaLivePlugins\eXpansion\AutoLoad\AutoLoad->tooglePlugin('the-big-gll.', Object(ManiaLivePlugins\eXpansion\JoinLeaveMessage\MetaData))
           #10 [internal function]: ManiaLivePlugins\eXpansion\AutoLoad\Gui\Controls\Plugin->startPlugin('the-big-gll.')
           #11 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Gui/ActionHandler.php(71): call_user_func_array(Array, Array)
           #12 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/DedicatedApi/Callback/Event.php(66): ManiaLive\Gui\ActionHandler->onPlayerManialinkPageAnswer(167, 'the-big-gll.', '954', Array)
           #13 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(120): ManiaLive\DedicatedApi\Callback\Event->fireDo(Object(ManiaLive\Gui\ActionHandler))
           #14 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(123): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\DedicatedApi\Callback\Event))
           #15 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #16 {main}

[2014-07-19T13:07:09+00:00] 
    Occured on 19.07.2014 at 13:07:09 at process with ID #31853
    ---------------------------------
 -> RuntimeException with code 0
    Can't peek at an empty heap
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php on line 65
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(65): SplPriorityQueue->top()
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/Plugin.php(332): ManiaLive\Event\Dispatcher::unregister('ManiaLive\\Dedic...', Object(ManiaLivePlugins\eXpansion\Widgets_Netlost\Widgets_Netlost), 4294967295)
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/Plugin.php(468): ManiaLive\PluginHandler\Plugin->disableDedicatedEvents()
           #3 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/BasicPlugin.php(232): ManiaLive\PluginHandler\Plugin->onUnload()
           #4 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(101): ManiaLivePlugins\eXpansion\Core\types\BasicPlugin->onUnload()
           #5 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/BasicPlugin.php(475): ManiaLive\PluginHandler\PluginHandler->unload('\\ManiaLivePlugi...')
           #6 [internal function]: ManiaLivePlugins\eXpansion\Core\types\BasicPlugin->exp_unload('\\ManiaLivePlugi...')
           #7 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(195): ReflectionMethod->invokeArgs(Object(ManiaLivePlugins\eXpansion\Widgets_Netlost\Widgets_Netlost), Array)
           #8 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/AutoLoad/AutoLoad.php(276): ManiaLive\PluginHandler\PluginHandler->callPublicMethod(Object(ManiaLivePlugins\eXpansion\AutoLoad\AutoLoad), '\\ManiaLivePlugi...', 'exp_unload', Array)
           #9 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/AutoLoad/Gui/Controls/Plugin.php(218): ManiaLivePlugins\eXpansion\AutoLoad\AutoLoad->tooglePlugin('the-big-gll.', Object(ManiaLivePlugins\eXpansion\Widgets_Netlost\MetaData))
           #10 [internal function]: ManiaLivePlugins\eXpansion\AutoLoad\Gui\Controls\Plugin->startPlugin('the-big-gll.')
           #11 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Gui/ActionHandler.php(71): call_user_func_array(Array, Array)
           #12 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/DedicatedApi/Callback/Event.php(66): ManiaLive\Gui\ActionHandler->onPlayerManialinkPageAnswer(157, 'the-big-gll.', '1486', Array)
           #13 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(120): ManiaLive\DedicatedApi\Callback\Event->fireDo(Object(ManiaLive\Gui\ActionHandler))
           #14 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(123): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\DedicatedApi\Callback\Event))
           #15 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #16 {main}

[2014-08-02T07:55:21+00:00] 
    Occured on 02.08.2014 at 07:55:21 at process with ID #6653
    ---------------------------------
 -> Maniaplanet\DedicatedServer\Xmlrpc\TransportException with code 2
    Connection interrupted while reading header
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php on line 221
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(193): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->readMessage()
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(165): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->flush()
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(116): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->getCallbacks()
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(116): Maniaplanet\DedicatedServer\Connection->executeCallbacks()
           #4 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #5 {main}

[2014-08-02T07:55:21+00:00] 
    Occured on 02.08.2014 at 07:55:21 at process with ID #6653
    ---------------------------------
 -> ManiaLive\PluginHandler\Exception with code 0
    Plugin "\ManiaLivePlugins\eXpansion\Core\Core" cannot be unloaded. It is required by other plugins.
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php on line 99
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(245): ManiaLive\PluginHandler\PluginHandler->unload('\\ManiaLivePlugi...')
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Event.php(32): ManiaLive\PluginHandler\PluginHandler->onTerminate()
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(120): ManiaLive\Application\Event->fireDo(Object(ManiaLive\PluginHandler\PluginHandler))
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(143): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\Application\Event))
           #4 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #5 {main}

[2014-08-02T07:55:21+00:00] 
    Occured on 02.08.2014 at 07:55:21 at process with ID #6653
    ---------------------------------
 -> ErrorException with code 8
    fwrite(): send of 243 bytes failed with errno=32 Broken pipe
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php on line 283
  - Stack: #0 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/ErrorHandler.php(15): ManiaLive\Application\ErrorHandling::createExceptionFromError(8, 'fwrite(): send ...', '/home/tm2/ex_60...', 283)
           #1 [internal function]: ManiaLivePlugins\eXpansion\Core\types\ErrorHandler::createExceptionFromError(8, 'fwrite(): send ...', '/home/tm2/ex_60...', 283, Array)
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(283): fwrite(Resource id #45, '\xEB\x00\x00\x00\xCF\x8E\x03\x80<?xml v...')
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(247): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->write('\xEB\x00\x00\x00\xCF\x8E\x03\x80<?xml v...')
           #4 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(124): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->writeMessage('<?xml version="...')
           #5 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(140): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->query('ChatSendServerM...', Array)
           #6 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(517): Maniaplanet\DedicatedServer\Connection->execute('ChatSendServerM...', Array, false)
           #7 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(479): Maniaplanet\DedicatedServer\Connection->chatSend('[Notice] eXpans...', NULL, true, false)
           #8 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/Core.php(238): Maniaplanet\DedicatedServer\Connection->chatSendServerMessage('[Notice] eXpans...')
           #9 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Event.php(32): ManiaLivePlugins\eXpansion\Core\Core->onTerminate()
           #10 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(120): ManiaLive\Application\Event->fireDo(Object(ManiaLivePlugins\eXpansion\Core\Core))
           #11 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(143): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\Application\Event))
           #12 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #13 {main}

[2014-08-02T13:40:06+00:00] 
    Occured on 02.08.2014 at 13:40:06 at process with ID #10315
    ---------------------------------
 -> Maniaplanet\DedicatedServer\Xmlrpc\TransportException with code 2
    Connection interrupted while reading data
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php on line 234
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(193): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->readMessage()
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(165): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->flush()
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(116): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->getCallbacks()
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(116): Maniaplanet\DedicatedServer\Connection->executeCallbacks()
           #4 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #5 {main}

[2014-08-02T13:40:06+00:00] 
    Occured on 02.08.2014 at 13:40:06 at process with ID #10315
    ---------------------------------
 -> ManiaLive\PluginHandler\Exception with code 0
    Plugin "\ManiaLivePlugins\eXpansion\Core\Core" cannot be unloaded. It is required by other plugins.
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php on line 99
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/PluginHandler/PluginHandler.php(245): ManiaLive\PluginHandler\PluginHandler->unload('\\ManiaLivePlugi...')
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Event.php(32): ManiaLive\PluginHandler\PluginHandler->onTerminate()
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(121): ManiaLive\Application\Event->fireDo(Object(ManiaLive\PluginHandler\PluginHandler))
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(143): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\Application\Event))
           #4 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #5 {main}

[2014-08-02T13:40:06+00:00] 
    Occured on 02.08.2014 at 13:40:06 at process with ID #10315
    ---------------------------------
 -> ErrorException with code 8
    fwrite(): send of 243 bytes failed with errno=32 Broken pipe
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php on line 283
  - Stack: #0 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/types/ErrorHandler.php(15): ManiaLive\Application\ErrorHandling::createExceptionFromError(8, 'fwrite(): send ...', '/home/tm2/ex_60...', 283)
           #1 [internal function]: ManiaLivePlugins\eXpansion\Core\types\ErrorHandler::createExceptionFromError(8, 'fwrite(): send ...', '/home/tm2/ex_60...', 283, Array)
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(283): fwrite(Resource id #45, '\xEB\x00\x00\x00\xF9%\x00\x80<?xml v...')
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(247): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->write('\xEB\x00\x00\x00\xF9%\x00\x80<?xml v...')
           #4 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(124): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->writeMessage('<?xml version="...')
           #5 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(140): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->query('ChatSendServerM...', Array)
           #6 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(517): Maniaplanet\DedicatedServer\Connection->execute('ChatSendServerM...', Array, false)
           #7 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(479): Maniaplanet\DedicatedServer\Connection->chatSend('[Notice] eXpans...', NULL, true, false)
           #8 /home/tm2/ex_6001_krip_1/libraries/ManiaLivePlugins/eXpansion/Core/Core.php(271): Maniaplanet\DedicatedServer\Connection->chatSendServerMessage('[Notice] eXpans...')
           #9 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Event.php(32): ManiaLivePlugins\eXpansion\Core\Core->onTerminate()
           #10 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Event/Dispatcher.php(121): ManiaLive\Application\Event->fireDo(Object(ManiaLivePlugins\eXpansion\Core\Core))
           #11 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(143): ManiaLive\Event\Dispatcher::dispatch(Object(ManiaLive\Application\Event))
           #12 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #13 {main}

edit:
here info log
http://afo1.afo-tm.org/manialive-info-l ... 8-2014.txt
Client:
OS: Win10/Debian CPU: Intel 9900k GPU: NVIDIA 1080TI Display: 3x Acer Predator XB271HUbmiprz 1440p@165 Hz

Server:
OS: Debian Stable @ Backports Kernel CPU: Intel 6700k RAM: 32 GB Storage: 2x 256 GB NVMe SSD@Raid 1
oliverde8
Posts: 1286
Joined: 16 Jun 2010, 07:33
Location: in a Blue Box

Re: eXpansion 0.9.7 @ nighty branch (26/7/2014)

Post by oliverde8 »

Hey,


logs are great, we can see why dedimania records weren't saved, :) not sure if it can be fixed or limitation of dedimania we will inform ourselves.

The messages is clear, we send time for all laps but it excpet time for one lap, but then how do we get validation replay. not sure it can be done will check xaseco & fast code to see.

For the error : The first errors are old, date from last month so we are good because it has already been fixed :) It doesen't repeat it self on later on so we are good.

Code: Select all

[2014-07-19T13:07:09+00:00] 
    Occured on 19.07.2014 at 13:07:09 at process with ID #31853
    ---------------------------------
-> RuntimeException with code 0
    Can't peek at an empty heap
The othe error is more troublesome. Did you close and restart your dedicated server yesterday? it just lost connection with dedicated server so not sure the problem comes from us.

Code: Select all

[2014-08-02T07:55:21+00:00] 
    Occured on 02.08.2014 at 07:55:21 at process with ID #6653
    ---------------------------------
-> Maniaplanet\DedicatedServer\Xmlrpc\TransportException with code 2
    Connection interrupted while reading header
  - in /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php on line 221
  - Stack: #0 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(193): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->readMessage()
           #1 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Xmlrpc/GbxRemote.php(165): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->flush()
           #2 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/dedicated-server-api/libraries/Maniaplanet/DedicatedServer/Connection.php(116): Maniaplanet\DedicatedServer\Xmlrpc\GbxRemote->getCallbacks()
           #3 /home/tm2/ex_6001_krip_1/vendor/maniaplanet/manialive-lib/ManiaLive/Application/Application.php(116): Maniaplanet\DedicatedServer\Connection->executeCallbacks()
           #4 /home/tm2/ex_6001_krip_1/bootstrapper.php(73): ManiaLive\Application\Application->run()
           #5 {main}
Image
Developper for The next generation, Clean and Powerfull controller eXpansion for your SM & TM server . Working on eXpansion² with full MP4 support and many other awesome features...
Locked

Return to “eXpansion”

Who is online

Users browsing this forum: No registered users and 1 guest