Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

msheno01

Archived
  • Posts

    157
  • Joined

  • Last visited

Profile Information

msheno01's Achievements

  1. srry, JSgraphs might have been for a contr. that I was playing with. If you u dont have that directory, then it is not needed. the only thing I would suggest is to make sure that all the files in the directory graphs are set to 777. That means that you go in there and make sure that all the files are set to 777. I am speaking from what I did to get it working. It might be right or wrong. But all I know is that once I did that, it started working. Moneer
  2. Cool I got it working. From what I can tell, here is what I did: Set premissions to 777 in the following folders. Make sure that you set the premissions for thoes folders and all the files within them...I did that through ws_ftp(it gives you an option) /admin/images/graphs and /admin/jsgraphs Excellent cont. Thanks
  3. I did that and I see the menu for the store statistics. However, when I click store statistics or and other statistics I show a page that does not have any graphs. Even when I choose another form of chart, it doesnt display. Hope that makes sense Moneer
  4. 81RED, I am getting the same as you. Nothing in the admin side and no errors either. Any help would be appreciated.
  5. I have installed the contribution but it refuses to show the next and previous buttons. It shows the dropdown list but not the buttons. I have checked that the files are in english/images/buttons and that the name correctly matches the one referenced in the spil page file. Here is a peice of the code in // display fancy split-page-number-links (Noel Latsha, TEAM DEVOSC) function devosc_display_fancy_links($parameters = '') { global $PHP_SELF, $request_type; $display_links_previous = ''; $display_links_next = ''; if ($this->current_page_number > 1) $display_link_previous = '<a href="' . tep_href_link(basename($PHP_SELF), $parameters . $this->page_name . '=' . ($this->current_page_number - 1), $request_type) . '">' . tep_image_button('button_previous.gif', IMAGE_BUTTON_PREVIOUS) . '</a>'; if (($this->current_page_number < $this->number_of_pages) && ($this->number_of_pages != 1)) $display_link_next = '<a href="' . tep_href_link(basename($PHP_SELF), $parameters . $this->page_name . '=' . ($this->current_page_number + 1), $request_type) . '">' . tep_image_button('button_next.gif', IMAGE_BUTTON_NEXT) . '</a>'; echo '<td width="66" align="right" height="20" valign="top">'; echo $display_link_previous . ' </td>'; if($this->number_of_pages > 1) { ?> <td width="20" align="right" height="20" valign="top"> <form name="jump_to" method="get" action="<? tep_href_link(basename($PHP_SELF), $parameters) ?>"> <?php $pairs = explode("&", $parameters); foreach($pairs as $pair) { list($key,$value) = explode("=", $pair); echo tep_draw_hidden_field(rawurldecode($key), rawurldecode($value)); } ?> <select name="page" onChange="submit();"> <?php for ($jump_to_page = 1; ($jump_to_page <= $this->number_of_pages); $jump_to_page++) { if ($jump_to_page == $this->current_page_number) { echo '<option value='. $jump_to_page .' SELECTED>' . $jump_to_page . '</option>'; } else { echo '<option value='. $jump_to_page . '>' . $jump_to_page . '</option>'; } } ?> </select></form> </td> <td width="66" align="right" height="20" valign="top"> <?php } echo $display_link_next . '</td>'; } } ?> Any help Thanks Moneer
  6. I have searched and can't seem to find any updated version of this contr: Fedex UPS USPS Tracking Did it ever get modified or is there a different contribution that replaces it? I have been trying to get it to work with success except in account history.php . The tracking number refuse to show up... Thanks Moneer
  7. Thanks, I will give that a try. Also when the email is sent out, the address, billing boxes are blacked out. I will try to play around with the css file and see where I can get. Thanks Moneer
  8. Quick question. I was testing the emails that go out when the status of the order changes and found out that they are send in html in a weird language with templates from another company. The file that edits that template is html_email.php under modules. I dont even know where to change the images or the link to modify it. here is the file--any idea on how to change it? <?php/* $Id: send_html_mail, v 5.0 2003/06/29 22:50:52 Gyakutsuki Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ $html_orders = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">"; $html_orders .= "<HTML>"; $html_orders .= "<HEAD>"; $html_orders .= "<TITLE> $EMAIL_TEXT_TITLE </TITLE>"; $html_orders .= "<META http-equiv=Content-Type content=\"text/html; charset=iso-8859-1\">"; $html_orders .= "<META content=\"MSHTML 6.00.2900.2180\" name=GENERATOR>"; $html_orders .= "$VARSTYLE "; $html_orders .= "</HEAD>"; $html_orders .= "$BODY "; $html_orders .= "<BR> "; $html_orders .= "<DIV align=\"center\"> "; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"64\" border=\"0\"> "; $html_orders .= " <TBODY>"; $html_orders .= " <TR> "; $html_orders .= " <TD align=\"middle\"> "; $html_orders .= " $EMAIL_IMAGE_TITRE_ENVOI "; $html_orders .= " </TD> "; $html_orders .= " </TR>"; $html_orders .= " <TR>"; $html_orders .= " <TD align=\"middle\">"; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\" border=\"0\">"; $html_orders .= " <TBODY>"; $html_orders .= " <TR> "; $html_orders .= " <TD align=\"middle\" width=\"28\"> </TD> "; $html_orders .= " <TD align=\"middle\" bgColor=\"#ffffff\">"; $html_orders .= " <TABLE cellSpacing=\"2\" cellPadding=\"5\" border=\"0\">"; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD>"; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"0\" width=\"570\" border=\"0\">"; $html_orders .= " <TBODY>"; $html_orders .= " <TR> "; $html_orders .= " <TD> $EMAIL_IMAGE_VARLOGO </TD> "; $html_orders .= " <TD vAlign=\"top\" align=\"right\" rowSpan=\"2\"> "; $html_orders .= " <TABLE cellSpacing=\"1\" cellPadding=\"3\" align=\"right\" bgColor=\"#cc0000\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD align=\"middle\" valign=\"top\" class=\"commande\"> "; $html_orders .= " <div align=\"left\">"; $html_orders .= " $EMAIL_TEXT_ORDER_NUMBER $oID <BR> "; $html_orders .= " $EMAIL_TEXT_DATE_SHIPPING "; $html_orders .= " $EMAIL_TEXT_DATE </FONT> "; $html_orders .= " </div>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"texte_small\"> "; $html_orders .= " $STORE_NAME_ADRESS "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD> "; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"5\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD>"; $html_orders .= " <DIV align=\"center\"> "; $html_orders .= " <CENTER> "; $html_orders .= " <TABLE style=\"BORDER-COLLAPSE: collapse\" borderColor=\"#111111\" cellSpacing=\"0\" cellPadding=\"4\" width=546 bgColor=\"#ffffff\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" bgColor=\"#ffffff\" colSpan=\"2\">"; $html_orders .= " <TABLE cellSpacing=4 cellPadding=\"0\" width=\"536\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" align=\"middle\" colSpan=\"2\"> "; $html_orders .= " $EMAIL_IMAGE_ARGO "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" width=\"92\"> <div align=\"center\"> "; $html_orders .= " $EMAIL_IMAGE_FOURMI </div>"; $html_orders .= " </TD> "; $html_orders .= " <TD vAlign=\"top\" class=\"texte_intro\"> "; $html_orders .= " <P> $EMAIL_TEXT_DEAR </P> "; $html_orders .= " $EMAIL_TEXT_INTRO_CUSTOMERS "; $html_orders .= " <div align=\"right\">"; $html_orders .= " <p>$EMAIL_TEXT_TEXT_INTRO_CUSTOMERS_SERVICE</p>"; $html_orders .= " <p>"; $html_orders .= " <div align=\"left\">"; $html_orders .= " </div>"; $html_orders .= " <hr align=\"left\">"; $html_orders .= " <div align=\"left\"><br>"; $html_orders .= " $EMAIL_TEXT_FOLLOW_ORDER <p>"; $html_orders .= " $EMAIL_TEXT_DATE_ORDERED "; $html_orders .= " $EMAIL_TEXT_DATE_ORDER "; $html_orders .= " $EMAIL_TEXT_INVOICE_URL <a href=\" HTTP_SERVER . DIR_WS_CATALOG . 'account_history_info.php?order_id=' . $oID;\"> $EMAIL_IMAGE_COMMANDE </a>"; $html_orders .= " <br><br>"; $html_orders .= " $EMAIL_TEXT_STATUT<br><br>"; $html_orders .= " <li>"; $html_orders .= " $EMAIL_TEXT_STATUS_UPDATE1"; $html_orders .= " </li>"; $html_orders .= " $EMAIL_TEXT_COMMENTS_UPDATE "; $html_orders .= " $notify_comments "; $html_orders .= " </div>"; $html_orders .= " <br>"; $html_orders .= " </div>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" colSpan=\"2\"> "; $html_orders .= " <TABLE id=\"AutoNumber1\" cellSpacing=\"0\" cellPadding=\"0\" width=\"100%\" border=\"1\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_texte_post\"> "; $html_orders .= " <P align=\"center\">"; $html_orders .= " <B>"; $html_orders .= " $EMAIL_TEXT_POST "; $html_orders .= " $EMAIL_IMAGE_POSTE "; $html_orders .= " </P>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" bgColor=\"#ffffff\" colSpan=\"2\"> "; $html_orders .= " <TABLE style=\"BORDER-COLLAPSE: collapse\" borderColor=\"#111111\" cellSpacing=\"0\" borderColorDark=\"#999999\" cellPadding=\"0\" width=\"540\" borderColorLight=\"#999999\" border=\"1\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD> "; $html_orders .= " <TABLE id=\"AutoNumber1\" cellSpacing=\"4\" cellPadding=\"0\" width=\"100%\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" width=\"100%\">"; $html_orders .= " <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" bgColor=\"#ffffff\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay\"> "; $html_orders .= " $EMAIL_TEXT_DELAY "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay_content\"> "; $html_orders .= " $EMAIL_TEXT_DELAY_CONTENT "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" colSpan=\"3\"> "; $html_orders .= " <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay\" >"; $html_orders .= " $EMAIL_TEXT_WARNING "; $html_orders .= " </TD>"; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay_warning\">"; $html_orders .= " $EMAIL_TEXT_WARNING_CONTENT "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" colSpan=\"3\">"; $html_orders .= " <TABLE cellSpacing=\"1\" cellPadding=\"4\" width=\"531\" align=\"center\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD cvAlign=\"top\" class=\"tableau_delay\">"; $html_orders .= " <STRONG> $EMAIL_TEXT_COMPOSE </STRONG> "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay_content\"> "; $html_orders .= " $EMAIL_TEXT_COMPOSE_CONTENT "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE> "; $html_orders .= " </CENTER> "; $html_orders .= " </DIV></TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR height=5> "; $html_orders .= " <TD height=5></TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_texte_contact\"> "; $html_orders .= " <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT "; $html_orders .= " $VARHTTP</B> "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD> "; $html_orders .= " <TABLE style=\"BORDER-COLLAPSE: collapse\" borderColor=\"#111111\" cellSpacing=\"0\" borderColorDark=\"#999999\" cellPadding=\"0\" width=560 borderColorLight=\"#999999\" border=\"1\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\">"; $html_orders .= " <TABLE style=\"LEFT: 0px; TOP: 1px\" cellSpacing=\"0\" cellPadding=\"4\" border=\"0\" width=100%> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" width=\"33%\">"; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"4\" width=\"100%\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay\"> "; $html_orders .= " <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET1 </B>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay_content\" height=\"75\"> "; $html_orders .= " $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT1 "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " <TD vAlign=\"top\" width=\"33%\">"; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"4\" width=\"100%\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay\"> "; $html_orders .= " <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET2 </B> "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay_content\" height=75>"; $html_orders .= " $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT2 "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " <TD vAlign=\"top\" width=\"33%\">"; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=\"4\" width=\"100%\" border=\"0\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay\"> "; $html_orders .= " <B> $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET3 </B> "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD class=\"tableau_delay_content\" height=75>"; $html_orders .= " $EMAIL_TEXT_CONTACT_SERVICE_CLIENT_SHEET_CONTENT3 "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" class=\"tableau_delay\" colSpan=\"3\"> "; $html_orders .= " <B> $EMAIL_TEXT_CONTACT</B>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" colSpan=\"3\"> "; $html_orders .= " <FONT face=\"Arial\" color=\"black\" size=\"1\">"; $html_orders .= " $EMAIL_TEXT_CONTACT_CONTENT "; $html_orders .= " </FONT>"; $html_orders .= " </TD> "; $html_orders .= " </TR>"; $html_orders .= " <TR>"; $html_orders .= " <TD vAlign=\"top\" colSpan=\"3\">"; $html_orders .= " <div align=\"right\">"; $html_orders .= " <a href=\" HTTP_SERVER . DIR_WS_CATALOG . '/contact_us.php'\"> $EMAIL_IMAGE_SVC </a>"; $html_orders .= " </div> "; $html_orders .= " </TD>"; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE> "; $html_orders .= " <div align=\"right\"><BR>"; $html_orders .= " </div>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE> "; $html_orders .= " <FONT face=\"Arial,Helvetica,Geneva,Swiss,SunSans-Regular\" size=\"1\">"; $html_orders .= " $EMAIL_TEXT_NOTE </FONT>"; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " <TR height=25> "; $html_orders .= " <TD vAlign=bottom align=\"right\" height=\"25\"><FONT color=#003399 size=\"2\"><B><U></U></B> </FONT></TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE> "; $html_orders .= " <TABLE cellSpacing=\"0\" cellPadding=2 width=\"100%\" border=\"1\"> "; $html_orders .= " <TBODY> "; $html_orders .= " <TR> "; $html_orders .= " <TD vAlign=\"top\" align=\"middle\" class=\"tableau_texte_fin\" colSpan=\"3\">"; $html_orders .= " $EMAIL_TEXT_NOTE1 "; $html_orders .= " </TD> "; $html_orders .= " </TR> "; $html_orders .= " </TBODY> "; $html_orders .= " </TABLE> "; $html_orders .= " <STRONG><U><FONT color=#003399 size=\"2\"> "; $html_orders .= "
  9. There is a new version of the contribution installed but I dont think it is the same. The orginal one send out an email on checkout. The new uploaded one is a template system for order updates. Any ideas? Moneer
  10. I have searched the file to reference the file where you can edit the email text but I cant find it anywhere. Using this contribution, "Email Invoice 1.0"Email Invoice. Where do I change the text that appears in the email? Thanks Moneer
  11. Adam, you are right. I have a table linked to the products table that has all the cogs info. I will look at the php code and see if I can add the queries that export the cost of the item in the qiff file. If you can put this feature in the contribution, that would be great. Or an option to select the table where this info is found. It is easier to upload them to OSC using sql databases than QB. Thanks Moneer
  12. Adam, thanks for the fast reply and your help. You are right, I did import all the products in QB through QBI but the reason I was asking about importing the COGS is that I all ready have them matched up throught linked tables. If I was going to that to each product, then it would take serveral month. I will try to look for a way or a tool to quickly match up products and enter bulk information at once. As for the error tha I am getting, I will check your suggestion and post the results of the findings. Thank you Moneer
  13. I also have another question that I forgot to ask on the previous post. How do I set it so that it imports the cost of the items in the inventory. Is there a specific table that the contribution makes that I need to enter the costs in so that it imports them or can I just direct it to import them from any table that I have custom made? Thanks Moneer
  14. I am getting the followin error when I try to import my order.iif "The Transaction is not in balance. Make sure the amounts in the detail are on the form fro this transaction equal the amount at the top of the form" Why is this happening and how can I fix this? Thanks Moneer
  15. Adam, Thanks for the help. Seems like your contribution will do everything but world peace. I can't wait for it. Let me know if I can help in anyway. Thanks Moneer
×
×
  • Create New...