Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ioasw

Archived
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Real Name
    Robert

ioasw's Achievements

  1. I don't have Froogle configuration variables anywhere in my admin easypopulate.php. I do have this: // I'm only doing this for the first language, since right now froogle is US only.. Fix later! // adding url for froogle, but it should be available no matter what if (EP_SEF_URLS == 'true'){ // if only one language if ($num_of_langs == 1){ $row['v_froogle_products_url_' . $lid] = EP_FROOGLE_PROD . '/products_id/' . $row['v_products_id']; } else { $row['v_froogle_products_url_' . $lid] = EP_FROOGLE_PROD . '/products_id/' . $row['v_products_id'] . '/language/' . $lid; } } else { if ($num_of_langs == 1){ $row['v_froogle_products_url_' . $lid] = EP_FROOGLE_PROD . 'http://mysite.com/=' . $row['v_products_id']; } else { $row['v_froogle_products_url_' . $lid] = EP_FROOGLE_PROD . '?products_id=' . $row['v_products_id'] . '&language=' . $lid; } } $row['v_products_name_' . $lid] = $row2['products_name']; $row['v_products_description_' . $lid] = $row2['products_description']; $row['v_products_url_' . $lid] = $row2['products_url']; You can see where I added mysite.com url to it, and now I get it for my product url but not the image. When I got Easy Populate I looked for the Froogle configuration variables first thing, I would have thought there would have been a simple layout to add the urls but I didn't find anything. I have easypopulate-4masterproducts-2-75.php, easypopulate.php, easypopulate_functions-oldersnaps.php, easypopulate_functions.php, easypopulate_pricebreak.php, easypopulate_vendoremail.php, all in my admin folder, would any of these contain the Froogle configuration variables? I wouldn't think so. Thank you for your help.
  2. I am having trouble configuringm my image url in easy populate, for the FROOGLE upload. I got the product url right, but I can't find where i enter the url for the images. I know I need to enter: http://mysite.com/images/ somewhere for the froogle upload. Thank you.
  3. I do this for the about_us.php page: <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> REPLACE with: <?php // BOF: Header Tag Controller v2.5.7 if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { require(DIR_WS_INCLUDES . 'header_tags.php'); } else { ?> <title><?php echo TITLE; ?></title> <?php } // EOF: Header Tag Controller v2.5.7 ?> and then I go to add a new page in admin and this is the entry I get in the header_tags.php: // about_us.PHP - was default.php case (strstr($_SERVER['PHP_SELF'],FILENAME_ABOUT_US) or strstr($PHP_SELF, FILENAME_ABOUT_US) ): $tags_array = tep_header_tag_page(HTTA_ABOUTUS_ON, HEAD_TITLE_TAG_ABOUTUS, HTDA_ABOUTUS_ON, HEAD_DESC_TAG_ABOUTUS, HTKA_ABOUTUS_ON, HEAD_KEY_TAG_ABOUTUS ); break; // about_us.php case (strstr($_SERVER['PHP_SELF'],FILENAME_ABOUT_US) or strstr($PHP_SELF, FILENAME_ABOUT_US)); $tags_array = tep_header_tag_page(HTTA_ABOUT_US_ON, HEAD_TITLE_TAG_ABOUT_US, HTDA_ABOUT_US_ON, HEAD_DESC_TAG_ABOUT_US, HTKA_ABOUT_US_ON, HEAD_KEY_TAG_ABOUT_US ); break; and it isn't working, the tags aren't showing up. the entry that I am getting for the about_us page is very different to the stock entries included in the header tag contribution. For example this is what I get for the index.php entry, and they all look about like this: // INDEX.PHP case (strstr($_SERVER['PHP_SELF'],FILENAME_DEFAULT) or strstr($PHP_SELF,FILENAME_DEFAULT) ): $showCatTags = false; if ($category_depth == 'nested' || $category_depth == 'products') { $the_category_query = tep_db_query("select categories_name as name, categories_htc_title_tag as htc_title_tag, categories_htc_desc_tag as htc_desc_tag, categories_htc_keywords_tag as htc_keywords_tag from " . TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . (int)$current_category_id . "' and language_id = '" . (int)$languages_id . "'"); $showCatTags = true; } else if (isset($HTTP_GET_VARS['manufacturers_id'])) { $the_category_query= tep_db_query("select m.manufacturers_name as name, mi.manufacturers_htc_title_tag as htc_title_tag, mi.manufacturers_htc_desc_tag as htc_desc_tag, mi.manufacturers_htc_keywords_tag as htc_keywords_tag from " . TABLE_MANUFACTURERS . " m LEFT JOIN " . TABLE_MANUFACTURERS_INFO . " mi on m.manufacturers_id = mi.manufacturers_id where m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'"); $showCatTags = true; } else { $the_category_query = tep_db_query("select categories_name as name, categories_htc_title_tag as htc_title_tag, categories_htc_desc_tag as htc_desc_tag, categories_htc_keywords_tag as htc_keywords_tag from " . TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . (int)$current_category_id . "' and language_id = '" . (int)$languages_id . "'"); } $the_category = tep_db_fetch_array($the_category_query); if (HTDA_DEFAULT_ON=='1') { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['desc']= $the_category['htc_desc_tag'] . ' ' . HEAD_DESC_TAG_DEFAULT . ' ' . HEAD_DESC_TAG_ALL; } else { $tags_array['desc']= $the_category['htc_desc_tag'] . ' ' . HEAD_DESC_TAG_ALL; } } else { $tags_array['desc']= HEAD_DESC_TAG_DEFAULT . ' ' . HEAD_DESC_TAG_ALL; } } else { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['desc']= $the_category['htc_desc_tag'] . ' ' . HEAD_DESC_TAG_DEFAULT; } else { $tags_array['desc']= $the_category['htc_desc_tag']; } } else { $tags_array['desc']= HEAD_DESC_TAG_DEFAULT; } } if (HTKA_DEFAULT_ON=='1') { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['keywords']= $the_category['htc_keywords_tag'] . ', ' . HEAD_KEY_TAG_ALL . ' ' . HEAD_KEY_TAG_DEFAULT; } else { $tags_array['keywords']= $the_category['htc_keywords_tag'] . ', ' . HEAD_KEY_TAG_DEFAULT; } } else { $tags_array['keywords']= HEAD_KEY_TAG_ALL . ', ' . HEAD_KEY_TAG_DEFAULT; } } else { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['keywords']= $the_category['htc_keywords_tag'] . ', ' . HEAD_KEY_TAG_DEFAULT; } else { $tags_array['keywords']= $the_category['htc_keywords_tag']; } } else { $tags_array['keywords']= HEAD_KEY_TAG_DEFAULT; } } if (HTTA_DEFAULT_ON=='1') { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['title']= $the_category['htc_title_tag'] .' '. HEAD_TITLE_TAG_DEFAULT . " " . $the_manufacturers['manufacturers_name'] . ' - ' . HEAD_TITLE_TAG_ALL; } else { $tags_array['title']= $the_category['htc_title_tag'] .' '. $the_manufacturers['manufacturers_htc_title_tag'] . ' - ' . HEAD_TITLE_TAG_ALL; } } else { $tags_array['title']= HEAD_TITLE_TAG_DEFAULT . " " . $the_category['name'] . $the_manufacturers['manufacturers_htc_title_tag'] . ' - ' . HEAD_TITLE_TAG_ALL; } } else { if ($showCatTags == true) { if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['title']= $the_category['htc_title_tag'] . ' ' . HEAD_TITLE_TAG_DEFAULT; } else { $tags_array['title']= $the_category['htc_title_tag']; } } else { $tags_array['title']= HEAD_TITLE_TAG_DEFAULT; } } break; Can anyone tell me what is going on here? I tried many different things but they don't seem to work. Thank you.
  4. I am having trouble configuringm my image url in easy populate, for the FROOGLE upload. I got the product url right, but I can't find where i enter the url for the images. I know I need to enter: http://mysite.com/images/ somewhere for the froogle upload. Thank you.
  5. I looked everywhere in the 206 page of this thread, but could not find anything about this: I have Easy Populate v2.76 for MS2, and I was wondering if there is any way I can add a line to upload special prices for all of my products. I tried: 'v_products_special_price' after 'v_products_price' and it didn't work does anyone know the command, or is this possible with this version or any other version, and I want the special price to be in my store and not froogle. Thanks for reading.
  6. So do you think that is the reason for it not working?, and you're probably right. Do you have to mod. all the files to get Paypal WPP to work correctly? Thanks for the reply.
  7. I posted this problem somewhere else and I probably shouldn't have. i did everthing the installation asked, it was beautiful. I am using a modified template for oscommerce, and it is the newest version of oscommerce. I have a very bad feeling my very nice looking template isn't compatible with the installation of paypal wpp. I hope I am wrong. I modified all of the files with the added codes between //---PayPal WPP Modification START ---// //---PayPal WPP Modification END ---// (are you suppose to add the //---PayPal WPP Modification END ---// stuff or just the code between it?) accept for one my modified template is totally difffernt with, and that is the header.php. I still added all of the code that I could to the header.php file. Although I am still getting no modification for the "they'll be taken to the login page where there are now three boxes. They can either use express pay, create an account, or login. If they use express pay" I do not see this, and every file was modified perfeclty accept the header.php. Now a really big question I have is: WITHOUT ALL OR ANY OF THE MODIFICATIONS WILL THE PAYPAL WPP STILL WORK?? If I just added the core files like the paypal_wpp.php and the english files, would paypal wpp still work? Okay so anyway this is what is happening after moding all the files, getting my user, pass, and certificate from paypal, I install everything, the template works great I get to the part with the enter your credit card info and then i have the button for express checkout (that kinda works by the way sometimes it goes directly to paypal and then sometimes it goes to the checkout_shipping.php page, its 50 50.) so I enter the test credit info in and it takes me to the confirmation page where the tax is added and you see the total of the order, and when i click the pay button to go to the next step it hesitates for about 2 seconds and then i go right back to the page where I enter the credit card info in, but now all the info i entered is blank, and thats it, no orders show up anywhere not in paypal, not in my admin page or anything. So I dont know what is going on it seems like everything is working and then this. Yes my server supports cURL. Well any help and knowledge is apreciated, I'll wait for while and if I dont figure it out I will unistall it all and start fresh again, maybe I am suppose to go in certain steps or something, I dont know. Oh yeah i get "NO ERRORS" whatsoever. Thanks for reading.
  8. Okay I have read everything that involves PayPal WPP and all I read are about errors people get after installing the contrib., but I don't get any errors BBUUTT after insatlled the contrib everything looks fine but when I do a test it takes me back to the checkout_payment.php instead of the checkout failed page or the checkout_success.php after the payment is confirmed. Yeah it lags for a couple seconds and then BAM!! back to the checkout_payment.php page where customers enter in credit card info.......WIERD..........is there any way I can tell if it is actually working? Oh yeah and orders don't popup in admin after the test order either so i am guessing it isn't working. Any advice is greatly apreciated, thank you.
  9. On the shipping page in the checkout process it says "Table Rate" and below that it says "Best Way" Can anyone tell me how I could modify these to say something else? I have looked everywhere, I would have thought it would have been in the table.php under modules/shipping but it isn't. I don't think Table Rate and Best Way sound too professional. Thank you.
  10. So let me get this straight when you have an apostrophe in your item description for oscommerce when you use Easy Populate with excel which I have been doing, you have to go through and find each apostrophe and cancel it out with a \? This cant be, there has to be a simple fix the brilliant people that designed such a program cant have overlooked this. Please tell me no, how could a wonderful program like this have a terrible flaw like this. I HAVE SEARCHED EVERYWHERE, and I could not find a simple fix there has got to be one. I get the 1064 error in syntax mesage everytime there is an apostrophe. Can someone please let me know how I could fix this. I really enjoy using the program and I would like to continue to use it but if I have to go through and find every ' and change it?
×
×
  • Create New...