Pages: [1] 2   Go Down
Send this topic | Print
Author Topic: sendmail not working on box13 [RESOLVED]  (Read 1393 times)
absolutehid
Member
*
Offline Offline

Posts: 38


WWW
« on: September 30, 2008, 10:58:31 AM »

Anyone other than me? I put in a ticket but i bet i'm not the only one.
« Last Edit: November 10, 2008, 07:08:15 PM by Dark Raito » Logged
RBCFAQS
110MB Dreamweaver Expert and
Loyal 110MB Member
*******
Offline Offline

Posts: 2833


IM Me for anything. That's what I'm here for. :D


WWW
« Reply #1 on: September 30, 2008, 03:10:32 PM »

going to ask a basic quesitn...


Do you have the sendmail upgrade?
Logged

absolutehid
Member
*
Offline Offline

Posts: 38


WWW
« Reply #2 on: September 30, 2008, 03:39:12 PM »

yes, i do. and mysql, htacess, etc.

a whole bunch of poop i regret paying for cause it never works anyways.
Logged
iNDECiSiVE
iNDECiSiVE DUDE
Super Authority member
******
Offline Offline

Posts: 1562


yay for my new shoes


WWW
« Reply #3 on: October 01, 2008, 03:05:00 AM »

yes, i do. and mysql, htacess, etc.

a whole bunch of poop i regret paying for cause it never works anyways.
maybe it's a script error, or a speed issue, and the mail just is sent later. nothing is perfect Wink
Logged

http://melchiormphilips.com/MellieAndJoey/
There will soon be new energy drink reviews! (After Sony vegas decides to work again), we've recorded 5 new episodes! And we found one that doesn't look like piss!
absolutehid
Member
*
Offline Offline

Posts: 38


WWW
« Reply #4 on: October 01, 2008, 04:44:57 AM »

You're right, this is just about as far from perfect as you can get.

This looks incredibly unproffessional on my behalf to my customers, and it seems like no one cares about fixing it. Clearly, i'm thrilled.
Logged
iNDECiSiVE
iNDECiSiVE DUDE
Super Authority member
******
Offline Offline

Posts: 1562


yay for my new shoes


WWW
« Reply #5 on: October 01, 2008, 04:53:37 AM »

what script are you using to send these mails?
just the piece of php code that sends it, maybe there's an error in it.
Logged

http://melchiormphilips.com/MellieAndJoey/
There will soon be new energy drink reviews! (After Sony vegas decides to work again), we've recorded 5 new episodes! And we found one that doesn't look like piss!
absolutehid
Member
*
Offline Offline

Posts: 38


WWW
« Reply #6 on: October 01, 2008, 04:57:56 AM »

Sure, i appreciate you looking over it.

I didn't change anything since it worked, so i REALLY doubt its code, but you can always recheck stuff.

Code:
<?php

/*

  $Id: contact_us.php 1739 2007-12-20 00:52:16Z hpdl $



  osCommerce, Open Source E-Commerce Solutions

  http://www.oscommerce.com



  Copyright (c) 2003 osCommerce



*/



  
require('includes/application_top.php');



  require(
DIR_WS_LANGUAGES . $language . '/' . FILENAME_CONTACT_US);



  
$error = false;

  if (isset(
$HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'send')) {

    
$name = tep_db_prepare_input($HTTP_POST_VARS['name']);

    
$email_address = tep_db_prepare_input($HTTP_POST_VARS['email']);

    
$enquiry = tep_db_prepare_input($HTTP_POST_VARS['enquiry']);



    if (
tep_validate_email($email_address)) {

      
tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_SUBJECT, $enquiry, $name, $email_address);



      
tep_redirect(tep_href_link(FILENAME_CONTACT_US, 'action=success'));

    } else {

      
$error = true;



      
$messageStack->add('contact', ENTRY_EMAIL_ADDRESS_CHECK_ERROR);

    }

  }



  
$breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_CONTACT_US));

?>


<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

<html <?php echo HTML_PARAMS; ?>>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">

<title><?php echo TITLE; ?></title>

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">

<link rel="stylesheet" type="text/css" href="stylesheet.css">

</head>

<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">

<div id="wrapper">

<!-- header //-->

<?php require(DIR_WS_INCLUDES . 'header.php'); ?>

<!-- header_eof //-->

<table width="814" border="0" cellpadding="0" cellspacing="0" align="center">

<tr>

  <td style="background: url(images/template/left_border.gif) repeat-y;width:7px;height:100%;"></td>

<td colspan="11" bgcolor="#0A0909"><!-- body //-->

<table border="0" width="100%" cellspacing="3" cellpadding="3">

  <tr>

    <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">

<!-- left_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>

<!-- left_navigation_eof //-->

    </table></td>

<!-- body_text //-->

    <td width="100%" valign="top"><?php echo tep_draw_form('contact_us', tep_href_link(FILENAME_CONTACT_US, 'action=send')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">

      <tr>

        <td><table border="0" width="100%" cellspacing="0" cellpadding="0">

          <tr>

            <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

          </tr>

        </table></td>

      </tr>

      <tr>

        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

      </tr>

<?php

  
if ($messageStack->size('contact') > 0) {

?>


      <tr>

        <td><?php echo $messageStack->output('contact'); ?></td>

      </tr>

      <tr>

        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

      </tr>

<?php

  
}



  if (isset(
$HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'success')) {

?>


      <tr>

        <td class="main" align="center"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE, '0', '0', 'align="left"') . TEXT_SUCCESS; ?></td>

      </tr>

      <tr>

        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

      </tr>

      <tr>

        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">

          <tr class="infoBoxContents">

            <td><table border="0" width="100%" cellspacing="0" cellpadding="2">

              <tr>

                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

                <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>

                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

              </tr>

            </table></td>

          </tr>

        </table></td>

      </tr>

<?php

  
} else {

?>


      <tr>

        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">

          <tr class="infoBoxContents">

            <td><table border="0" width="100%" cellspacing="0" cellpadding="2">

              <tr>

                <td class="main"><?php echo ENTRY_NAME; ?></td>

              </tr>

              <tr>

                <td class="main"><?php echo tep_draw_input_field('name'); ?></td>

              </tr>

              <tr>

                <td class="main"><?php echo ENTRY_EMAIL; ?></td>

              </tr>

              <tr>

                <td class="main"><?php echo tep_draw_input_field('email'); ?></td>

              </tr>

              <tr>

                <td class="main"><?php echo ENTRY_ENQUIRY; ?></td>

              </tr>

              <tr>

                <td><?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15); ?></td>

              </tr>

            </table></td>

          </tr>

        </table></td>

      </tr>

      <tr>

        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

      </tr>

      <tr>

        <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">

          <tr class="infoBoxContents">

            <td><table border="0" width="100%" cellspacing="0" cellpadding="2">

              <tr>

                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

                <td align="right"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td>

                <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

              </tr>

            </table></td>

          </tr>

        </table></td>

      </tr>

<?php

  
}

?>


    </table></form></td>

<!-- body_text_eof //-->

  </tr>

</table>

<!-- body_eof //-->



<!-- footer //-->

<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>

<!-- footer_eof //-->

      </td>

  <td style="background: url(images/template/right_border.gif) repeat-y;width:7px;height:100%;"></td>

</tr>

</table>

</div>
<!-- Google Code for Send Email Conversion Page -->
<script language="JavaScript" type="text/javascript">
<!--
var google_conversion_id = 1040874173;
var google_conversion_language = "en_US";
var google_conversion_format = "3";
var google_conversion_color = "ffffff";
if (1.0) {
  var google_conversion_value = 1.0;
}
var google_conversion_label = "zWg_CN_nYRC99anwAw";
//-->
</script>
<script language="JavaScript" src="http://www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<img height="1" width="1" border="0" src="http://www.googleadservices.com/pagead/conversion/1040874173/?value=1.0&amp;label=zWg_CN_nYRC99anwAw&amp;script=0"/>
</noscript>

</body>

</html>

<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Logged
patriiiiiiiiiick
Member
*
Offline Offline

Posts: 20


« Reply #7 on: October 06, 2008, 09:45:45 AM »

Hello!

Somewhere between the 29 Sept. and the 02 Oct., the sending of mails stopped working on my website. Being on box 13, could you please check what the issue is?

Thanks!

Patrick

---

PS: edited to add "[admin]" in topic. I think I understood it was the way to do it.
« Last Edit: October 10, 2008, 09:28:57 AM by patriiiiiiiiiick » Logged
exidy
Member
*
Offline Offline

Posts: 11


WWW
« Reply #8 on: October 07, 2008, 09:59:00 AM »

I have the same problem - after months of [low use] reliable operation, it has just stopped! It would be nice if it re-started...
Logged
exidy
Member
*
Offline Offline

Posts: 11


WWW
« Reply #9 on: October 10, 2008, 07:55:05 AM »

This is definitely NOT working. It used to [upto about a week ago] and worked well!

Please fix!!!! cry cry
Logged
patriiiiiiiiiick
Member
*
Offline Offline

Posts: 20


« Reply #10 on: October 10, 2008, 09:28:26 AM »

Duplicate of http://www.110mb.com/forum/admin-needed-sendmail-not-working-on-box13-t36643.0.html
Logged
patriiiiiiiiiick
Member
*
Offline Offline

Posts: 20


« Reply #11 on: October 10, 2008, 09:32:38 AM »

You're not alone! I had searched for others having reported this (but I now have my doubts on the search feature of this forum), didn't find anything relevant and therefore had posted my own thread.
Logged
exidy
Member
*
Offline Offline

Posts: 11


WWW
« Reply #12 on: October 11, 2008, 11:56:08 PM »

Can someone PLEASE look at this - it has been well over a week since it STOPPED and there has been no response.

What makes it worse is that I have no idea how to escalate this.

Can anyone help wih either question?
Logged
patriiiiiiiiiick
Member
*
Offline Offline

Posts: 20


« Reply #13 on: October 12, 2008, 02:24:53 AM »

exidy,

The only thing I can think of is to group in a single thread.

Patrick
Logged
seatcoversoultions
Member
*
Offline Offline

Posts: 1


WWW
« Reply #14 on: October 16, 2008, 09:36:38 AM »

Is there anythhing going on with this issue? I just found out i have a lot of people trying to send me info and i have not been getting it i just tried it my self and it is going thru on the website correctly but i never receive it to my inbox. please help. worked great up untill recently and i have not changed a single thing... Thanks.

www.SoundStormsDJ.110mb.com
Logged
davidg369
Member
*
Offline Offline

Posts: 12


« Reply #15 on: October 21, 2008, 08:12:19 PM »

Hi everyone,

I was wondering if I could get some help please?  I have two sites with 110mb.com, both for friends.

They are:
www.japanese-acupuncture.com.au
www.talkingsolutions.com.au

Both have sendmail activated which is used to send emails from flash pages.

The contact form on www.japanese-acupuncture.com.au works fine and the emails send almost immediately.

About a month ago it was the same for www.talkingsolutions.com.au, but now when I try and use the registration and contact forms the emails aren't appearing.  I haven't changed anything and the script is the same for both sites.

Anyone got any ideas what the problem might be?

Thanks,
David

P.S. no emails have come through from talkingsolutions.com.au in a month, and the sites are hosted on different 110mb boxes I think.
« Last Edit: October 21, 2008, 08:14:09 PM by davidg369 » Logged
Piotr GRD
Honoured 110MB Member
Official 110mb Guru
*****
Offline Offline

Posts: 6663



WWW
« Reply #16 on: October 21, 2008, 08:29:04 PM »

There is few topics about sendmail from box13 (where your second account is hosted).
In example:
http://www.110mb.com/forum/admin-needed-box-13-sendmail-still-not-working-t37189.0.html
Logged

davidg369
Member
*
Offline Offline

Posts: 12


« Reply #17 on: October 21, 2008, 08:43:20 PM »

Does anyone know what's going on with this problem?  I just found out my sendmail hasn't been working either.  Last worked on September
23rd.  I'm also on box13.

Thanks!
Logged
davidg369
Member
*
Offline Offline

Posts: 12


« Reply #18 on: October 21, 2008, 08:47:44 PM »

Thanks Piotr,

Fingers crossed those emails are floating out in cyberspace and are going to make it to our inboxes..
Logged
Piotr GRD
Honoured 110MB Member
Official 110mb Guru
*****
Offline Offline

Posts: 6663



WWW
« Reply #19 on: October 21, 2008, 08:57:38 PM »

Don't bet everything on it... If it's already almost a month that is not working...
Logged

Pages: [1] 2   Go Up
Send this topic | Print
Jump to: