Thanks for feedback. The page is not updated.
I think you have to post in feedback section instead of Free hosting support section.
Maybe that would have been better. I guess I was thinking since it was related to the free hosting that it would be OK here. I wonder how many other pages haven't been updated and still have old copies of rules and stuff on them (like pages that still say the inactivity limit is 14 days :eek4
Maybe the main x10 site should use some sort of system like Mac apps use for localization, where you specify each string of text by its identifier and its corresponding localizations in a file in the app.
So, the pages would load their data from a file called blah.txt (well, a .plist file would be better, but not sure if the server can handle those), which would look like:
Code:
<key>FREE_BANDWIDTH_LIMIT</key>
<string>A gazillion GB</string>
<key>PAID_BANDWIDTH_LIMIT</key>]
<string>2 GB</string>
Then simply call those keys in the php pages (by their identifier keys) and update blah.txt as they change rules and stuff, thereby updating all pages simultaneously.
The same for the TOS, just use TOS.txt (or .rtf or .hmtl or whatever) and embed it through an IFRAME in each page for automatic updates to every page.
Just a thought (actually, several thoughts, but you get the picture).