Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Snoboreders

Archived
  • Posts

    187
  • Joined

  • Last visited

About Snoboreders

  • Birthday 08/22/1985

Profile Information

Snoboreders's Achievements

  1. Whoops, nope....guess I got too eager. I am still receiving this error when I click the "Complete Your Order Confirmation" button. In my paypal account I went to Profile --> Website Payment Preferences and have this as the auto return destination: http://www.artifexshirts.com/thank_you.php However, when you click on "Complete Your Order Confirmation" that is not auto-return. How can I edit where that button leads to? I can't seem to find it. Thanks, Chris
  2. Everything is working fine now. I was running tests with my personal account into my business account which are linked. After trying some friends accounts, everything works perfectly.
  3. I have Paypal IPN 2.3.3, my osCommerce version is osCommerce 2.2 MS2 cURL support enabled: libcurl/7.10.6 OpenSSL/0.9.7a ipv6 zlib/1.2.3 Also, encrypted web payments are off. So this IPN has been working great so far (aside from the fact that I host through GoDaddy and anytime an order is dumped, it goes through as if it were completed). The only problem I am having is when a customer completes an order, they receive this error: Also, is there any way to improve the customer's email so that it includes a list of what they purchased? As of right now, their confirmation email is: The order description is nothing more than the name. Anyway I can spruce up the confirmation email? Thanks, Chris
  4. I was just about to install this contribution until I realized that you're right....there is a chance it could be abused. In my store, the last order number was 93. It doesn't take too much creativity to figure out what the rest of the numbers were. Now all that's needed are some email addresses. Is there a way to add something to this contrib to make the order number more complex? For example, I was looking at an order I placed with a company, and my order number was this: R4167123. Compare that to 93. I think if the order number was more randomized that would put people more at ease.
  5. First off, I'm aware of the Lightbox mod, and will be installing that soon. But for my Index page, I was hoping there would be a module similar to what threadless.com has. You scroll over the image and a larger more in-depth image of the t shirt appears. I cannot seem to find one for osCommerce. Should I just make do with the Lightbox (an awesome module, thank you!)?
  6. Horizontal. The CSS is straight out of the box. I have tried that as well as the file on your site. There was no difference in appearance between the two.
  7. Thanks for the quick reply Jack. Unfortunately that didn't clear things up. I know next to nothing about JavaScript...so I'm in the dark. It seems like everything is correctly installed and it should be working.
  8. I cannot figure out how to generate a RSS from this News Blog module. Any help?
  9. Hi Jack, I tried installing it, but it appears the javascript is not being recognized. I have uploaded the files, and here is the code in my header.php file where I have tried to insert the drop-down menu: <ul id="nav"><a href=<?=tep_href_link('team.php')?>><img src=images/m12.gif width=139 height=37 border=0> <ul> <li><a href="' . tep_href_link(FILENAME_DEFAULT, '', 'NONSSL') . '"><u> Home </u></a></li> <li><a href="' . tep_href_link(FILENAME_SHIPPING, '', 'NONSSL') . '"><u> Shipping </u></a></li> <li><a href="' . tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL') . '"><u> Contact Us </u></a></li> </ul></ul></a> It is working in that the links are below the image; however, it is always there, and does not drop down when I scroll over the image. It is running on my test page which can be found Here Thanks, Chris
  10. How would I insert my feed into this link of code..the code comes from this RSS Readerhttp://www.oscommerce.com/community/contributions,2787/: src="http://convert.rss-to-javascript.com/scroll/?desc=1&font=Times New Roman&src=http%3A%2F%2Fwww.jamaica-gleaner.com%2Ffeed%2Frss.xml&target=-blank&rss_title=rss&pause=1&type=1"> Because I'm using the News Blog V 1.4 wouldn't it be mysite.com/news/rss.xml? Thanks for the help, Chris
  11. For this module, what is the address I'd type into an RSS reader I installed in order for the reader to pick up everything I type in my News Blog?
  12. I just finished uploading everything, and it appears (I haven't run any tests yet) that everything is going smoothly except with my includes/classes/shopping_cart.php file. I can do the first couple modifications on the file and upload those without a problem. This code (from the CCGV file beginning at line 346 and going to 463) is posing the problem. Here is the code: //CCGV Edited begin if ($virtual_check['total'] > 0) { switch ($this->content_type) { case 'physical': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'virtual'; break; } } else { // CCGV Edited end // CCGV ADDED - BEGIN if ($this->show_weight() == 0) { $wvirtual_check_query = tep_db_query("select products_weight from " . TABLE_PRODUCTS . " where products_id = '" . $products_id . "'"); $wvirtual_check = tep_db_fetch_array($wvirtual_check_query); if ($wvirtual_check['products_weight'] == 0) { switch ($this->content_type) { case 'physical': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'virtual_weight'; break; } } else { switch ($this->content_type) { case 'virtual': $this->content_type = 'mixed'; return $this->content_type; return $this->content_type; break; default: $this->content_type = 'physical'; break; } } } } switch ($this->content_type) { case 'virtual': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'physical'; break; } } } } $this->content_type = 'physical'; } return $this->content_type; } function unserialize($broken) { for(reset($broken);$kv=each($broken);) { $key=$kv['key']; if (gettype($this->$key)!="user function") $this->$key=$kv['value']; } } } elseif ($this->show_weight() == 0) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { $virtual_check_query = tep_db_query("select products_weight from " . TABLE_PRODUCTS . " where products_id = '" . $products_id . "'"); $virtual_check = tep_db_fetch_array($virtual_check_query); if ($virtual_check['products_weight'] == 0) { switch ($this->content_type) { case 'physical': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'virtual_weight'; break; } } else { switch ($this->content_type) { case 'virtual': $this->content_type = 'mixed'; return $this->content_type; break; default: $this->content_type = 'physical'; break; } } } // CCGV ADDED - END The error I am receiving is this: Parse error: parse error, unexpected T_ELSEIF in /home/content/N/o/x/Noxwear/html/includes/classes/shopping_cart.php on line 434 I've gone through and can't find where the extra elseif is. If I take that out, then I have an extra } else { file somewhere. Any help? Would you prefer it if I put up my code that I had modified...even though the error continually rested in a portion I took verbatim from the CCGV file? Thanks
  13. Thanks Gaz- I guess that is what was confusing me, I always logged in as myself, and never saw the option to add the credit cards because (as you said) it defaults to the users account. Really appreciate the clarification Gaz.
×
×
  • Create New...