Skip to content

Commit 25d2952

Browse files
committed
try to use https for the osm tiles
1 parent 47c11b4 commit 25d2952

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,21 @@ All "standard" plugins and themes are installed through the Wordpress UI:
2727
- WP Libre Form: for the registration, the call for participation and the reimbursements.
2828
- qTranslateX for having a spanish and and english version
2929

30+
Some plugins that are not in the wordpress repository are / will be in this repository
31+
32+
- [wplf export](https://github.com/libreform/export/archive/master.zip) (does not work with a custom url / a wp not at the root of the server)
33+
34+
## Installing locally
35+
36+
- Install Wordpress
37+
- Move Wordpress to the wp directory
38+
- make sure that all the "wp-content" directory is writable for the web server (to install plugins)
39+
- add `define('FS_METHOD', 'direct');` to `wp-config.php` to allow installing plugins to the local filesystem.
40+
- Copy the content of the front page
41+
- In "Settings > Reading" Set the front page to "Front"
42+
- Remove all the widgets from "Appearance > Widgets"
43+
- If you have qTranslate installed, add the "qTranlsate Language Chooser" to the "Blog sidebar"
44+
3045
## Licensing
3146

3247
All the WordPress related parts (the files included in *plugins* and *themes*) are released under the GNU General Public License v2.

wp/wp-content/themes/lgm2018/js/map.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var map = L.map('map', {
66
scrollWheelZoom: false,
77
}).setView([37.4064714,-5.9892440], 15);
88

9-
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
9+
L.tileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png', {
1010
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
1111
}).addTo(map);
1212

0 commit comments

Comments
 (0)