Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

girl

Pioneers
  • Posts

    126
  • Joined

  • Last visited

About girl

  • Birthday 04/01/1908

Profile Information

  • Real Name
    Jehanne
  • Gender
    Female
  • Interests
    painting
  • Website

girl's Achievements

  1. In the application_top make sure this code is added BEFORE/ABOVE the "// Shopping cart actions" (check instructions to make sure code is correct) If this code is NOT above the shopping cart action the products will be placed in the cart. // wishlist data if(!tep_session_is_registered('wishList')) { tep_session_register('wishList'); $wishList = new wishlist; } //Wishlist actions (must be before shopping cart actions) if(isset($HTTP_POST_VARS['wishlist_x'])) { if(isset($HTTP_POST_VARS['products_id'])) { if(isset($HTTP_POST_VARS['id'])) { $attributes_id = $HTTP_POST_VARS['id']; tep_session_register('attributes_id'); } $wishlist_id = $HTTP_POST_VARS['products_id']; tep_session_register('wishlist_id'); } tep_redirect(tep_href_link(FILENAME_WISHLIST)); }
  2. check the wish list zip by umar786 towards the end of her instructions. I found in many of the previous versions they forgot to tell you to add to certain admin files. Once I added the lines to those my wishlist worked fine http://addons.oscommerce.com/info/1682
  3. Is it possible to set the Max points a customer can use with an order in percentage, eg a customer can use the number of points which is 80% of the order value? Or is it possible that when the order value is $0 because of points that the person can go directly to confirmation success and not hit the payment loop? I have lots of downloads so doing a COD is not possible? Thanks if anyone can help.
  4. Thanks for the update. I hope this works. Gogglebot is causing havoc on my download site. every time I get visitors it seems to be tagging along and messing up their downloads.
  5. Hi googlejunky, thanks for the module and the time spent sorting it out. I managed to install so far with no problems (have not rechecked my store completely :) ). I just went back and read some of your previous post a page or 2 before, and I am wondering if I now need to unistall this module and try and install the Ultimate SEO (or what ever it is called). Can you please advise. Thanks Ahhh I spoke too soon. It has some how deactivated my additional image module. Could it do with some sort of code placement thing?
  6. Hi, Great contribution. and now the BUT. when I turn on caches I loose the categories. :'( Can some one help??? I really like this and would hate to have to lose this module . Thanks
  7. Hi, Thank you for taking the time to answer. I did get the newsletter to send the pictures/images. It is rather strange how it is working as I will explain below, but it is working and I am rather happy with this now. In one of your earlier post you mention the editor/filename/connector/php/config file (I hope I get the path right as I am doing this from memory) In that config file I had to leave everything as you have it set you in your package - the $Config['UserFilesPath'] = '/userfiles/' $Config['UserFilesAbsolutePath'] = '' ; When I added any code to the latter or altered any of these I would lose the image upload ability. -strange maybe this is just my set up. Before I added newsletter info I had fckeditor ability in my admin/newsletter manager - not sure what happened there. And when I tried to add the newsletter file code I kept getting errors. SO I removed it. It is possibly caused by having the mailing list module on (- don't know). So when I want to send a newsletter with a pic all I do is select my image and once it is selected and appears in the preveiw image pop up I add my website address to so the image address becomes http://mysitename.com/userfiles/image/picture.gif If I do not added my website and just instert the image it has the address userfiles/image/picture.gif - hence the box with the X. I hope this does not confuse anyone, but this is how it is working for me. ;) Thanks again for a wonderful module.
  8. hi, your contribution in general is working great for me. However when I turn on my caches I lose the pop up image. All the additional images are coming up, it is just when I click to enlarge I get the pop-up window with no image. when I have caches off, everything is working fine. Can you possibly help. thanks.
  9. I have the same problem. If some one can say which file alter it would help.
  10. Hi, Thank for a great contribution. It worked great for my product info, and my main page (very pleased with this :rolleyes: ). I have sort of added it to my newsletter and here is where I am having a problem. When I upload the image I wish to send it is uploading and showing in my preview. but when I send the newsletter I am getting a little x box where my image should be. If I change the font to something say papyrus - it is showing the choosen font - so the html is working. Can you please tell me what I need to do. thanks Also (I fear to ask more than one thing in a post :blush: ) How can I add this editor to the message that goes out to once a person creates an account?
  11. solved. No idea how. spent the night re-installing various newsletter modules. and now THAT error has gone.
  12. Hello, was wondering if someone can help, please. I have added fck editor and when I try to use the newsletter manager and send a newsletter I get the following error Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/myname/name_html/catalog/admin/includes/functions/database.php on line 99 and this is my line 99 return mysql_fetch_array($db_query, MYSQL_ASSOC); Thanks in advance.
  13. re point 2. Mine does the same thing. I thought it was a perk :lol: re errors in product info file. I kept getting that when I installed it. I had lots of contributions in my prod info file. what I had to do was to use the contribution prod info and then re-add the code of the previously installed contributions.
  14. This is what I did. and now that I am looking at the code I see I have inserted the code twice and but it seems to work. This is in the *admin*/includes/boxes/report.php my code (which is in need of correction is ) <?php /* $Id: reports.php,v 1.5 2003/07/09 01:18:53 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2002 osCommerce Released under the GNU General Public License */ ?> <!-- reports //--> <tr> <td> <?php $heading = array(); $contents = array(); $heading[] = array('text' => BOX_HEADING_REPORTS, 'link' => tep_href_link(FILENAME_STATS_PRODUCTS_VIEWED, 'selected_box=reports')); if ($selected_box == 'reports') { $contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_STATS_PRODUCTS_VIEWED, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_PRODUCTS_VIEWED . '</a><br>' . '<a href="' . tep_href_link(FILENAME_STATS_PRODUCTS_PURCHASED, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_PRODUCTS_PURCHASED . '</a><br>' . '<a href="' . tep_href_link(FILENAME_STATS_SALES_REPORT2, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_SALES_REPORT2 . '</a><br>' . '<a href="' . tep_href_link(FILENAME_STATS_CUSTOMERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_ORDERS_TOTAL . '</a>'); } '<a href="' . tep_href_link(FILENAME_STATS_SALES_REPORT2, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_REPORTS_SALES_REPORT2 . '</a><br>' . $box = new box; echo $box->menuBox($heading, $contents); ?> </td> </tr> <!-- reports_eof //--> either way the report2 option comes up once and it seems to work.
  15. Hi Dave, here is the link to the module in contribtuions http://addons.oscommerce.com/info/5655 If that does not work just go to contributions , payment modules, paypal and it be the PayPal Website Payments Standard and it was added on 11 Jan 2008 Contributions are found by going to OScommerece site http://www.oscommerce.com/ then menue bar - community - and in the drop down menue you see contributions just click there. Hope that helps. You should maybe also disable the old paypal via the admin/module/payment panel . I did that.
×
×
  • Create New...