liglemminator • PM |
Sep 09, 2014 7:49 AM
|
![]() Posts: 2 |
hi
my forums run with https when i include a banner , i have problems with the banner because its http . is it possible to include https in the banner code ? i think the problem is this url http://cache.gametracker.com/....... greetz lemmi |
burn • PM |
Sep 09, 2014 8:36 AM
|
![]() Posts: 10924 |
Thanks for the suggestion. The banners do not currently support HTTPS, but may in the future.
![]() |
liglemminator • PM |
Sep 11, 2014 10:21 AM
|
![]() Posts: 2 |
Can you say this Year or next Year ? Its sad that I can't use it ATM
![]() |
mautobu • PM |
Oct 09, 2014 1:59 AM
|
![]() Posts: 2 |
I'm working on the same thing right now. I reckon it's going to come down to writing a script and dumping it on cron to pull the image every minute and serve it from the https site directly. Kind of a bummer :/
|
mautobu • PM |
Oct 09, 2014 2:11 AM
|
![]() Posts: 2 |
as root or whatever:
crontab -e # add the following line */1 * * * * wget -P <Web Server Image Store> -O <Short Name>.png <Banner Link> && chown www-data <Web Server Image Store>/<Short Name>.png # fill in the blanks, then link to https://<Hostname>/<Image Link>.png Hopefully you're running on nix and this makes sense ![]() |