Manage WordPress files, SSH, and SFTP
Edit WordPress files safely with the browser file manager, SSH, or SFTP.
Prefer the WordPress administrator for normal theme and plugin management. Use direct file access when you need to upload a custom file, inspect configuration, or recover from a broken plugin or theme.
Use the file manager
- Open Dashboard → Services → your WordPress service → WordPress.
- Select the site, then open Files.
- Browse to the document root shown on Overview.
- Make the smallest required change and test immediately.
WordPress content normally lives under wp-content; plugins are under wp-content/plugins, themes under wp-content/themes, and uploads under wp-content/uploads. Do not edit WordPress core files for a change that belongs in a plugin, theme, or child theme.
Connect with SSH or SFTP
Open Access and copy the displayed host, port, username, password, and prepared SSH or SFTP command. Example command shape:
sftp -P PORT USERNAME@HOST
Use the AppLaunch-provided port rather than assuming port 22. If credentials are rotated, update saved connections in your client.
Change files safely
- Create a backup.
- Stop the site only when the operation truly requires it.
- Download a copy of the file you will replace.
- Do not upload
.env, private keys, database exports, or unrelated archives into the public document root. - Preserve required filenames and directory structure.
- Test the public site and
/wp-admin. - Open Logs if WordPress reports a critical error.
If a plugin breaks the whole site, rename that plugin's folder under wp-content/plugins, reload the site, and then repair or replace the plugin from WP Admin. Do not delete the folder until you have a backup and know its data is not needed.
