Concrete5

Installed v8.5.1

C5 Updates Our Responsibility

Add-ons

  • ExchangeCore reCAPTCHA (1.1.1)
  • List files from set (1.0.12)
  • Styled Maps (1.2.3)

Special Features

  • RFU API for Fixtures

Additional Info

RFU api - for league tables (and fixtures / results?)

Max Burton - mburton@first-sports.com

Rupert Greenwood - rgreenwood@first-sports.com

 

External Hosting

Justin Irvine (justin@nn-technology.co.uk) No Nonsense

server admin

https://secure13.host-it.co.uk:8443/login_up.php?success_redirect_url=https%3A%2F%2Fsecure13.host-it.co.uk%3A8443%2Fsmb%2Fdatabase%2Fcreate%2FdomainId%2F922

bedfordr

Justin Backups

 

 

 

API UPDATES FOR API

 

php test code...

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, 'https://gms.rfu.com/GMS/api/FirstSportsData/Competition/528/CompetitionSeason/6221/Stage/14569/Group/34699/LeagueTable');
$result = curl_exec($ch);
curl_close($ch);

echo '<h1>API Test</h1><h2>2019/20 League Tables</h2>';

$obj = json_decode($result);

 

update bold query

 

CompetitionSeason idstring:

curl_setopt($ch, CURLOPT_URL, 'https://gms.rfu.com/GMS/api/FirstSportsData/Competition/528/CompetitionSeason/');

add id for season to url for Stage

Stage idstring:

curl_setopt($ch, CURLOPT_URL, 'https://gms.rfu.com/GMS/api/FirstSportsData/Competition/528/CompetitionSeason/6221/Stage');

add id for stage for Group

Group idstring:

curl_setopt($ch, CURLOPT_URL, 'https://gms.rfu.com/GMS/api/FirstSportsData/Competition/528/CompetitionSeason/6221/Stage/14569/Group/');

add id for group

And finally... League Table!!

curl_setopt($ch, CURLOPT_URL, 'https://gms.rfu.com/GMS/api/FirstSportsData/Competition/528/CompetitionSeason/6221/Stage/14569/Group/34699/LeagueTable');

 

Launch Checklist

  • Browser Test
  • Code Validated
  • Spell Check
  • Images Optimised + Alt Tags
  • Forms Tested
  • Pretty URLs
  • Cache Enabled
  • Performance Analysed - gtmetrix.com
  • Developer Errors Disabled
  • Open Graph Setup
  • Analytics + Webmaster Tools
  • Server Updates (yum)
  • Server Security (fail2ban)
  • HTTPS Security
  • Backups Enabled
  • Website Monitoring (IFTTT & Uptime Robot)