Frequently Asked Questions (FAQ)
What is the difference between a Platform, a Project and an Environment?
Platform or Platform.sh is the infrastructure which is running all your projects.
A project is the site that you're working on. Each project can contain multiple applications and be deployed in environments.
An environment is a standalone copy of your live site (the Master environment) which can be used for testing, implementing new features...
How can I cancel my subscription?
If you want to delete your project and cancel your subscription, simply go to your user profile and click on "Edit plan" on the project you want to delete. Then you can click on the link: "delete your Platform.sh plan".
This will delete your project and stop invoicing for this project. If you have multiple projects, your subscription will continue until you don't have any projects left.
Do you support MySQL?
Platform.sh uses MariaDB to manage and store your databases. It's a fork of MySQL which is more stable and has more interesting features.
Do you support other database services?
We support PostgreSQL, ElasticSearch, Redis and MongoDB Out of the box. Batteries included.No need for add-ons. We aim to support all the most popular database services...
Does branching an environment duplicate services?
Yes ! Branching an environment creates an exact copy (snapshot) of the parent environment, containing the files, the database, the services...
Do you have a local writable file-system?
Yes! Unlike other PaaS providers Platform.sh supports non-ephemeral storage. When you configure your application you can tell us what directories you want to be read/write (these are called mounts). These will be mounted on a distributed file system (which is transparent for you). When you back-up your environment they will be backed up as well. When you create a new staging environment... these will be cloned with the rest of your data.
So, why do I get an error with "Read-only file system" when I try to manually modify files on Platform.sh?
Everything except the mounts you declared as Read/Write will be read-only. Read/Write is there for your data, for your uploads, for logs and temporary files. Not for your code. In order to change code on Platform.sh you have to go through Git.
This is what gives you all of the benefits of having repeatable deployments, consistent backups, traceability, magic creation of staging/dev environments.
In Platform.sh you can not just "hack production". It is a constraint, but it is a good constraint.
During the build phase of your application everything is still read/write so you can while deploying do whatever you want (compile stuff or generate anything you need on the storage). But once deployed the main file-system will turn read-only.
I am using Drupal and I see "File not found" why?
If you see the "File not found" when accessing your site within a browser, this means that you’ve pushed your code as a vanilla project but no index.php has been found.
Make sure your repository contains an index.php file as the root, or that your make files are properly named.
What happens if I push a local branch to my project?
If you push a local branch that you created with Git, you create what we call an inactive environment
, ie. an environment that is not deployed.
This means there won't be any services attached to this branch.
You are able to convert an inactive environment
into an active environment
and vice versa back from the environment configuration page or using the CLI.
How does Master (the live site) scale?
Master gets all the resources that are divided into each service (PHP 40%, MySQL 30%, Redis 10%, Solr 20%…). Each Development environment gets the Development plan resources.
What exactly am I sshing into?
You're logged in to the PHP service. It's a read-only file system.
Can I edit a quick fix on a Platform environment without triggering a rebuild?
No ! Since the PHP service you access via SSH is a read-only file system, you'll have to push your fix to be able to test it.
What do I see when I push code?
We try to make the log as self-explanatory as possible, so you should see the Git output and also output from the drush make...
You can also find it back by clicking on the status of the activity in the Platform UI
.
What Linux distribution is Platform.sh using?
Platform.sh is built on Debian.
If I choose the Development plan, can I use that plan for production?
The Development plan provides all the tools to build your website. You can create as many development profiles as you wish for yourself and for your team. Once your project is built and ready for production, you can choose another plan to go live. These plans are listed on the pricing page.
Can I please use tabs in my YAML files?
No.
I am getting weird errors when I push (something with paramiko..)
Please validate the syntax of your YAML file. Don't use tabs. And if all fails, contact support.
Which geographic zones does Platform.sh cover?
Platform leverages the powerful AWS Infrastructure. We can deploy your site in a datacenter that is very close to your target audience.
Why did you choose the .sh extension for your domain?
'sh' is the short version of shell. According to Wikipedia™, in computing, a shell) is a user interface for access to an operating system's services. Generally, operating system shells use either a command-line interface (CLI) or graphical user interface (GUI). This is exactly what Platform.sh is about: Giving developers tools to build, test, deploy, and run great websites!
".sh" is also the TLD for Saint Helena that looks like a lovely island, and whose motto is: "Loyal and Unshakeable" which we also strive to be.