Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

CKENT00369

Archived
  • Posts

    37
  • Joined

  • Last visited

Everything posted by CKENT00369

  1. Anyone have any information on that stuff above. Another thing. Can I just alter my existing php with just the BOF/EOF sections or is there something else I have to edit. The ones in the download look way different. And even with looking at them with winmerge it is hard for me to tell. I am not sure if I am reading the instructions right, and I dont want to mess anything up. Its the checkout_process and Checkout_shipping that i am not sure what to edit besides the BOF/EOF area. It mentions something about adding an array but to which one I dont know. I am using OSC 2.2 RC2a. Any help will be appreciated.
  2. I am wondering the same thing. I would like to find out before I install. Any help is appreciated. Thank you
  3. hey I am trying to add this one and having some issues. What does your includes/boxes/livehelp.php along with your english file look like?
  4. Well I tried it. Its not working, I decided to take a shot at the code with the fancier invoice and its a no go. The box appears in the admin panel for Custom Computers but when I click on it, it redirects me to log in again and goes to the same place, no other options are available. next thing is my catalog is gone? Its blank I am going to revert I guess cause I cant tell where I went wrong. If someone can help out with this it will be appreciated. Once I get done I plan on putting out a complete OSC 2.2 RC2a with these contribs already installed. But I have to get it working first. If I knew where to start I would fix it but that is a whole butt load of files that were edited. So... the best option for me is to revert.
  5. OK Since I cant seem to get help from the other contrib I am trying to install maybe someone can help me here. I have installed the fancier invoice & packing slip v6.1. I am trying to install the custom computer creator v9.3.1 http://addons.oscommerce.com/info/407. Since the install of fancier invoice is so different. Can someone help me with what files to change where? Considering the changes that I made to fancier invoice noted above? I am limited on my php abilities but I can do some. I just dont want to mess up the fancier invoice thing. While I would like to have the custom computer thing going too. Like I said I can do some php but I think the changes involved in this are way over my head so any help will be appreciated.
  6. Ok want to install this contrib, because I have a few other contribs added I was looking through the files to see what is going to miss. I can see two problems so far. I have the fancier Invoice & packing slip v6.1 installed. Everything looks like it will work(may be wrong) until I get to-- OPEN catalog/includes/classes/order.php. Mine is different thanks to the other contib, not a bad thing but would like to figure out where to put what. the instructions say and my order.php looks like this starting at line 281 $index = 0; $products = $cart->get_products(); for ($i=0, $n=sizeof($products); $i<$n; $i++) { $this->products[$index] = array('qty' => $products[$i]['quantity'], 'name' => $products[$i]['name'], 'model' => $products[$i]['model'], 'tax' => tep_get_tax_rate($products[$i]['tax_class_id'], $tax_address['entry_country_id'], $tax_address['entry_zone_id']), 'tax_description' => tep_get_tax_description($products[$i]['tax_class_id'], $tax_address['entry_country_id'], $tax_address['entry_zone_id']), 'price' => $products[$i]['price'], 'final_price' => $products[$i]['price'] + $cart->attributes_price($products[$i]['id']), 'weight' => $products[$i]['weight'], 'id' => $products[$i]['id']); if ($products[$i]['attributes']) { $subindex = 0; reset($products[$i]['attributes']); while (list($option, $value) = each($products[$i]['attributes'])) { $attributes_query = tep_db_query("select popt.products_options_name, poval.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_OPTIONS_VALUES . " poval, " . TABLE_PRODUCTS_ATTRIBUTES . " pa where pa.products_id = '" . (int)$products[$i]['id'] . "' and pa.options_id = '" . (int)$option . "' and pa.options_id = popt.products_options_id and pa.options_values_id = '" . (int)$value . "' and pa.options_values_id = poval.products_options_values_id and popt.language_id = '" . (int)$languages_id . "' and poval.language_id = '" . (int)$languages_id . "'"); $attributes = tep_db_fetch_array($attributes_query); $this->products[$index]['attributes'][$subindex] = array('option' => $attributes['products_options_name'], 'value' => $attributes['products_options_values_name'], 'option_id' => $option, 'value_id' => $value, 'prefix' => $attributes['price_prefix'], 'price' => $attributes['options_values_price']); $subindex++; } } $shown_price = $currencies->calculate_price($this->products[$index]['final_price'], $this->products[$index]['tax'], $this->products[$index]['qty']); $this->info['subtotal'] += $shown_price; $products_tax = $this->products[$index]['tax']; $products_tax_description = $this->products[$index]['tax_description']; if (DISPLAY_PRICE_WITH_TAX == 'true') { $this->info['tax'] += $shown_price - ($shown_price / (($products_tax < 10) ? "1.0" . str_replace('.', '', $products_tax) : "1." . str_replace('.', '', $products_tax))); if (isset($this->info['tax_groups']["$products_tax_description"])) { $this->info['tax_groups']["$products_tax_description"] += $shown_price - ($shown_price / (($products_tax < 10) ? "1.0" . str_replace('.', '', $products_tax) : "1." . str_replace('.', '', $products_tax))); } else { $this->info['tax_groups']["$products_tax_description"] = $shown_price - ($shown_price / (($products_tax < 10) ? "1.0" . str_replace('.', '', $products_tax) : "1." . str_replace('.', '', $products_tax))); } } else { $this->info['tax'] += ($products_tax / 100) * $shown_price; if (isset($this->info['tax_groups']["$products_tax_description"])) { $this->info['tax_groups']["$products_tax_description"] += ($products_tax / 100) * $shown_price; } else { $this->info['tax_groups']["$products_tax_description"] = ($products_tax / 100) * $shown_price; } } $index++; } if (DISPLAY_PRICE_WITH_TAX == 'true') { $this->info['total'] = $this->info['subtotal'] + $this->info['shipping_cost']; } else { $this->info['total'] = $this->info['subtotal'] + $this->info['tax'] + $this->info['shipping_cost']; } } } ?> My next question, is there anything else I will need to adjust because of the other mod?
  7. OK I went through all the files, a lot of the stuff is in different places but at least it is there. The only one that I can see that is completely different is the Catalog/Account_History_Info.php. Mine doesn't contain anything that the instructions say that it should because I have the fancier invoice and packing slip. If someone could help me with this one file and figuring it out I will be greatly appreciative. (Another thing is I actually had to mod the fancier invoice to work on my site. I copied some files from the admin side to the catalog side because emails were not working etc. I think it was because of permissions but I would rather not allow permissions to the admin side. But if I can figure this one file out then the rest shouldnt be a problem for me. )
  8. Another question is are there product dependencies... for example you cant select and intel motherboard when an AMD processor is selected etc.
  9. Hey I would like to install this contrib on my site. The one thing is that I have installed the fancier invoice and packing slip v6.1. I know a lot of the files that this contrib needs to modify have already been modified by the fancier invoice like the first 4. So where it says to change something, it doesnt even exist. I tried a different version of some pc creator and talk about confusing.. I installed it like it said to a "T" but it didnt work. I like this one better anyway. if anyone has any info that would help with installing this on a site moded with the facier invoice it will be greatly appreciated.
  10. Ok I fixed this by copying the invoice.php language file from the admin/includes/languages/english folder over to the catalog/includes/languages/english folder, of course I changed the image path for the banner. then editing the filenames.php for order_invoice in the catalog/includes folder Add define('FILENAME_ORDERS_INVOICE', 'invoice.php'); and the order_email.php. I changed from this require(DIR_FS_ADMIN . DIR_WS_LANGUAGES . "/". $language . "/" . FILENAME_ORDERS_INVOICE); to this require(DIR_FS_CATALOG . DIR_WS_LANGUAGES . "/". $language . "/" . FILENAME_ORDERS_INVOICE); Only way I could get it to work. here are my next questions. I have Check/money order payment option, I would like to include the "make check payable to" field appear on the invoices that are shipped out if this payment is selected. Is there an easy way to do this? As you can see I am a newbie (sorry for all the posts) Then next thing is I am hoping to install Discount Coupon Codes v3.3 contrib, I will have to change files in this contrib as well wont I?
  11. The order emails are still like that though. Sorry to keep posting different posts but the forum wont let me edit?
  12. Scratch that post above Apparantly after editing three yes three of the admin files i just plain forgot to upload them to my server... DUUUUUUH. Sorry to bother you guys. I feel like an .....
  13. Thank you for the mod. I installed 6.1, I didnt see any difference with 6.2 but that could be where my issue is coming in. Everything works great except when I click on the invoice button from the admin panel, and the order confirmation emailm its got code instead of what its supposed to in certain places.? It works fine from the catalog side for reviewing an invoice. So I assume that it is in one of the admin/ invoice type files. here is what I am seeing, The blacked out areas appear ok. The one part that you cant see is the comments which looks odd too. As you can see there is something missing somewhere. Just dont know which file to look in. Any help will be appreciated
  14. I had discount coupon codes on my previous install of OSC MS2... I have just upgraded to RC2 Great contrib I love it. But Any word on when a complete download with all of the bug fixes and stuff will be available for the most recent version? I just dont want to have to go through to the contrib then go back through for the bug fix. Dont get me wrong I am not insulting or trying to offend I am just still teaching myself this stuff and the more steps I have the more likely I am to mess up. Any info will be appreciated. Thanks
  15. Thank you very much. With your comment I realized I was doing it wrong. I almost messed up pretty good. I should probably sleep before trying to edit this stuff. I added the files into the language area instead of the admin dir.. then tried to add the defines to the new files.. good thing I back up everything before I try one of these. Thanks again. Edit: BY the way. GREAT CONTRIBUTION. Better than having to go enter update into SQL everytime I want to clear the products viewed. Thanks for the contrib.
  16. Trying to add this contrib, thanks for making it. The version I am trying to install is v1.4. In the instructions it says My question is where in those files to I add the define(...) at??? Beginning, End, middle or does it matter where it is added? Any help will be much appreciated. Thank you
  17. ok Sorry to keep posting. But now I am having this exact same problem. Not sure exactly where to fix this one at.
  18. Ok everyone I got it I was missing some small parts like a ?> oops my bad
  19. Ok I figured out that part for the most part after searching this forum forever come to find out there was a . after the <br> ' on two areas. Now that that is all fixed and my admin is working and all... When I put something in the cart from the catalog then go to checkout my Checkout_payment.php is a blank white page. I am going to keep searching on this But if someone knows the fix please let me know Thank you all very much
  20. I'm a newbie to oscommerce and I have Got a problem with install of discount code 3.3 I copied everything over that it said to copy as far as the new files, I then went in and edited my existing php files exactly as it said to do. After it was all said and done when I go to my admin page the only thing that is there is my banner and the one button for config. All the other buttons for customers etc are gone. Then when I reverted all of the files back to the way they were before editing (besides deleting the new files) My admin buttons all came back. At that time I saw that the Discount coupon module was still there and was able to be installed but no coupons are showing up. Dont know what exactly to do from here. Would be nice to be able to get this to work. I'm sure I must be missing something but I dont know what. Any help will be greatly appreciated. Oh by the way this isnt the first contribute that I cant get to work. I tried the email invoice ones too... they never worked. Oh just another thing. To add to the second part there. There is no place to enter in the coupons even though the module is enabled.
×
×
  • Create New...