Milos Knezevic
Articles
-
What is the Platform.sh command to import a SQL Script?
To import a SQL Script, you can use the following CLI command: platform sql -p <PROJECT_ID> -e <ENVIRONMENT_NAME> < script.sql There is also the option to access the Database service directly, whic...
-
How can I resolve the "No space left on device" build error?
When an environment is built, some files are cached for future use. This can cause the build container to run out of space, which generates the "No space left on device" error.The build container's...
-
Is it possible to pass HTTP requests through a local network between two different Projects?
No, as each Project is allotted to a different set of Virtual Machines, these can't communicate with each other directly. Projects can only communicate with each other through their external Domain...
-
Are alerts available for metrics?
At this time, alerts are currently not enabled for metrics. However, this feature is currently under consideration. While there is no timeline for when this feature will be available, you can use o...
-
How do I see the status of a Deployment through the CLI?
Yes! To see the status and build log for a specific Deployment with the CLI: Get a list of all activities on a project: platform activity:list --all This list can be filtered by adding the --type ...
-
Can I Dump/Export a single table from a Database?
To export a single table from a Database, you can use the following CLI command: platform db:dump --table=<TABLE_NAME>
-
Is there a way to make some files or directories as writable?
Files in a built container are in a read-only file system. You can configure mounted Volumes to create paths that are writable during runtime. Files are also writable during the build phase of a de...
-
Is there a way to deactivate a plugin without going through the administration console or the database?
As we use a read-only file system, system-related changes (such as removing or installing plugins) are prevented. As an alternative, we recommend managing your plugins/themes via Composer, which yo...
-
How much mail can be sent per month through the default SMTP service?
On all projects, we provide 12,000 credits per environment / month.Credits will be renewed automatically when they are depleted, as long as sending reputation and delivery rates are kept above reas...
-
Is it possible to change our Redis Server to a permanent Server without losing data?
Unfortunately at this time, there is no way to do this. The act of making Persistent Redis requires the Container to be shut down and reconfigured to make use of a disk for its Persistent Storage. ...