• Regolamento Macrocategoria DEV
    Prima di aprire un topic nella Macrocategoria DEV, è bene leggerne il suo regolamento. Sei un'azienda o un hosting/provider? Qui sono anche contenute informazioni per collaborare con Sciax2 ed ottenere l'accredito nella nostra community!

email

a me esce questo nel fil php

<?php
/**
* MyBB 1.4
* Copyright © 2008 MyBB Group, All Rights Reserved
*
* Website:
Perfavore, Entra oppure Registrati per vedere i Link!

* License:
Perfavore, Entra oppure Registrati per vedere i Link!

*
* $Id: php.php 4181 2008-09-07 17:19:49Z Tikitiki $
*/

// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}

/**
* PHP mail handler class.
*/
class PhpMail extends MailHandler
{
/**
* Additional parameters to pass to PHPs mail() function.
*
* @var string
*/
var $additional_parameters = '';

/**
* Sends the email.
*
* @return true/false whether or not the email got sent or not.
*/
function send()
{
global $lang, $mybb;

// For some reason sendmail/qmail doesn't like \r\n
$this->sendmail = @ini_get('sendmail_path');
if($this->sendmail)
{
$this->headers = str_replace("\r\n", "\n", $this->headers);
$this->message = str_replace("\r\n", "\n", $this->message);
$this->delimiter = "\n";
}

// Some mail providers ignore email's with incorrect return-to path's so try and fix that here
$this->sendmail_from = @ini_get('sendmail_from');
if($this->sendmail_from != $mybb->settings['adminemail'])
{
@ini_set("sendmail_from", $mybb->settings['adminemail']);
}

// If safe mode is on, don't send the additional parameters as we're not allowed to
if(ini_get('safe_mode') == 1 || strtolower(ini_get('safe_mode')) == 'on')
{
$sent = @mail($this->to, $this->subject, $this->message, trim($this->headers));
}
else
{
$sent = @mail($this->to, $this->subject, $this->message, trim($this->headers), $this->additional_parameters);
}
$function_used = 'mail()';

if(!$sent)
{
$this->fatal_error("MyBB was unable to send the email using the PHP {$function_used} function.");
return false;
}

return true;
}
}
?>



Non mi esce niente di quello che sta scritto sul forum
 
La modifica sul forum è per la versione 1.4, se hai la versione 1.4.1 o 1.4.2 non serve modificare.
Controlla nella casella spam, per alcuni indirizzi (hotmail, msn, e a volte yahoo) le mail inviate da Altervista finiscono nello spam.

Inoltre, usi php4 o php5 su Altervista? se usi php4 passa a php5 (come fare sul forum di Altervista.
 
E' la versione di PHP.

Controlla quale possiedi tramite Pannello di Controllo.