mgmaster
Forum Replies Created
-
oops ! let’s try the code button ??
here !
LINE 150 : This will remove the “warning” if there is no categoriesecho '<td id="showit"><a href="'.get_month_link ($thisyear, $thismonth).'" onclick="return calendar ('.$thisyear.','.$thismonth.','.($full == 0 ? 1 : 0).',\''.( empty($this->categories) ? '' : implode( ',', $this->categories ) ).'\')">'.$this->split_open.'</a></td>';
LINE 156 : This will fix the month navigation
'" onclick="return calendar ('.$next->year.','.$next->month.','.$full.',\''.( empty($this->categories) ? '' : implode( ',', $this->categories ) ).'\')"'.
here’s a fix !
FILE /models/calendar.php
LINE 150 : This will remove the “warning” if there is no categories
echo ‘<td id=”showit”>categories) ? ” : implode( ‘,’, $this->categories ) ).’\’)”>’.$this->split_open.’</td>’;LINE 156 : This will fix the month navigation
‘” onclick=”return calendar (‘.$next->year.’,’.$next->month.’,’.$full.’,\”.( empty($this->categories) ? ” : implode( ‘,’, $this->categories ) ).’\’)”‘.Forum: Fixing WordPress
In reply to: WP not sending emailMy server is using SendMail instead of mail.
you can set it to smpt if you want
but here how I solve it.
tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s smtp
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
Forum: Fixing WordPress
In reply to: emails not sentMy server is using SendMail instead of mail.
here how I solve it.tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s smtp
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
Forum: Installing WordPress
In reply to: Settign Email Server Somewhere?My server is using SendMail instead of mail.
here how I solve it.tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s smtp
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
Forum: Fixing WordPress
In reply to: Registration email (password) not sendingWordPress is set to use mail by default but my server is using SendMail instead of mail.
here how I solve it.tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s smtp
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
Forum: Fixing WordPress
In reply to: Lost password not sentMy server is using SendMail instead of mail.
here how I solve it.tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s smtp
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
Forum: Fixing WordPress
In reply to: Registration/Lost Password E-mailFor me I was using SendMail on my server but wordpress is set to use mail instead of sendmail. here how I’ve changed it.
tcheck the pluggable.php file
you might get this
// Set to use PHP’s mail()
$phpmailer->IsMail();
on line #238change it for this if you are using SendMail
// Set to use PHP’s sendmail()
$phpmailer->IsSendmail();or this if you are using QMail
// Set to use PHP’s Qmail()
$phpmailer->IsQmail();or this if you are using SMTP
// Set to use PHP’s SMTP()
$phpmailer->IsSMTP();I got those function from the file class-phpmailer.php.
it worked for me. hope it will helps !
thank you !