Page 9 of 9

Re: Feedback and Reports for the master branch from github

Posted: 28 Oct 2019, 21:57
by RelaxedRacer
undef.de wrote: 28 Oct 2019, 14:32 Could you please test that?
Sorry my bad, it was the vote replay and vote next, that's cousin it.
When i juke and the map end normaly it works ok, i forgot i voted "skip" everytime i juked a map.
I know its better not to use the vote plugin jet, as its not done jet, sorry for the confusion. :D

Cheers :mrgreen:

Re: Feedback and Reports for the master branch from github

Posted: 28 Jun 2020, 09:08
by speedychris
Updatet yesterday to 2020-06-18, everything fine except on every map change i get a info message on my local server rank.
How to disable that (cant find a xml config to prevent this)?

Re: Feedback and Reports for the master branch from github

Posted: 28 Jun 2020, 14:42
by undef.de
speedychris wrote: 28 Jun 2020, 09:08 Updatet yesterday to 2020-06-18, everything fine except on every map change i get a info message on my local server rank.
How to disable that (cant find a xml config to prevent this)?
If you let me see what you mean, then maybe I can help. :thumbsup:

Re: Feedback and Reports for the master branch from github

Posted: 29 Jun 2020, 19:09
by speedychris
ScreenShot.jpg
ScreenShot.jpg (374.73 KiB) Viewed 16383 times

Re: Feedback and Reports for the master branch from github

Posted: 30 Jun 2020, 10:29
by undef.de
speedychris wrote: 29 Jun 2020, 19:09 ScreenShot.jpg
That's a message from the RASP plugins and there is no configuration option in there to disable this particular message (and they never existed also in TMF and TM2).

Re: Feedback and Reports for the master branch from github

Posted: 30 Jun 2020, 19:03
by speedychris
Ah ok, thx.

Re: Feedback and Reports for the master branch from github

Posted: 02 Oct 2023, 22:36
by xaviernuma
Hello,

I'm running PHP 8.2, and when starting UASECO, it crashes immediately because a function with a nonexistent table prevents UASECO from starting. For now, I've removed the call to this function:

plugin.records_eyepiece.php (UASECO 0.9.7)

Code: Select all

public function getTopBetwins ($limit = -1) {
		global $aseco;

		$appendix = '';
		if ($limit > 0) {
			$appendix = 'LIMIT '. $limit;
		}

		if ($this->config['SCORETABLE_LISTS'][0]['TOP_BETWINS'][0]['DISPLAY'][0] === true) {
			// Calculate the Average
			$query = "
			SELECT
				`p`.`Login`,
				`p`.`Nickname`,
				((`b`.`wins` / `b`.`stake`) * `b`.`countwins`) AS `won`
			FROM `betting` AS `b`
			LEFT JOIN `%prefix%players` AS `p` ON `p`.`Login` = `b`.`login`
			WHERE `b`.`wins` > 0
			AND `p`.`Nickname` IS NOT NULL
			ORDER BY `won` DESC
			". $appendix .";
			";
		}
		else {
			// Get the Planets
			$query = "
			SELECT
				`p`.`Login`,
				`p`.`Nickname`,
				`b`.`wins` AS `won`
			FROM `betting` AS `b`
			LEFT JOIN `%prefix%players` AS `p` ON `p`.`Login` = `b`.`login`
			WHERE `b`.`wins` > 0
			AND `p`.`Nickname` IS NOT NULL
			ORDER BY `won` DESC
			". $appendix .";
			";
		}

Re: Feedback and Reports for the master branch from github

Posted: 04 Oct 2023, 16:49
by SSM.Speed...
salut

le bon php pour uaseco 0.9.7 est 7.3 aucun bug

Re: Feedback and Reports for the master branch from github

Posted: 05 Oct 2023, 23:59
by xaviernuma
Bonjour SSM.Speed...,

Après réflexion, j'ai décidé de faire tourner la version 0.9.7 avec PHP 7.3 et je peux confirmer qu'elle fonctionne sans aucun problème.

Je vais conserver cette configuration en espérant une éventuelle mise à jour à l'avenir.

Merci pour votre aide.