Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

peterdlv

Pioneers
  • Posts

    22
  • Joined

  • Last visited

Profile Information

  • Real Name
    Peter Kozak

peterdlv's Achievements

  1. I have tried to update my htaccess with php_value upload_max_filesize 256MB should i do this under the admin or catalog directory ?
  2. I checked and I see this in my settings so it looks like i may have a problem with it not being MB. int_size = 8 upload_max_filesize = 256M post_max_size = 256M Is there a php ini somewhere or is this in another config file somewhere ?
  3. So I have been playing and tweaking my data file with no luck. Here is what I have done and I still cant get new items to load Created a export file (1 Item) Used a txt editor and copied the Item Updated the v_products_model to have the value Added value for v_categories_name_3_1 In my export it has v_categories_name_1_1 v_categories_name_2_1 The file then gets uploaded, but when i run import (Normal) it basically takes me to the easy populate screen and at the top has my file name information. If I export and just re-import it worked. I am not sure what else to check now specially since all I'm doing is replicating a item
  4. So I exported one category and changed the price on one item. I loaded it just fine. For the file that doesn't seem to do anything here is what I did. I exported the same category as the success. I changed the values in v_products_model(12 characters) and added a sub category(v_categories_name_3_1)
  5. Hello I have just installed easy populate and have been testing with no success. When I upload and import my data doesnt import at all. I thought maybe because I have html data in item details so i wrapped that data with single quotes. I am not sure what else to check now. I see this though when I import my test file File uploaded. Temporary filename: /tmp/phpo8pqol User filename: EP2014Aug31-1212-1_TEST.csv Size: 19265 My Config ( i changed it to 4 records for testing) EP vers: 2.8-231 osCommerce Online Merchant v2.3 OS: Array HTTP: DB: PHP: Array (Zend: ) Temp Directory: mydirectory/catalog/temp/ Temp Dir is Writable Magic Quotes is: off register_globals is: on Split files on: 4 records Model Num Size: 12 Price with tax: false Calc Precision: 2 Replace quotes: false Field seperator: comma Excel safe output: true Preserve tab/cr/lf: false Category depth: 7 Enable attributes: true SEF Froogle URLS: false Other Support: MVS Support: false Products Images: true Additional Images: false Additional Images: false More Pics: false UltraPics Pics: false HTC: false SPPC: false Extra Fields: false PDF Upload: false Master Products: false
  6. Hey Jack, I am running into a small problem. I created a discount under the control module and here is what I selected Condition1=Cart Total Condition 2=Greater than Condition 3=19.99 Coupon Amount=560 If I place 2 items in the cart it applied the discount 2 times. Is this me configuring the discount with too many Conditions ?
  7. Hey jack, I just wanted to say the last release seemed to pretty much fix everything and all Issues I was having. Works wonderfully in test right now
  8. I have been trying to modify how the display page looks at check out by adding a credit card image to the page. I have modified the file \includes\languages\english\modules\payment\authorizenet_cc_aim.php Found line define('MODULE_PAYMENT_AUTHORIZENET_CC_AIM_TEXT_PUBLIC_TITLE', 'Credit Card '); Changed it to define('MODULE_PAYMENT_AUTHORIZENET_CC_AIM_TEXT_PUBLIC_TITLE', 'Credit Card <img src="/images/credit_cards.gif" border="0"> '); and I cant get the image to dispaly at all. I have chnaged it several ways, include the full url path, modified it under define('MODULE_PAYMENT_AUTHORIZENET_CC_AIM_TEXT_DESCRIPTION I must be missing something or updating the wrong file Can someone direct me where to update this at please? Thank You
  9. You dont have to do anything with that file. At least I didnt have to
  10. I hope I am posting in the right area. and maybe I am doing something wrong here. But I have a test website and a prod website. But I went ahead and used the same database. On my test website I have been running some tests on modules and the prod website has been successful. I haven't made any code changes at all in prod but now all of a sudden I get errors on check outs. If anyone can shed some light on what happened all of a sudden Fatal error: Call to a member function count() on a non-object in //includes/modules/order_total/ot_easy_discount.php on line 27 function process() { global $order, $currencies, $ot_subtotal, $cart, $easy_discount; $od_amount = 0; if ($easy_discount->count() > 0) { $easy_discounts = $easy_discount->get_all(); $n = sizeof($easy_discounts); for ($i=0;$i < $n; $i++) { $this->output[] = array('title' => $easy_discounts[$i]['description'].': ', 'text' => '<font color="red">-' . $currencies->format($easy_discounts[$i]['amount']).'</font>', 'value' => $easy_discounts[$i]['amount']); $od_amount = $od_amount + $easy_discounts[$i]['amount']; } $this->deduction = $od_amount; $order->info['total'] = $order->info['total'] - $od_amount; if ($this->sort_order < $ot_subtotal->sort_order) $order->info['subtotal'] = $order->info['subtotal'] - $od_amount;
  11. I wonder if I am having a cache issue instead So today I went to my test site and I see the discount banner/text Then when I refreshed the site I don't see it.
  12. So I believe I am getting closer now and after re validating everything I did notice one thing. for some reason the portion for line 44 im not seeing in that file im suppose to modify Step 14 14) In specials.php, FIND (around line 15), require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SPECIALS); ADD ABOVE: /*** Begin Daily Specials ***/ $dsPresent = false; if (isset($_GET['dsID']) && (int)$_GET['dsID'] > 0) { $ds_query = tep_db_query("select popup_text from " . TABLE_DAILY_SPECIALS . " where unique_id = " . (int)$_GET['dsID'] . " and ( language_id = 99 or language_id = '" . (int)$languages_id . "') limit 1"); if (tep_db_num_rows($ds_query) > 0) { $ds = tep_db_fetch_array($ds_query); $dsPresent = true; } } /*** End Daily Specials ***/ FIND (around line 44), <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_specials.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> ADD BENEATH: <!-- Begin Daily Specials --> <?php if ($dsPresent) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo $ds['popup_text']; ?></td> </tr> <?php } ?> <!-- End Daily Specials -->
  13. I must be missing something then. When I read the readme.txt I see "It accomplishes this with the use of Boxtel's excellent Easy Discount contribution, which is included in this package." but in the admin I dont see where I can install it. Looks like I need to obtain this module too. Thanks Jack
  14. Hello, I installed this add on and it has worked like 2 times with my test site. at first I couldn't get it to work but once I enabled to include specials then it worked. I went into the daily special control and for my specials I selected them into test mode. Ever since then now my daily special I created doesn't ever appear now. Here is what I have configured in control Special test is populated with plain text no mark up language at all pop up test is populated with plain text condition1 is set to qty condition2 is set to greater than condition3 is set to 1 condition4 is set to 25% start date=2013-12-09 00:00:00 finish date=2013-12-27 00:00:00 use css is checked categories is set to "select to clear" Pages is set to "index" I dont think its anything with the install though cause like i said it worked 1 time
  15. So I have been spending days attempting to get this module up and running and for some reason the v9 wsdl kept failing on a unknown address. I have loaded version 14 now to get past the wsdl validation errros for the data returned back from fed ex. Now here is what I get Fatal error: Uncaught SoapFault exception: [sOAP-ENV:Server] Fault in /includes/modules/shipping/fedexwebservices.php:262 Stack trace: #0 /includes/modules/shipping/fedexwebservices.php(262): SoapClient->__call('getRates', Array) #1 /includes/modules/shipping/fedexwebservices.php(262): SoapClient->getRates(Array) #2 /includes/classes/shipping.php(81): fedexwebservices->quote('') #3 /checkout_shipping.php(146): shipping->quote() #4 {main} thrown in /includes/modules/shipping/fedexwebservices.php on line 262 Im not sure where to go now
×
×
  • Create New...