on 01 Sep, 2018 09:57 in HUD & UI
on 31 Aug, 2018 17:03 in HUD & UI
but ive not dived into player stat modifications or anything.. strictly UI
on 30 Aug, 2018 11:40 in Suggestions & Feedback
on 30 Aug, 2018 00:14 in Suggestions & Feedback
Well, While Im always up for more things to code, I fear that my lack of .. experience with TL2 modding would be a bit off. Not that i wouldnt try, however i dont have a linux VM atm (Limited data plan >_>)As far as the site goes, Ive got loads and loads of snippets from my free lance projects, so if i can help out, or if you need a php script done. Ill do it, ^_^
on 29 Aug, 2018 22:06 in HUD & UI
just an idea i thought would be cool if people still played together.
on 28 Aug, 2018 19:43 in Lord Nyriox's Playground
on 28 Aug, 2018 18:03 in Lord Nyriox's Playground
on 28 Aug, 2018 14:05 in Lord Nyriox's Playground
on 28 Aug, 2018 13:43 in Suggestions & Feedback
nah, not nonsense. Its always a good thing to have a conversation. Everyone wins. Learning experience for all
besides ive done stuff like this for a living ^_^ freelancing FTW
on 28 Aug, 2018 13:04 in Tips & Tools
on 28 Aug, 2018 12:39 in Tips & Tools
on 28 Aug, 2018 12:33 in HUD & UI
on 28 Aug, 2018 07:47 in Tips & Tools
on 27 Aug, 2018 17:52 in Suggestions & Feedback
sorry for the book, but i hope it provides you with some good info.^_^ ahh no problem at all and technically while it is https, its not secured.. more than likely its because there are files probably being loaded not hosted by a https source. Let me have a look ::looks at security audit logs for site::Yep thats the problemQuoteThis page is not secure.Resources - mixed contentThis page includes HTTP resources.Reload the page to record requests for HTTP resources.Certificate - valid and trustedThe connection to this site is using a valid, trusted server certificate issued by Let's Encrypt Authority X3.View certificateConnection - secure (strong TLS 1.2)The connection to this site is encrypted and authenticated using TLS 1.2 (a strong protocol), ECDHE_RSA with P-256 (a strong key exchange), and AES_128_GCM (a strong cipher).Umm based on what i can findwiki/lib/exe/fetch.php?media=wiki:logo.png Which i beleive is the torchmodders wiki logo its being pulled from (http) while on (https)easy fix is either making a php script such as Code: [Select]<img link="<?php (isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];?>torchmodders.com/wiki/lib/exe/fetch.php?media=wiki:logo.png"> with css styling Code: [Select]<img link="<?php (isset($_SERVER['HTTPS']) ? "https://" : "http://").$_SERVER['HTTP_HOST'];?>torchmodders.com/wiki/lib/exe/fetch.php?media=wiki:logo.png" alt="" class="bbc_img"> and placing it on the page which displays the logo.The above will place http or https depending on what is typed in the url. not necessary, but its effectivealso, theres a lot of different ways, maybe even more secured ways... but thats a easy fix for a easy problem.http://i.imgur.com/BIZBIWm.pngThat is the logo for the forums, wierd its not hosted here. buut simply change the url link to https, since imgur supports https nativly. its the same url.But yeah also if theres not automatic redirect, you could force the page to redirect by using Code: [Select]if(empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == "off"){ $redirect = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; header('Location: ' . $redirect); exit();}a little basic but this code would work as welldescribing that codeif $_SERVER['HTTPS'] is empty or $_SERVER['HTTPS'] is equal to off(meaning they went to http) go here ('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']
https:// torchmodders.com(HTTP_HOST) /forums/suggestions-feedback/https/(REQUEST_URI)"
on 27 Aug, 2018 07:29 in HUD & UI