Hello !
J'ai un peu le même problème que la personne qui a posté juste avant moi, mais pas exactement, donc j'ouvre un nouveau topic pour éviter de faire du HS !
J'ai donc un script PHP de contact installé sur mon serveur Plan90 OVH qui supporte php5 et tout ça.
Ce script fonctionne parfaitement sur un autre serveur et en local, mais pas sur OVH.
Le serveur me renvoie en effet cette erreur :
Apparemment, cela vient du serveur.
Voici le code du fichier qui pose apparemment problème :
(J'ai mis que les 200 premières lignes, le fichier en fait plus de 1700).
Voyez-vous quelque chose d'anormal ?
Voici la page en question :
www.touchmods.fr/oogle-1/www/contact.html
Il y a t-il une solution alternative à l'utilisation de ce script qui n'alternerai pas le design en cas d'incompatibilité avec le serveur ?
Merci de votre aide !
J'ai un peu le même problème que la personne qui a posté juste avant moi, mais pas exactement, donc j'ouvre un nouveau topic pour éviter de faire du HS !
J'ai donc un script PHP de contact installé sur mon serveur Plan90 OVH qui supporte php5 et tout ça.
Ce script fonctionne parfaitement sur un autre serveur et en local, mais pas sur OVH.
Le serveur me renvoie en effet cette erreur :
Bloc de code:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /homez.16/touchmod/www/oogle-1/www/includes/phpMailer/class.phpmailer.php on line 45
Apparemment, cela vient du serveur.
Voici le code du fichier qui pose apparemment problème :
Bloc de code:
class PHPMailer {
/////////////////////////////////////////////////
// PROPERTIES, PUBLIC
/////////////////////////////////////////////////
/**
* Email priority (1 = High, 3 = Normal, 5 = low).
* @var int
*/
public $Priority = 1;
/**
* Sets the CharSet of the message.
* @var string
*/
public $CharSet = 'iso-8859-1';
/**
* Sets the Content-type of the message.
* @var string
*/
public $ContentType = 'text/plain';
/**
* Sets the Encoding of the message. Options for this are "8bit",
* "7bit", "binary", "base64", and "quoted-printable".
* @var string
*/
public $Encoding = '8bit';
/**
* Holds the most recent mailer error message.
* @var string
*/
public $ErrorInfo = '';
/**
* Sets the From email address for the message.
* @var string
*/
public $From = 'root@localhost';
/**
* Sets the From name of the message.
* @var string
*/
public $FromName = 'Root User';
/**
* Sets the Sender email (Return-Path) of the message. If not empty,
* will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
* @var string
*/
public $Sender = '';
/**
* Sets the Subject of the message.
* @var string
*/
public $Subject = '';
/**
* Sets the Body of the message. This can be either an HTML or text body.
* If HTML then run IsHTML(true).
* @var string
*/
public $Body = '';
/**
* Sets the text-only body of the message. This automatically sets the
* email to multipart/alternative. This body can be read by mail
* clients that do not have HTML email capability such as mutt. Clients
* that can read HTML will view the normal Body.
* @var string
*/
public $AltBody = '';
/**
* Sets word wrapping on the body of the message to a given number of
* characters.
* @var int
*/
public $WordWrap = 0;
/**
* Method to send mail: ("mail", "sendmail", or "smtp").
* @var string
*/
public $Mailer = 'mail';
/**
* Sets the path of the sendmail program.
* @var string
*/
public $Sendmail = '/usr/sbin/sendmail';
/**
* Path to PHPMailer plugins. This is now only useful if the SMTP class
* is in a different directory than the PHP include path.
* @var string
*/
public $PluginDir = '';
/**
* Holds PHPMailer version.
* @var string
*/
public $Version = "2.2";
/**
* Sets the email address that a reading confirmation will be sent.
* @var string
*/
public $ConfirmReadingTo = '';
/**
* Sets the hostname to use in Message-Id and Received headers
* and as default HELO string. If empty, the value returned
* by SERVER_NAME is used or 'localhost.localdomain'.
* @var string
*/
public $Hostname = '';
/**
* Sets the message ID to be used in the Message-Id header.
* If empty, a unique id will be generated.
* @var string
*/
public $MessageID = '';
/////////////////////////////////////////////////
// PROPERTIES FOR SMTP
/////////////////////////////////////////////////
/**
* Sets the SMTP hosts. All hosts must be separated by a
* semicolon. You can also specify a different port
* for each host by using this format: [hostname:port]
* (e.g. "smtp1.example.com:25;smtp2.example.com").
* Hosts will be tried in order.
* @var string
*/
public $Host = 'localhost';
/**
* Sets the default SMTP server port.
* @var int
*/
public $Port = 25;
/**
* Sets the SMTP HELO of the message (Default is $Hostname).
* @var string
*/
public $Helo = '';
/**
* Sets connection prefix.
* Options are "", "ssl" or "tls"
* @var string
*/
public $SMTPSecure = "";
/**
* Sets SMTP authentication. Utilizes the Username and Password variables.
* @var bool
*/
public $SMTPAuth = false;
/**
* Sets SMTP username.
* @var string
*/
public $Username = '';
/**
* Sets SMTP password.
* @var string
*/
public $Password = '';
/**
* Sets the SMTP server timeout in seconds. This function will not
* work with the win32 version.
* @var int
*/
public $Timeout = 10;
/**
* Sets SMTP class debugging on or off.
* @var bool
*/
public $SMTPDebug = false;
/**
* Prevents the SMTP connection from being closed after each mail
* sending. If this is set to true then to close the connection
* requires an explicit call to SmtpClose().
* @var bool
*/
public $SMTPKeepAlive = false;
(J'ai mis que les 200 premières lignes, le fichier en fait plus de 1700).
Voyez-vous quelque chose d'anormal ?
Voici la page en question :
www.touchmods.fr/oogle-1/www/contact.html
Il y a t-il une solution alternative à l'utilisation de ce script qui n'alternerai pas le design en cas d'incompatibilité avec le serveur ?
Merci de votre aide !