Milos Knezevic
Articles
-
What can I do if my website is not responding because my project is receiving a large amount of traffic?
If you need more processing power to handle a sudden increase in traffic to your site, increase the project plan size also make sure that bots aren't overwhelming your website.
-
HTTP responses 502 Bad Gateway or 503 Service Unavailable
If you see these errors when accessing your app, it indicates your app is crashing or unavailable. Typical causes and potential solutions include: Your app is listening at the wrong place. Check ...
-
How to send emails?
You can configure your Platform.sh environments to send emails via an SMTP proxy. The SMTP proxy is intended as a zero-configuration, best-effort service. For more information on this feature, plea...
-
How to access logs?
Events that occur within an app container are logged within that container. These include cron.log, access.log, error.log... Depending on the type of the log file you need, you can open your logs u...
-
Is it possible to access a database from another environment?
To access a database from another environment, set up an SSH Tunnel on the start-up of the app.You can do this from your local machine or within the application container of that environment.
-
Access denied or permission denied
In most cases, issues accessing a project are caused by missing permissions for a given user, see how to manage user permissions. If you are using the CLI, make sure that you are authenticated. If ...
-
How can I make a change to MySQL?
There are two ways to make a change. You can either: Access the database directly, by using the following CLI command: platform sql Log into your app container via SSH and then log into your dat...
-
Is it possible to install Mailhog Monitoring on our Environment?
No. Currently, you can't install Mailhog monitoring on our platform, as we do not expose the ability to download apt packages. Every Platform.sh Environment has its own unique SendGrid sub-user wit...
-
Is it possible to see the results of your Pen-tests?
We perform penetration testing to ensure that we maintain our PCI-DSS and SOC2 Type 2 compliance standards.If you wish to see evidence of our compliance standards, please create a support ticket, a...
-
How to configure Drush?
Drush configuration Drush requires a config file (.drush/drush.yml) that declares (amongst others) what the default site URL is. That URL value varies based on the branch you’re on, so it needs to...