[XFSoccer] Soccer Betting Game [Deleted]

Information for imported vbsoccer data which used before with vbseo and all links are indexed at search engines

should someone imported vbsoccer data to xfsoccer and used vbseo to rewrite vbsoccer links but forgot to disallow search engine indexing for vbsoccer at vBulletin in robots.txt, like myself (at any time i uploaded wrong robots.txt), you will have thousands of indexed links which are not working anymore

vBSEO rewrite
PHP:
'^vbsoccer\.php$' => 'soccer/'
'^vbsoccer\.php\?do=(\w+)$' => 'soccer/$1/'
'^vbsoccer\.php\?do=(\w+)&l=(\d+)$' => 'soccer/$1/$2/'
'^vbsoccer\.php\?do=(\w+)&l=(\d+)&m=(\d+)$' => 'soccer/$1/$2/$3'
'^vbsoccer\.php\?do=(\w+)&l=(\d+)&matchid=(\d+)$' =>  'soccer/$1/$2/match-$3/'
'^vbsoccer\.php\?do=(\w+)&l=(\d+)&redo=bet&m=(\d+)$' => 'soccer/$1/$2/bet-$3/'

mine worked on that way in vbsoccer
httpx://domain.com/soccer/bet/13/
httpx://domain.com/soccer/bet/13/12
httpx://domain.com/soccer/tab/58/
httpx://domain.com/soccer/tab/58/11

etc...


i made for myself below rewrites for xenforo to match old links, and working fine for me

PHP:
RewriteRule ^soccer/tab/([0-9]+)/([0-9]+) /soccer/matches/$1/tab?matchday=$2 [R=301,L]
RewriteRule ^soccer/tab/([0-9]+)/ /soccer/matches/$1/tab [R=301,L]
RewriteRule ^soccer/bet/([0-9]+)/([0-9]+) /soccer/matches/$1/bet?matchday=$2 [R=301,L]
RewriteRule ^soccer/bet/([0-9]+)/ /soccer/matches/$1/bet [R=301,L]

there is still a link indexed, but this function is right now not available in xfsoccer, and not sure if "/soccer/matchinfo/$1/match-$2" will look like in this direction.
PHP:
RewriteRule ^soccer/matchinfo/([0-9]+)/match-([0-9]+)/ /soccer/matchinfo/$1/match-$2 [R=301,L]

please not that my installation of vBulletin was in root folder!
 
  • Like
Reactions: AA_
Looks great. Any plans to add the Brazillian League (Brasilerao)? I really want to install this addon, but without it doesn't make much sense considering my demographic.
 
the next update will take a few days. Here is a temporary bugfix for a small problem (livescores; postings results):

search in library/XFSoccer/Model/Matches.php:
PHP:
$matches = $this->getMatches(array('match' => $matchids, 'goals' => true));

and replace with:

PHP:
$matches = $this->getMatches(array('match' => $matchids), array('goals' => true));
 
Pretty amazing for sure... is he human or some kind of cyborg?
HAHAHAHA.. i think this question should be answered by himself :)

We keep having users ask if its possible to see their rank position without gaving to search hundreds of pages?
you can still how was it at vbsoccer. pictures here..
Season ranking = Ranking of a league (like we have it now)
Total rankings = per Month or Year
Hall of fame = first 3 per league & saison

if you think when you have a lot of users in a league ranking, and they have to click to find them self on a lot of pages.. well, not sure if AA_ have thinked about it.. let see..
 
What I'd like to see is if they're not on page 1 then they have an extra row at the bottom of page 1 with their row highlighted.

For example, page 1 lists positions 1-20 but then there's a 21st row which shows where I am (e.g. position 54 or whatever).
 
What I'd like to see is if they're not on page 1 then they have an extra row at the bottom of page 1 with their row highlighted.

For example, page 1 lists positions 1-20 but then there's a 21st row which shows where I am (e.g. position 54 or whatever).

as discussed with AA_ , it will come..
under your 1-20, there will be a link with eg text "You are on rank 89 with 19 points" which will lead user to the page where he is listed.

and now give him a beer :)
 
Question: If you have two leagues, for example champions league and premiership are the points scored combined or would there be separate ranking tables for each one
 
Question: If you have two leagues, for example champions league and premiership are the points scored combined or would there be separate ranking tables for each one

you will have
  1. ranking for each league (please look on http://xfsoccer.me/xfsoccer/ for each league)
  2. ranking for all leagues for saisons e.g. 2013/2014 (this is in work)
  3. hall of fame (this is in work)
 
Hmm, when I try to edit the xfsoccer.css file it makes no difference. IN fact I can delete everything in it and the display is the same???:confused:
 
Top Bottom