Fatal error help please.

Status
Not open for further replies.

discussh

New Member
Messages
29
Reaction score
3
Points
3
I just installed IPB forum board on my host and now when ever i send a private message to another user on the forums after like a min i keep getting this error... It's been like every min i get this error...
Error >> http://i.imgur.com/w9tZofU.png

My Php.php
PHP:
<?php
/**
* @brief        PHP Email Class
*
* @copyright    (c) 2001 - SVN_YYYY Invision Power Services, Inc.
*
* @package        IPS Social Suite
* @since        17 Apr 2013
* @version        SVN_VERSION_NUMBER
*/

namespace IPS\Email\Outgoing;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
    header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
    exit;
}

/**
* PHP Email Class
*/
class _PHP extends \IPS\Email
{
    /**
     * Send
     *
     * @throws    \IPS\Email\Outgoing\Exception
     */
    protected function _send()
    {
        try
        {
            if ( !mail( $this->headers['To'], mb_encode_mimeheader( $this->subject ), $this->message, $this->_compileHeaders( TRUE ), \IPS\Settings::i()->php_mail_extra ) )
            {
                $error = error_get_last();
                preg_match( "/^(\d+)/", $error['message'], $matches );
                throw new \IPS\Email\Outgoing\Exception( $error['message'], isset( $matches[1] ) ? $matches[1] : NULL );
            }
        }
        catch ( \Exception $e )
        {
            throw new \IPS\Email\Outgoing\Exception( $e->getMessage() );
        }

        return TRUE;
    }
}
 

matmix09

New Member
Messages
14
Reaction score
1
Points
3
I might be wrong but from a quick search people suggest you increase the memory. Since this suggestion was only suggested for WordPress users... I am not sure what you'd have to change on IPB Forum. Someone should respond back and I'll keep looking around to help you out. Give me couple minutes, I'll do a look around for you :)
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hi discussh,

This issue has been fixed. Sorry for the trouble. :)

Thank you,
 
Status
Not open for further replies.
Top