Jump to content

Featured Replies

Thanks @Paul E., I appreciate you trying, but this is too complicated.

Not sure why IPS would remove the version from the footer due to it being a security issue, but then create a file that shows when I updated from every version and what version I am currently on, and make this viewable to all.  Why not stick it in the database?

Anyhow it's been there for years and my site is still around, I'll just leave it.

  • 2 months later...
On 1/16/2021 at 8:32 PM, CoffeeCake said:

That is pretty cray. Why is that a thing? Does something rely on that file?

You can block access to .json files via htaccess

<Files "*.json">
    Order Deny,Allow
    Deny from all
</Files>

or only for "versions.json"

<Files "*versions.json">
    Order Deny,Allow
    Deny from all
</Files>

 

  • 2 weeks later...

.htaccess rule for all xml and json files:

<FilesMatch "\.(xml|json)$">
    Order Deny,Allow
    Deny from all
</FilesMatch>

Edited by Mr 13

Recently Browsing 0

  • No registered users viewing this page.