Azərbaycan dili Bahasa Indonesia Bosanski Català Čeština Dansk Deutsch Eesti English Español Français Galego Hrvatski Italiano Latviešu Lietuvių Magyar Malti Mакедонски Nederlands Norsk Polski Português Português BR Românã Slovenčina Srpski Suomi Svenska Tiếng Việt Türkçe Ελληνικά Български Русский Українська Հայերեն ქართული ენა 中文
Subpage under development, new version coming soon!
 Topic closed!!!

Subject: Firesokker most recent version

2009-12-07 20:27:46
2009-12-14 03:21:53
does anybody can put the most recent version of Firesokker?? i dont know if the first post is the most recent... so thats why im asking for...
2009-12-14 07:32:33
hmm, i dont see any flags by the players, whom used to be way to send player to NTDB. whats up?
2009-12-14 10:31:47
theres a slightly more recent one in NTDB topic, containing an updated link to sokker scotland..

nobody is fixing it at the moment though in terms of what used to work, but that one allows use of the NTDB flag thingy
2009-12-14 10:33:03
and height ;)
2009-12-14 10:33:59
blue zero working on osokker for firefox, so this will be made redundant..
did you contact him about the update of scottish sokker?
2009-12-14 10:48:56
no mate - i had no idea that would work - isnt that just for opera browsers?
2009-12-14 10:53:21
i worked whole weekend on that it could work also in firefox. :-P

i downloaded your version of firesokker but didnt find ntdb link for scotland there at all
2009-12-14 11:06:32
http://www.gartcairn-youth-academy.co.uk/soccer/redir.php

thanks mate
2009-12-14 11:58:57
Is there an actual list of ntdb links? Because the one in firesokker seems to be obsolete.

And look at your ink:
http://www.gartcairn-youth-academy.co.uk/soccer/redir.php
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
(edited)
2009-12-14 12:01:19
Check the link given in the NTDB topic. I believe that one might be of use.
2009-12-14 12:05:50
yup thats because firesokker passes post parametes to that redir.php link - without them you will get an error.

Another thing the post parameters that are passed (in my version of firesokker anyway) also inlcudes the players height.
2009-12-14 12:09:48
Ehm, it stinks like SQL injection possibility, you should take care about it ;-).
2009-12-14 12:13:42
sorted :)
2009-12-14 12:14:25
Here are the links for Germany, Austria and Switzerland

Germany (15)
http://db.sokker-deutschland.de/indexsk.php
Switzerland (24)
http://swiss.sokker-deutschland.de/indexsk.php
Austria (30)
http://ntdb.loopsworld.at/indexsk.php

What is the name of the post variable for height in your script?
2009-12-14 12:16:46
@ BlueZero - here is the code i have for the countries

if (country=="15")
{
var url = "http://db.sokker-deutschland.de/indexsk.php";
}
else if (country=="24")
{
var url = "http://swiss.sokker-deutschland.de/indexsk.php";
}
else if (country=="7")
{
var url = "http://www.gartcairn-youth-academy.co.uk/soccer/redir.php";
}


else if (country=="30")
{
var url = "http://ntdb.loopsworld.at/indexsk.php";
}

else
{
var url = "http://www.sokker.domiciano.eng.br/ntdb/redir.php";
}

And this is the height post parameter required. (including all just in case).

input name='teamname' type='hidden' value='"+login+"' />";
input name='tid' type='hidden' value='"+tid+"' />";
input name='playername' type='hidden' value='"+playername+"' />";
input name='countryid' type='hidden' value='"+country+"' />";
input name='pid' type='hidden' value='"+pid+"' />";
input name='age' type='hidden' value='"+age+"' />";
input name='hei' type='hidden' value='"+height+"' />";
input name='val' type='hidden' value='"+val+"' />";
input name='wag' type='hidden' value='"+wag+"' />";
input name='frm' type='hidden' value='"+frm+"' />";
input name='tac' type='hidden' value='"+tac+"' />";
input name='sta' type='hidden' value='"+sta+"' />";
input name='kee' type='hidden' value='"+kee+"' />";
input name='pac' type='hidden' value='"+pac+"' />";
input name='def' type='hidden' value='"+def+"' />";
input name='tec' type='hidden' value='"+tec+"' />";
input name='pla' type='hidden' value='"+pla+"' />";
input name='pas' type='hidden' value='"+pas+"' />";
input name='str' type='hidden' value='"+str+"' />";
input name='css' type='hidden' value='"+css+"' />";
input name='langcode' type='hidden' value='"+fsok_current_language+"' />";
input type='image' src='"+fsok_countryFlag(country)+"' style='display:inline;'

(edited)