Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Haitashi

Archived
  • Posts

    95
  • Joined

  • Last visited

Posts posted by Haitashi

  1. Hi there. Thanks for this contribution. I saw that this may have been asked before but the new way to look at replies on this forum SUCKS so I can't see if anyone replied to them.

     

    I installed it, everything went smoothly. I enabled it but when I go to my products I do not see the enhancements. I just see the normal text area for the product description. I apologize is this has been asked before. Any help will be greatly appreciated.

  2. Unfortunately, this is the only reliable method since you woulnd't want to over write vital sections of your code that has already been modified. There are utilitites that can greatly aid in this task such as Beyond Compare, and there's also another one. They are GREAT! You should get them and use them regularly...only way to modify OsC stores.

     

    Good luck!

     

     

    Thanks for the help. Beyond Compare is awesome. I didn't get to install the contribution because it modifies some lines of code that are already custom. I'll do it manually (even if it'll take a while :P)

     

    :thumbsup: A+ Contribution

  3. Hi guys. This contribution seems really cool and just what I need. Are there any install instructions for those of us who don't have a clean install of OSC? Going through each file trying to find the differences is too time consuming.

     

    THANKS! :blush:

  4. I get a similar error. As I understand it, there might be an error in how the "else" statements are used.

     

    My error says:

    Parse error: parse error, unexpected T_ELSE in /catalog/admin/categories.php on line 927

     

    This is what I have. Line

     $products_count = 0;
    if (isset($HTTP_GET_VARS['search'])) {
    		$products_query = tep_db_query("select p.products_id, pd.products_name, p.products_quantity, p.products_image, p.products_price,	p.products_price1, p.products_price2, p.products_price3, p.products_price4, p.products_price5, p.products_price6, p.products_price7, p.products_price8, p.products_price1_qty, p.products_price2_qty, p.products_price3_qty, p.products_price4_qty, p.products_price5_qty, p.products_price6_qty, p.products_price7_qty, p.products_price8_qty, p.products_qty_blocks, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p2c.categories_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and p.products_id = p2c.products_id and pd.products_name like '%" . tep_db_input($search) . "%' order by pd.products_name");

    THIS IS LINE 927

    } else {
      $products_query = tep_db_query("select p.products_id, pd.products_name, p.products_quantity, p.products_image, p.products_price, p.products_price1, p.products_price2, p.products_price3, p.products_price4, p.products_price5, p.products_price6, p.products_price7, p.products_price8, p.products_price1_qty, p.products_price2_qty, p.products_price3_qty, p.products_price4_qty, p.products_price5_qty, p.products_price6_qty, p.products_price7_qty, p.products_price8_qty, p.products_qty_blocks, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$current_category_id . "' order by pd.products_name");
    } else {
      $products_query = tep_db_query("select p.products_id, pd.products_name, p.products_quantity, p.products_image, p.products_price, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$current_category_id . "' order by pd.products_name");
    }
    while ($products = tep_db_fetch_array($products_query)) {
      $products_count++;
      $rows++;

  5. Rick,

     

    I'm not sure what you are referring to. My master password in Admin is:

     

    Admin - Configuration ... last listing labeled "Master Password" and the password I set is listed under the "value" column. I can click "edit" to change the password. But there is no "confirm" or anything like you are referring to.

     

    I"m having the same issue. I set the password in the Admin >> Configuration >> My Store but when I use the password I still get "Error: No match for E-Mail Address and/or Password.".

     

    Any ideas?

  6. Hey Everyone!

     

    I was thinking of changing the selected days for the Recover Cart Sales.

     

    I'll explain, I see "Show for last " and I can enter a numeric number.

     

    I want to change that to something a little more intuitive, like a calendar or anything that will let me select dates a little easier.

     

    FYI: I've only got Jr PHP skills. <_<

     

    Any help will be greatly appreciated and once done I'll be sure to share it with everyone.

     

    THANKS! ;)

  7. You guys need to revisit the link to the other thread in the few posts above. The fix really works and is very simple.

     

     

    That link DID NOT fix the problem <_<

     

    I'm still having to recover orders >_<

     

    Does anybody know a permanent fix for this? Verisign seems not to care. I mean, it's been going on for a LONG time.

  8. You have not defined "TABLE_SCART". From the install instructions:

    Step 6: ** FOR MS2 ONLY **
    
    Edit /catalog/admin/includes/database_tables.php and add:
    define('TABLE_SCART', 'scart');
    
    	define('TABLE_SCART', 'scart');

    If you have MS1, see step #5.

     

     

    AWESOME! Thanks! It works now :)

  9. You did not perform the steps from the instructions which create the SQL table, or that step did not complete for some reason (watch the output carefully).

     

    I have that table in my database. I deleted it to see if I got a different error.

    I realized that no matter if the table is present or I keep getting this same error.

     

    1146 - Table 'prmusic_osc1.TABLE_SCART' doesn't exist

     

    select * from TABLE_SCART where customers_id = '463'

     

    [TEP STOP]

  10. I am having the same problem. There are no errors. File is inserted in the DB and i see this message

     

    File uploaded.

    Temporary filename: C:\Program Files\xampp\tmp\phpBF.tmp

    User filename: EP_Split1.txt

    Size: 115010

     

    but there is nothing in the DB.

     

    Any idea what is going on?

     

    Thanks

     

    I'm having the same problem. I'm using v2.76, though.

     

    Does anyone have any ideas??

  11. Ok, I fixed my problem! I didn?t consider the fact that I had a template system installed. This meant that some files had to be edited in the CATALOG directory and some files had to be edited insides the template files themselves.

     

    Luckily I had backed up all my data! This is VERY important people, jeje. I restored my site and went over the steps again, slowly and not multitasking. I had all my focus is the editing taking all the time in the world.

     

    Once I finished uploading everything, it worked! The only other issue I has was that at the moment of checking out the user got that following error that prevented him from completing payment:

     

    ?The seller accepts encrypted website payments only. You cannot pay the seller through un-encrypted buttons. Please contact your seller for more details.?

     

    This had a simple solution:

    a ) Go to http://www.paypal.com

    b ) Log in

    c ) Go to Profile

    d ) Go to Website Payment Preferences

    e ) Go to Encrypted Website Payments

    f ) Check the radio button to off

    g ) Click Save

     

     

    LOTS OF LUCK PEOPLE, HOPE THIS HELPS! :thumbsup:

×
×
  • Create New...