after upgrading my drupal 8 I got the following error:
Deprecated configuration
You are using deprecated configuration for the temporary files path. Remove the configuration and add the following to settings.php. $settings["file_temp_path"] = "sites/default/files/tmp"
I just updated to Drupal 8.8.1 (composer update drupal/* --with-dependencies now says I'm up to date, even though I know that 8.8.2 is actually the most recent). After doing this, I can use most of the site fine, but when I went to update the monitoring module, I get the error The geoip PHP extension is not installed!
We moved the site today to the client server. The automatically created "htaccess" file, which sits in the "/web/sites/default/files" folder, does prevent the apache (php) from creating files (image styles).
I am making a custom module with just a couple of routes inside of it. The module depends on the LightOpenID library, which I have included using composer, and have access to.
I created a field on the user object (field_steam_id), and the lightopenid provides a route to forward to the steam webapi to log them into steam, which sends back the users unique steam ID.
This value is then saved to their logged in user object via the field_steam_id and saved.