accelafine wrote: ↑Fri Apr 04, 2025 10:04 pm
FlashDangerpants wrote: ↑Fri Apr 04, 2025 9:53 pm
accelafine wrote: ↑Fri Apr 04, 2025 9:04 pm
Thanks, but that hasn't worked either. This is the only site I have a problem with. Perhaps Atto was right about the IT guy being told to hijack my connection. Did you know that video is really blurry and unpleasant to watch?

I suppose the only thing left is a VPN but if they really don't want me on here then why wouldn't they just have banned me for life?
I only gave the video a quick glance to make sure it set the right thing the right way and I woulddn't get shouted at. It seemed fine.
I've seen you have weird problems with other sites. You insisted to me once that it was quite impossible for you to open an article on Rolling Stone without subscribing, and you were absolutely 100% wrong, all you needed to do was click an X. And I've seen you and only you have a similar problem at tiktok for a video that works absolutely fine and all you have to do to access it is a simple image dragging game to show the site you aren't a bot.
Nobody is going to spend actual engineering time to pick on you, but a VPN might well sort out whatever your routing problem is. Speaking of which... Nobody has put parental controls on your computer have they?
You just can't help yourself. I changed the DNS server to what you said and followed the video so I don't know why you're bringing up other old stuff. I have no interest in TikTok and I'm not familiar with how it works. And that 'x' was NOT obvious on that Rolling Stone article. There are many sites where you have to subscribe in order to read articles. Why are men such know-it-alls, especially when it comes to computers? Patronising gits. I can fix most things without help. Not everyone's a nerd. Some people like to stretch their limbs and do other stuff
I'm merely correcting the untrue assertion that this is a one-off thing. You are the person who most often claims internet things don't work when nobody else has a problem with them.
It wasn't an idle question to mock you for being geriatric. Does anybody else have control of your computer and might they have set parental controls on it?
If you open up a powershell window (just go start and type "powershell") Paste these lookup commands into it...
Test-NetConnection forum.philosophynow.org
curl forum.philosophynow.org
Get-DnsClientCache | where entry -like "*philosophynow*"
Get-NetIPConfiguration
You can safely paste the output here, none of them will return anything that can be used to hack you.
edit: maybe take out the wifi network name from the netIpConfig - somebody weird could try something silly with that.
The forum will completely mangle the responses if you paste them in the raw, but it should be fine if you place them inside the </> code blocks.
Returns should look like something like this
Code: Select all
Get-DnsClientCache | where entry -like "*philosophynow*"
Entry RecordName Record Status Section TimeTo Data Data
Type Live Length
----- ---------- ------ ------ ------- ------ ------ ----
forum.philosophynow.org forum.philosophynow.org AAAA Success Answer 292 16 2606:4700:20::ac43:44c6
forum.philosophynow.org forum.philosophynow.org AAAA Success Answer 292 16 2606:4700:20::681a:368
forum.philosophynow.org forum.philosophynow.org AAAA Success Answer 292 16 2606:4700:20::681a:268
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 172.67.68.198
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 104.26.3.104
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 104.26.2.104
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 172.67.68.198
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 104.26.3.104
forum.philosophynow.org forum.philosophynow.org A Success Answer 292 4 104.26.2.104
The curl command is supposed to fail, it should give an error code of 403.
Code: Select all
curl forum.philosophynow.org
curl : The remote server returned an error: (403) Forbidden.
At line:1 char:1
+ curl forum.philosophynow.org
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebException
+ FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand