FS#6999 — FS#10887 — cluster003
Attached to Project— Hosting
Modernization | |
240plan | |
CLOSED | |
![]() |
We are tightening up security on the clusters:
- deltion of old PHP 5.3 & PHP 5.4 binaries (only the latest releases are present)
- stronger isolation of each customer account
- tracking of CPU consumed (will be available managerv6)
Date: Wednesday, 08 October 2014, 15:20PM- deltion of old PHP 5.3 & PHP 5.4 binaries (only the latest releases are present)
- stronger isolation of each customer account
- tracking of CPU consumed (will be available managerv6)
Reason for closing: Done
20% of the cluster has been switched, we are monitoring before redeploying.
50% of the cluster has been switched over.
The entire cluster has been updated. A customer has reported a change affecting the dereferencing of symbolic links from PHP:
<?php
var_dump($_SERVER['SCRIPT_FILENAME']);
var_dump(__FILE__);
var_dump(__DIR__);
returns:
string(47) "/homez.335/***/***/file.php"
string(30) "/home/***/***/file.php"
string(42) "/home/***/***"
From now on:
your /homez.XXX/USER becomes: /home/USER
compatibility is ensured via: /homez.XXX/USER which is a symbolic link to /home/USER
You can longer use BIND() (used by FTP in active mode)
To avoid this, please enable passive mode:
PHP code:
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
#TODO: check login...
# switch to passive mode (mandatory on Ovh shared hosting)
ftp_pasv( $conn_id, true );