Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Jaide

Archived
  • Posts

    159
  • Joined

  • Last visited

About Jaide

  • Birthday 12/28/1983

Profile Information

  • Real Name
    Jaide S.
  • Gender
    Female
  • Location
    USA
  • Interests
    web design, oscommerce, html, xhtml, black and white photography
  • Website

Jaide's Achievements

  1. Nice looking store. I love the color theme (and stationary... I'll be lurking your site)!

  2. Jaide

    Cute doggy! :)

  3. When customers order something, and I update the status to Delivered, no points are added to them. It worked before and now it doesn't. I don't know where to start to get this fixed. Thanks for a great contrib.
  4. I can't find the page that I edit the names and such, I am getting these on my pages: INVOICE_TEXT_INVOICE_NR 48 ORDER_DATE06/14/2007
  5. I have tried to edit my Categories > Category SEO URL and the changes are not reflected in the addresses. They show, for example, like this: http://www.ezdecal.com/bull-p-129.html when they should be like http://www.ezdecal.com/animals-bull-p-129.html
  6. It does work that way, thanks Chris. I still have trouble deleting a product but that must be my own fault for possibly not copying/pasting the changed codes correctly. I can always put the item out of stock and it doesn't show on the site.
  7. Customer Login http://www.oscommerce.com/community/contri...,Customer+Login The contrib. instructions say to replace the file catalog/login.php - but I have edited this file for my design. Can I get instructions on what was added/replaced/removed so I don't have to replace the whole thing? Thanks!
  8. Sorry! Symptoms - it shows as everything is working normal, I get success pages, but the changes are not reflected on the site, or when I go back to the products I edited in the admin panel URL (to my site?): http://www.ezdecal.com What did you do - I go to admin, click the AS button, uncheck the sets, click save, "Successful", I check the product on my site, still has all AS Do you get an error - no error, it loads as normal, says successful, I check on my site/admin, and still there.
  9. Hm, I can't delete products or attrib. sets from products
  10. Yes it was weird not to find anyone in this forum with a similar problem.. MySQL version: 5.0.27-standard The above code inserted successfully. :)
  11. Can't edit posts.. hm, anyway: I installed/changed files/etc/etc just need that one table to insert correctly... does the error have anything to do with other contributions installed?
  12. Update: The 2nd and 3rd tables inserted fine, only the first is having that issue :(
  13. ^ The above file is the exact file that comes in the zip, no changes :/
  14. Just tried pasting in the code, didn't work. Not too good with SQL file so I don't know what you mean by "sanity checked" Here's the code # The 'drop table' commands should only be uncommented if your are re-installing # attributes sets plus for any reason. For a first time install they are not required. # drop table products_attributes_sets; CREATE TABLE products_attributes_sets ( products_attributes_sets_id int(11) NOT NULL auto_increment, products_attributes_sets_name varchar(50) NOT NULL default '', products_options_id int (11) NOT NULL default '', PRIMARY KEY (products_attributes_sets_id) ) TYPE=MyISAM; # drop table products_attributes_sets_to_products; CREATE TABLE products_attributes_sets_to_products ( products_attributes_sets_to_products int(11) NOT NULL auto_increment, products_attributes_sets_id int(11) NOT NULL default '0', products_id int(11) NOT NULL default '0', PRIMARY KEY (products_attributes_sets_to_products) ) TYPE=MyISAM; # drop table products_attributes_sets_elements; CREATE TABLE products_attributes_sets_elements ( products_attributes_sets_elements_id int(11) NOT NULL auto_increment, products_attributes_sets_id int(11) NOT NULL, options_values_id int(11) NOT NULL, options_values_price decimal (15,4) NOT NULL default '0.00', price_prefix char(1) NOT NULL default '+', sort_order int(11) NOT NULL default '1', PRIMARY KEY (products_attributes_sets_elements_id) ) TYPE=MyISAM; # The next instruction is for removal of the sort column if you have the old attributsets contribution. # Uncomment the line below if you wish to use this. # ALTER TABLE products_attributes DROP COLUMN sort_order;
×
×
  • Create New...