Can not access cpanel it keeps reconnecting

Hi there, I am able to login to 000webhost.com, but it is not opening cpanel… It is just keeps reconnecting… Since last 20 hours it is happening. I am feeling helpless.

We are working on the issue :slight_smile:

@pawarrushikant Can you try now.
Let us know if you’re still facing the same. :slight_smile:

@akhilkumar332,
Yes, It solved the problem. I able to login again. Thank you for your helpful information.

But Now i am facing another problem. Sendmail Lets us send 50 emails / per day as 000webhost user.

But i am not able to use it…, On yesterday it send some mails… then it said your daily limit crossed. When i login today i got daily emails quota resettled.

But it is just showing on cpanel … In reality when i try to send mail…

https://oniony-leg.000webhostapp.com/smtp.php

2018-04-01 07:52:09 CLIENT -> SERVER: EHLO oniony-leg.000webhostapp.com 2018-04-01 07:52:09 CLIENT -> SERVER: STARTTLS 2018-04-01 07:52:09 CLIENT -> SERVER: EHLO oniony-leg.000webhostapp.com 2018-04-01 07:52:09 CLIENT -> SERVER: AUTH LOGIN 2018-04-01 07:52:09 CLIENT -> SERVER: aW5zdGFwcm9tby52ZXJzYXRpbGVAZ21haWwuY29t 2018-04-01 07:52:09 CLIENT -> SERVER: NzAyMDIzNDA5MQ== 2018-04-01 07:52:09 CLIENT -> SERVER: MAIL FROM: 2018-04-01 07:52:09 CLIENT -> SERVER: RCPT TO: 2018-04-01 07:52:09 CLIENT -> SERVER: DATA 2018-04-01 07:52:09 SMTP ERROR: DATA command failed:

550 5.4.5 Daily user sending quota exceeded.

r12sm4731276ywl.108 - gsmtp 2018-04-01 07:52:09 SMTP Error: data not accepted. not sent2018-04-01 07:52:09 CLIENT -> SERVER: QUIT

Plz try again in sometime.

Can you post your “Sendmail Script” here?

@akhilkumar332,

Yes sir, It has started sending mails now.

Yes . I am sending script here , In case if need this

below is my pure php script ( without any php framework like CakePHP or ZendPHP, i am using core pure and plain PHP ) :
////////////////
<?php
require_once(‘PHPMailer/PHPMailerAutoload.php’);

date_default_timezone_set('Asia/Kolkata');

$to['email'] = "pawarrushikant@gmail.com";      
$to['name'] = "rushikant";   
$subject = "email subject is this";
$str = "<p>Hello, World its me dear...</p>";
$mail = new PHPMailer;
$mail->IsSMTP(); 
$mail->SMTPDebug = 1; 
$mail->SMTPAuth = true;
$mail->Host = 'tls://smtp.gmail.com:587';
$mail->Port = 587;
$mail->Username = '***************************';
$mail->Password = '*********';
$mail->SMTPSecure = 'tls';
$mail->From = 'instapromo.versatile@gmail.com';
$mail->FromName = "Any Name";
$mail->AddReplyTo('instapromo.versatile@gmail.com', 'any name'); 
$mail->AddAddress($to['email'],$to['name']);
$mail->Priority = 1;
$mail->AddCustomHeader("X-MSMail-Priority: High");
$mail->WordWrap = 50;    
$mail->IsHTML(true);  
$mail->Subject = $subject;
$mail->Body    = $str;
if(!$mail->Send())
{
$err = 'Message could not be sent.';
$err .= 'Mailer Error: ' . $mail->ErrorInfo;                        
}

 $mail->ClearAddresses();

//////////////////

It is sending mails without any PHP errors OR WARNINGS. Problem is solved but still i am sending script may be in case you need it.

Thanking you,
rushikant pawar

1 Like

I’m happy your issue is solved.
Let us know if you’ve any other issue, we’ll be happy be help you :slight_smile:

1 Like