WordPress Cluster 6.13.1

    • Plugins updated;
      • Jobs In Scotland 1.0.3
        • Strip erroneous spaces from the start and end of URLs when saving and processing.
      • HiJobs 1.0.2
        • Strip erroneous spaces from the start and end of URLs when saving and processing.
      • Yoast SEO 7.1
        • Contains breadcrumb fixes.
      • News SEO 7.1

 

PR: https://github.com/dc-thomson/wordpress/pull/968, https://github.com/dc-thomson/wordpress/pull/969

Scottish Field 1.2.1

  • Added release notes to admin dashboard
  • Updated IPO footer content

PR : https://github.com/dc-thomson/wordpress/pull/959, https://github.com/dc-thomson/wordpress/pull/966

 

WordPress Cluster 6.13.0

    • Plugins updated;
      • VOWs Awards 1.1.3
        • Removed “Celebrants” from supplier category.
      • Wyvex Paywall 1.0.20
        • PLAN-1320: Upgraded auth0’s Lock JS from 10 to 11.
        • PLAN-1320: Modified usages of lock.getProfile() to use new Lock 11 accessToken instead of idToken.
        • PLAN-1324: Simplified paging so not all page links are rendered.
    •  Developers

Developer Notes

Before pulling master, please update using the following commands:

vagrant halt
vagrant plugin install vagrant-winnfsd
# put the exe from https://github.com/winnfsd/vagrant-winnfsd/tree/master/bin in your path
git checkout master
git pull origin master
vagrant destroy web
vagrant up

Debug sessions now have to be started explicitly, see the onboarding document.

PR: https://github.com/dc-thomson/wordpress/pull/958, https://github.com/dc-thomson/wordpress/pull/962

Wave FM 1.0.0 Beta 3

  • Added a database upgrade mechanism to Wave FM theme.
  • Added integration for accepting information provided by Zetta feeds.
  • Adds an endpoint to the /stations/ posts which can be used to POST data to for the latest song information.
    • Checks to make sure the radio station exists.
    • This expects the following fields to be provided;
      • Artist
      • Song Name
      • Run Time (Song Length)
  • Modified the admin screen for Stations to display the Zetta feed link for ease of management.
  • Provides a template tag –
    wavefm_zetta_playing_now( $station, $echo )

    – which returns / echoes the currently playing or most recently played song for a given radio station.

Post Deployment Steps

Once this is deployed, the RCS Glue software needs to be updated. This is done by using TeamViewer, which Marc O’Neill currently has the credentials and access to.

Once on this server, the Glue service configuration needs to be updated in two settings specifically; HttpPostLocation and HttpPostFormat. Therefore the following needs to be updated.

For note; the pipe symbol (|) is used to denote different services to be contacted by the configuration.

HttpPostLocation

// Before
HttpPostLocation=http://wave.nwm.xrad.io/wp-content/wave102/in/now_playing_in.php|http://platform.g-media.com/api/postplayingdata.php?id=59|http://air.radiotime.com/Playing.ashx

// After
HttpPostLocation=http://wave.nwm.xrad.io/wp-content/wave102/in/now_playing_in.php|http://platform.g-media.com/api/postplayingdata.php?id=59|http://air.radiotime.com/Playing.ashx|https://wpcluster.dctdigital.com/wavefm/stations/wavefm/zetta/

HttpPostFormat

// Before
HttpPostFormat=artist=%SNGART%&title=%SNGTIT%&runtime=%RUNTIME%&password=wavepass|xml=%XML%&password=QD5sEg47XuV55FQ|partnerId=8UvDSnRz&partnerKey=2UH1Dm!uyM7J&id=s45554&title=%SNGTIT%&artist=%SNGART%

// After
HttpPostFormat=artist=%SNGART%&title=%SNGTIT%&runtime=%RUNTIME%&password=wavepass|xml=%XML%&password=QD5sEg47XuV55FQ|partnerId=8UvDSnRz&partnerKey=2UH1Dm!uyM7J&id=s45554&title=%SNGTIT%&artist=%SNGART%|artist=%SNGART%&title=%SNGTIT%&runtime=%RUNTIME%&password=wavepass

PR :