404 error accessing my php page

I’m attempting to use a php page to return some data from a file on a server.
I can access index.php, but my second file, chatlog.php, I can’t access from roblox.

I can access it from localhost, from other proxies, through vpns, but for some reason Roblox cannot reach the file, apache does not even record a log of Roblox trying to request the file.

I’ve attached what Roblox studio says when trying to access the file,
image_2022-06-15_225359002
(minus the I.P. address because I don’t have a domain yet,) but I am out of ideas.

So after some investigating I found out that even server-sided http requests are ran from my computer in studio. So replacing http://[ip]/url with http://localhost/url fixed the issue. I imaging I will need to build some if statement dependent upon if IsStudio() is true or not, but good to know.

1 Like