ovh

Mail config for Laravel over RoundCube

梦想的初衷 提交于 2021-02-11 15:13:21
问题 I am using Laravel to send out some emails from RoundCube. The trouble is that I keep getting the same error Failed to authenticate on SMTP server with username "user@email.com" using 2 possible authenticators. Authenticator LOGIN returned Expected response code 250 but got code "530", with message "530 5.7.1 Client was not authenticated ". Authenticator PLAIN returned Expected response code 250 but got code "530", with message "530 5.7.1 Client was not authenticated. I have looked around and

Mail config for Laravel over RoundCube

好久不见. 提交于 2021-02-11 15:12:49
问题 I am using Laravel to send out some emails from RoundCube. The trouble is that I keep getting the same error Failed to authenticate on SMTP server with username "user@email.com" using 2 possible authenticators. Authenticator LOGIN returned Expected response code 250 but got code "530", with message "530 5.7.1 Client was not authenticated ". Authenticator PLAIN returned Expected response code 250 but got code "530", with message "530 5.7.1 Client was not authenticated. I have looked around and

OVH Object Storage, nothing happens when I try to upload large file (more than 100 Ko)

北城余情 提交于 2020-03-25 13:57:50
问题 I try to upload files with OVH object storage. But I have three different behavior according to the heavy file. With a weight file which less than 100Ko, everything is ok With a weight file which more than 100Ko, I have this error: Error: write after end , but the file is uploaded on ovh object storage With a weight file which more than 250Ko, nothing happens, and the file is not uploaded. The fs ReadStream is open, but the write stream piped (with the read stream) not finish. This is my code

Impossible to access database (OVH server) [closed]

北城以北 提交于 2020-02-08 11:07:47
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 days ago . I created two apps with Symfony. For these 2 apps, I can't connect to the databases with the same symptoms (timed out connection). Information common to both apps Host : OVH subscription : gold created in octobre 2016 Datacenter : Gravelines 1 Version php 7.1 (but same in 7.2, I

Laravel Session files not cleaning from the framework/sessions folder

女生的网名这么多〃 提交于 2020-01-23 12:47:06
问题 I am on a shared host (OVH pro) using Laravel 5.2 on production (PHP 7.0.5). I am using the file session driver , and everything was working fine on my previous host (with the same app), but since I moved to OVH, the session files keep being created and are never deleted by the PHP garbage collection. I have to manually erase the files ( over 5000 files are created per day ). My config/session.php file is set up correctly: 'driver' => 'file', 'lifetime' => 120, 'lottery' => [2, 100], And my

How to send emails with Symfony 4 Swiftmailer from a local machine running on Windows 10?

雨燕双飞 提交于 2020-01-07 09:19:32
问题 I'm trying to send emails with Symfony 4, Wamp and fake sendmail on Windows 10 but without success, I'm hosted on OVH. I want to specify that I have a site hosted on OVH with same parameters running on Symfony 2 and Swiftmailer works perfectly. Here is my Symfony .env line for Swiftmailer: MAILER_URL=smtp://smtp.dnimz.com:465?encryption=ssl&auth_mode=login&username=simslay@dnimz.com&password=*** Here is part of my Symfony controller for Swiftmailer: $message = (new \Swift_Message('Hello Email

OVH cron jobs / Symfony Command

假如想象 提交于 2019-12-13 07:23:08
问题 I'm developing a Symfony project and I've 4 commands which allows me to update telephony and emails data thanks to OVH' Api. When I use my terminal on local ( php bin/console converseo:updateTelephony ) the command works fine. Now, I want to put these commands in crontab with the cron interface from Ovh. I made a php file test.php : <?php shell_exec("sh test.sh"); ?> And test.sh : #!/bin/bash /usr/local/php5.6/bin/php /homez.number/mysite/www/bin/console converseo:updateBilling And I get the

Change version php on OVH

爱⌒轻易说出口 提交于 2019-12-10 18:45:45
问题 My problem is that i need to change the version of php from 4.4.9 to 5.5 on an remote server on http://www.ovh.com/ But i can't seem to be able to achieve this goal! I have tried the recommended steps http://www.ovh.com/fr/g1207.configurer-php-web And included the following .ovhconfig file: app.engine=php app.engine.version=5.5 http.firewall=none environment=production But when i check by phpinfo() or the command php -v , it says that i am using the php version 4.4.9 ![enter image description

Trigger an URL with a cron job

不羁岁月 提交于 2019-12-08 06:46:03
问题 I'm working on a Symfony 3 website and I need to call a URL of my website with a cron job. My website is hosted on OVH where I can configure my cron job. For now, I have setup the command : ./demo/Becowo/batch/emailNewUser.php emailNewUser.php content : <?php header("Location: https://demo.becowo.com/email/newusers"); ?> In the log I have : [2017-03-07 08:08:04] ## OVH ## END - 2017-03-07 08:08:04.448008 exitcode: 0 [2017-03-07 09:08:03] ## OVH ## START - 2017-03-07 09:08:03.988105 executing:

Private network creation with Terraform on OVH's Openstack

只愿长相守 提交于 2019-12-07 15:46:20
问题 I'm trying to deploy some Openstack instances on OVH's Public Cloud using Terraform. The point is (for now) to have two instances on two networks. Each instance should have an external IP address (which isn't a problem) and a internal IP address on a private network (which causes me troubles). My terraform file is : resource "openstack_compute_keypair_v2" "keypair" { provider = "openstack.ovh" name = "jpin" public_key = "${file("~/.ssh/id_rsa.pub")}" region = "GRA3" } resource "openstack