Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

newtech

Pioneers
  • Posts

    494
  • Joined

  • Last visited

Posts posted by newtech

  1. All of my pages seem to be working fine except my index page. Here is what it has:

    <title>Victory Life Center</title>

    <META NAME="Description" Content="Victory Life Center -">

    <META NAME="Keywords" Content="">

     

    I do have the following on my index page:

    <?php

    # cDynamic Meta Tags

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

    require(DIR_WS_INCLUDES . 'meta_tags.php');

    #

    ?>

     

    Any idea why it would only be this page?

    Am I am using mainpagedefine contrib. Anybody else using this contrib that is having the same problem?

    If mainpage contrib is the problem, anybody know what would the hardcode I could enter on the index.php for metatags?

     

    If mainp

  2. I never received an answer on this:

    I have installed Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs but I have a problem:

    Under both categories and products I do not have the ability to enter custom URL's in admin. That option does not appear under categoreis or products.

     

    I ran the database query and verified that the additional fields are in the database.

    I did all the edits per the install instructions including additional_install_instructions.txt.

  3. Hi

     

    I would also like to ask

    FIND:

    array('title' => BOX_CUSTOMERS_ORDERS, 'link' => tep_href_link(FILENAME_ORDERS, 'selected_box=customers')))),

     

    Under

    admin/index.php .

     

    But i can't find the code in the admin/index.php?

     

    Can someone pls help? thanks

    WHERE is this code found. it is not in admin/index.php. Someone needs to correct the instructions.

  4. I can only find one donations contribution and it does not work like I need and actually does not make sense how it was made to be used.

     

    Here is what I need and does anyone know of any contrib that would work?

     

    After a customer places and order they have the option to add a donation to the order. We would like it to be they could enter a specific amount and/or they would be presented with some options. The donation amount needs to be added to the order-the reason is that the products are actually free and any donation they make goes into the total and makes the invoice a tax-deductible receipt.

     

    Any contrib that allows people to enter an amount that will be added to their order.

     

    What I am thinking I could do would be to make various donation amounts as products. Then these products would be entered as "Suggested/Recommended" items. The problem with this is that it limits what people can donate.

  5. IS this now compatible with PayPal IPN?
    No.

    Is there anyone at all that has gotten this contrib to work with PayPal? It is a great contrib that I am using for two clients, but neither of them use PayPal. I now have a client that uses PayPal so I need it to work with PayPal. If this is absolutely not feasible, anyone using another contrib that provides nice invovicing and packing slips that work with PayPal?

  6. When I am logged into admin, and go to

    admin/admin_members.php?selected_box=administrator

    or any other admin page, in the header to the right I am missing some langugage files for:

    HEADER_TITLE_ONLINE_CATALOG

    HEADER_TITLE_ADMINISTRATION

     

    However, when I go into

    admin/includes/languages/english.php

    the language definitions are there. Where else should the langugage file definitons be located?

  7. Hi

     

    I Install Administration Access Level Accounts2.2a but when i use any dropdown menu or search boxes it return to the login page. I compeletly search this forum and i found many other people the have the same problem but nobody can solve it.

     

    please help.

    Anyone find a solution to make this contrib work?

    No matter what module I click on I go to a page that has links on the top right for My Account and Logoff but the rest of the pages is blank.

  8. I am able to get the authorize.net module to work fine in demo mode.

    However, there is one thing I am noticing and I am not sure if it is an authorize.net issue or oscommerce script issue.

     

    When an authorize.net e-mail receipt is being sent to customer it does not have the invocie number or description listed. Is this something that is not being passed by oscommerce or is it something that oscommerce is passing to authroize.net and then are not inputing into e-mail receipt?

     

    Date/Time : 03-Aug-2007 10:55:05 AM

     

    ========= ORDER INFORMATION =========

    Invoice :

    Description :

    Amount : 1.09 (USD)

    Payment Method : Visa

    Type : Authorization and Capture

  9. $ei_message->build_message();
    $new_mail_subject = EMAIL_TEXT_SUBJECT . ' - ' . EMAIL_TEXT_ORDER_NUMBER . ' ' . $insert_id;
    $ei_message->send($order->customer['name'], $order->customer['email_address'], STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $new_mail_subject, $email_order);
    
    if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
    $ei_message->send('',SEND_EXTRA_ORDER_EMAILS_TO, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $new_mail_subject, $email_order);

     

    I do what is listed above and I still do not get an e-mail with the subject. I like the idea of having the order number in the subject, but no luck to having the order number or any subject at all. Any other suggestions?

     

    BTW, the code that was in my checkout_process (before doing the edit above) did not have the ei references. Here is what I had:

     

      tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $new_mail_subject, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
    
    // send emails to other people
     if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
    tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $new_mail_subject, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

  10. When I do what is recommended below, I am able to have the order sent to more than one e-mail address. However, now the subject line in my e-mail is blank.

     

    includes/modules/email_invoice/email_invoice.php

     

    Changed:

     

    if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
    $ei_message->send('',SEND_EXTRA_ORDER_EMAILS_TO, $order->customer['name'], $order->customer['email_address'], $new_mail_subject, $email_order);

    To:

     

    if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
    $ei_message->send('',SEND_EXTRA_ORDER_EMAILS_TO, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $new_mail_subject, $email_order);

  11. When using html invoice for e-mail the SKU # is only around 16 characters. Some of my SKU's are 35 characters. All the characters show up when use non-html invoices for e-mail.

     

    Where in this contrib is the SKU character length being limited?

    I found two other users that has asked the same question in the past,

    //www.oscommerce.com/forums/index.php?showtopic=132562&st=620&p=734357&hl=sku%20length

     

    but I can't find an answer in this forum.

  12. For those who get a blank screen when they edit teh checkout_process.php file, here is the most common reason why with this contrib:

     

    In includes/modules/email_invoice/email_invoice.php/ around line 30 there is

     

    require(DIR_FS_ADMIN . DIR_WS_LANGUAGES . $language . "/" . FILENAME_ORDERS_INVOICE);

     

    It should be:

     

    require(DIR_FS_ADMIN . "/" . DIR_WS_LANGUAGES . $language . "/" . FILENAME_ORDERS_INVOICE);

  13. I have not received a response on this-any suggestions?

    I have installed Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs but I have a problem:

    Under both categories and products I do not have the ability to enter custom URL's in admin. That option does not appear under categoreis or products.

     

    I ran the database query and verified that the additional fields are in the database.

    I did all the edits per the install instructions including additional_install_instructions.txt.

  14. I have not received a response on this-any suggestions?

     

    I have installed Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs but I have a problem:

    Under both categories and products I do not have the ability to enter custom URL's in admin. That option does not appear under categoreis or products.

     

    I ran the database query and verified that the additional fields are in the database.

    I did all the edits per the install instructions including additional_install_instructions.txt.

  15. I have installed Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs but I have a problem:

    Under both categories and products I do not have the ability to enter custom URL's in admin. That option does not appear under categoreis or products.

     

    I ran the database query and verified that the additional fields are in the database.

    I did all the edits per the install instructions including additional_install_instructions.txt.

  16. Hello,

     

    I am using Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs.

     

    I am trying to use the custom product URL yesudo added and while it works, it removes the dashes I put in the name.

     

    For example, if I put in "bob-is-your-uncle" in the Products SEO URL you get something like bobisyouruncle-p-31.html for the output.

     

    I have tried underscores and equal signs, all of these extended characters are removed. I am using pretty much the default settings (except I have turned off the case for testing),

     

    I verified that in the admin that "Remove all non-alphanumeric characters?" is set to false, but even the function strip (in seo_class.php) it looks like the default replacement character is "-".

     

    ****

     

    As I was writing researching this point I found a work-around to get it to work. Ok. maybe this is how it is designed, I do not know, but I thought I would share in case anyone else had the problem.

     

    Use a space character instead of the dash.

     

    For example:

     

    bob-is-your-uncle => bobisyouruncle-p-31.html

    bob is your uncle => bob-is-your-uncle-p-31.html

     

    - Roger

    I have installed Ultimate SEO URLs - 2.1d with optional Admin settable Product and Category URLs but I have a problem:

    Under both categories and products I do not have the ability to enter custom URL's in admin. That option does not appear under categoreis or products.

     

    I ran the database query and verified that the additional fields are in the database.

    I did all the edits per the install instructions including additional_install_instructions.txt.

  17. Hello every one,

     

    Just a simple question.

     

    After installing the ultimate SEO I noticed a new box in the admin/catalog/products “Products SEO URL: “

     

    Would you kindly advise what suppose to be written there ? If I have in the Products Name box a product called “A—B—C” , What would I key in the Product SEO URL Box : ?

    This feature is what I want to work but it is not happening.

    I have installed the latest version, ran the database query, and edited all the files including what is in the additional_install_instructions, but the customized 'Products SEO URL or Categories SEO URL does not show up under products or categories. I have edited teh language file. Any suggestions?

  18. There is something weird going on with the meta tags contrib.

    It is inserting text in serveral places. For example:

    bytmc

     

    <title>The Molding of a Champion by: Children-Youth - A Place of Hope Store -</title>

     

    <META NAME="Description" Content="The Molding of a Champion (bytmc) by Children-Youth - The Molding of a Champion Helping Your Child Shape a Winning Destiny Winning Strategies for nurturing future life champions Practical parenting advice from a leading...">

     

    <META NAME="Keywords" Content="the molding of a champion, bytmc books, children-youth, books, videos, dvd, supplements for eating disorders, depression, abuse, store">

     

    I also find the term in a few places on the page:

     

    href="http://www.aplaceofhopestore.com/molding-champion-p-69.html" class="headerNavigation">bytmc</a></td>

    <td class="pageHeading" valign="top">The Molding of a Champion<br><span class="smallText">[bytmc]</span></td>

     

    This is happening to every product page, but with different phrases. Anotehr page is doing the same thing with the phrase bahsea.

     

    Where in the world are these terms coming from? They are not in my original product pages.

     

    Is this something from the SEO contrib?

  19. I am sure there is a module for the feature I want, but for some reason I am not finding it in contribs.

     

    I want to have a page in my store where customers can go and see a list of everything in the store. The list would have the product number, short description, and price with a link to the product and a link to add to shopping cart.

     

    Is there such a module? What is its name or link?

    Any suggestions

  20. I am sure there is a module for the feature I want, but for some reason I am not finding it in contribs.

     

    I want to have a page in my store where customers can go and see a list of everything in the store. The list would have the product number, short description, and price with a link to the product and a link to add to shopping cart.

     

    Is there such a module? What is its name or link?

  21. There is something weird going on with the meta tags contrib.

    It is inserting text in serveral places. For example:

    bytmc

     

    <title>The Molding of a Champion by: Children-Youth - A Place of Hope Store -</title>

     

    <META NAME="Description" Content="The Molding of a Champion (bytmc) by Children-Youth - The Molding of a Champion Helping Your Child Shape a Winning Destiny Winning Strategies for nurturing future life champions Practical parenting advice from a leading...">

     

    <META NAME="Keywords" Content="the molding of a champion, bytmc books, children-youth, books, videos, dvd, supplements for eating disorders, depression, abuse, store">

     

    I also find the term in a few places on the page:

     

    href="http://www.aplaceofhopestore.com/molding-champion-p-69.html" class="headerNavigation">bytmc</a></td>

    <td class="pageHeading" valign="top">The Molding of a Champion<br><span class="smallText">[bytmc]</span></td>

     

    This is happening to every product page, but with different phrases. Anotehr page is doing the same thing with the phrase bahsea.

     

    Where in the world are these terms coming from? They are not in my original product pages.

     

    Is this something from the SEO contrib?

×
×
  • Create New...