The file manager | Reocities Docs

The file manager

The file manager is the quickest route from an idea to a live page. It handles uploads, editing and folders in the browser.

Uploading

Drag files onto the file list, or use the upload button. Folders are created by uploading into a path, or with the new-folder control. Uploading a file with an existing name replaces it.

Editing in place

Click any text file to open the editor. It highlights HTML, CSS and JavaScript, and saves back to the same path. Because sites are static, a save is a deploy: refresh your site and the change is already live.

Folder structure

Nothing is enforced beyond index.html at the root, but a conventional layout keeps things manageable:

/index.html
/style.css
/about.html
/img/photo.jpg
/js/main.js
yourname.reocities.xyz/ index.html the page visitors land on style.css about.html img/ photo.jpg js/ main.js
A workable layout. Only index.html at the root is required; the rest is convention.

Which files can I host?

HTML, CSS, JavaScript, images, fonts, audio and video are all served as-is. Server-side languages are not executed. A .php file gets sent to the browser as text instead of running.