

noppie
Members-
Content count
306 -
Joined
-
Last visited
About noppie
- Birthday 09/19/1958
Profile Information
-
Real Name
Naomi
-
Gender
Female
-
Interests
I am a peace activist.. and I am working on getting Mr Bush out of office.,
- Website
-
-
that is what it was working now. thank you so much for doing this.. this is exciting. Noppie
-
it is the white space at the end of the file after the ?> noppie
-
check your includes/database.php includes/filesnames.php includes/languages/english.php made sure that the last line in this files are not white space. and maybe the files login.php logout.php create_count.php
-
Hello I load this and on my login page I get this instead of a facebook button function logout(){ document.location.href = "logoff.php"; } Login with Facebook below is my login.php thank you Noppie
-
hello I hope some can help.. I have this installed.. and it works but it only show up the prioirty shipping.. and I would like to have the first class show up also... any ideas.. I use the usps method shipping and i use the Estimated Shipping module with UPS/USPS thank you
-
anyway of sharing what you did,. I really need this bad,. Naomi
-
OK I have been working on this for quite some time and can not for the life of me figure it out. My banners are not shopping up. I when to affiliate_configure.php turned on the debugging for banners. and this is what I got Notice: Undefined variable: prod_banner_id in /home/hera/public_html/shop/affiliate_show_banner.php on line 129 Notice: Undefined variable: banner in /home/hera/public_html/shop/affiliate_show_banner.php on line 142 Notice: Undefined variable: sql in /home/hera/public_html/shop/affiliate_show_banner.php on line 142 Check the pathes! (catalog/includes/configure.php) absolute path to picture: /home/hera/public_html/shop/images/ build with: /home/hera/public_html/shop/images/ DIR_FS_CATALOG /home/hera/public_html/shop/ DIR_WS_CATALOG Notice: Use of undefined constant DIR_WS_CATALOG - assumed 'DIR_WS_CATALOG' in /home/hera/public_html/shop/affiliate_show_banner.php on line 84 DIR_WS_CATALOG DIR_WS_IMAGES images/ $banner SQL-Query used: Try to find error: SQL-Query: No result Locating Pic images/ failed here is my shop/includes/configure.php looks like. // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://herasonlinemarket.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://herasonlinemarket.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'herasonlinemarket.com'); define('HTTPS_COOKIE_DOMAIN', 'herasonlinemarket.com'); define('HTTP_COOKIE_PATH', '/shop/'); define('HTTPS_COOKIE_PATH', '/shop/'); define('DIR_WS_HTTP_CATALOG', '/shop/'); define('DIR_WS_HTTPS_CATALOG', '/shop/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/hera/public_html/shop/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); please help.. i am getting a headahe over this. thank you the osc guru's noppie
-
customor add sample. help with uploading
noppie replied to noppie's topic in General Add-Ons Support
can anyone help__- thank you -
customor add sample. help with uploading
noppie replied to noppie's topic in General Add-Ons Support
-
I need to have customer send me pictures of what they would like me to make for them.. now the problem I am having is this script below has two uploads but the first one does not work. only the second one.. and I for the life of me can not figure it out.. Can any of you thank you in advance. noppie <?php /* $Id: contact_us.php,v 1.42 2003/06/12 12:17:07 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License Upload sample Contribution from Edo Kantor edokantor@yahoo.com */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SAMPLES); $error = false; if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'send')) { //edit the following fields require_once('includes/classes/class.phpmailer-lite.php'); $to = 'sss@email.com'; //change to your email address $email = tep_db_prepare_input($HTTP_POST_VARS['email']); $name = tep_db_prepare_input($HTTP_POST_VARS['name']); $subject = 'Upload Samples'; //change to your subject $comment = tep_db_prepare_input($HTTP_POST_VARS['enquiry']); $filename1 = basename( $_FILES['upload1']['name']); $mail = new PHPMailerLite(); // defaults to using php "Sendmail" (or Qmail, depending on availability) $mail->IsMail(); // telling the class to use native PHP mail() $body = eregi_replace("[\]",'',$comment); //clean user input $mail->SetFrom( $email, 'upload sample'); $address = $to; $mail->AddAddress($address, "Webmaster"); $mail->Subject = $subject; $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test $mail->MsgHTML($body); $mail->AddAttachment($_FILES['upload1']['tmp_name'], "$filename1"); if (is_uploaded_file($_FILES['upload2']['tmp_name'])) { $filename2 = basename( $_FILES['upload2']['name']); $mail->AddAttachment($_FILES['upload2']['tmp_name'], "$filename2"); } if(!$mail->Send()) { $error = true; } else { tep_redirect(tep_href_link(FILENAME_UPLOAD_SAMPLE, 'action=success')); } $messageStack->add('contact', ENTRY_EMAIL_ADDRESS_CHECK_ERROR); } $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_SAMPLES)); ?> <!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"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="0" 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"><table border="0" width="100%" cellspacing="0" cellpadding="0"><tr> <form enctype="multipart/form-data" action="upload_sample.php?action=send" method="post"> <!--set file size limit to 2mb--> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr><td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_contact_us.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></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 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="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> <?php } else { ?> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td> <table border="0" width="100%" cellspacing="5" 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> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '10'); ?></td> <tr> <td class="main"><?php echo ENTRY_ENQUIRY; ?></td> </tr> <tr> <td><?php echo tep_draw_textarea_field('enquiry', 'soft', 5, 5); ?></td> </tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <tr> <td class="main"><?php echo ENTRY_UPLOAD; ?></td> </tr> <tr> <td class="main"> <!--limit file size upload to 2mb--> <input type="hidden" name="MAX_FILE_SIZE" value="2000000" /> <?php echo tep_draw_file_field('upload1' , 'file'); ?></td> </tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <tr> <td class="main"><?php echo ENTRY_UPLOAD; ?></td> </tr> <tr> <td class="main"> <?php echo tep_draw_file_field('upload2' , 'file'); ?></td> </tr> <tr> </table> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr><td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td></tr> </table> <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> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr><td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td></tr> </table> </td> </tr> </table> <?php } ?> </td></tr> </table> </form></td> <!-- body_text_eof //--> <td class="col_right"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--></body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
-
PHP Intrusion Detection System for osCommerce
noppie replied to celextel's topic in General Add-Ons Support
I try to get to my site and I am getting Warning: require_once(IDS/Init.php) [function.require-once]: failed to open stream: No such file or directory in /home/hera/public_html/shop/includes/modules/osc_phpids.php on line 90 Fatal error: require_once() [function.require]: Failed opening required 'IDS/Init.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:includes/phpids/lib/') in /home/hera/public_html/shop/includes/modules/osc_phpids.php on line 90 what did I fortget -
Hello First off thank you for making this mod.. i know I couldn't do it.. the problem i am having is I sell multi items at one time and they weight between 1 oz to 1 lb. I have read through this forum..and can't find the answer.. when there are more than one item I don't think the weights are adding up. and I am not sure if I am adding the oz correctly do I add 0.01 for one oz or .10 would that be 10 oz.. thank you Noppie
-
I think what this person is saying what is confusing How would the customer know what the choices are to choose from they need to know what A would be and what b would be and c would be. I hope me and the picture explain it well. thank you Naomi
-
Offical Google Checkout module for osCommerce Support Thread
noppie replied to Silverado05's topic in Other
Please anyone on the shipping.. I really want to use this checkout thankl you noppie -
Offical Google Checkout module for osCommerce Support Thread
noppie replied to Silverado05's topic in Other
I have a fix that will work until the shipping is fixed or I am explained how to use the merchant_calculated_methods----- I have a message at the google button for my customer to use the media price and I send out first class. I don't know any other way around until someone explains like I am a 5 year on how to setup the merchant calculated methods I hope to have it explained to me soon.' thank you noppie ;)