Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

stubbsy

♥Ambassador
  • Posts

    545
  • Joined

  • Last visited

Everything posted by stubbsy

  1. It turns out that it was a cookie problem, I'm not sure the exact cause, anyway sorted now All the best Dave
  2. It turns out it was a cookie issue, nothing to do with this, sorry :)
  3. Hi there, This is a weird one sorry. I installed admin access rights on my site yesterday and although I've since uninstalled it, it has caused a conflict with the manual order maker. When I first went to login the with the admin access contrbution my email address was already completed with my personal one [email protected]. I didn't really think anything about it and proceeded to login with the details provided in the install. I have since uninstalled that contribution for one reason or another overwriting all the files with me existing ones. Whilst working on the site today I have found that if I create a new customer or create an order for an existing customer their email address is already completed with my one, [email protected] even if the customer already has an email address in the system. I should add that when editing a customer through the standard osc page their correct email appears, the incorrect one only appears on the create account page or the create order page Anyone have any ideas what might be causing this? Thanks Dave
  4. Hi there, i have just installed this on my live site and once I uploaded all the new files I realised there was a lot more work to be done than i originally thought (I have a heavily modified site) The problem I have is a weird one. When I first went to login the email address was already completed with my personal one [email protected]. I didn't really think anything about it and proceeded to login with the details provided in the install. I have since uninstalled this contribution overwriting all the files with me existing ones. Whilst working on the site today I have found that if I create a new customer or create an order for an existing customer (using manual order maker) their email address is already completed with my one, [email protected] even if the customer already has an email address in the system. I realise that on the face of it it doesn't look like a problem for this contribution but it has started happening as a result of it after i installed it last night. Anyone have any ideas? Thanks Dave
  5. I have a small problem which hopefully someone will be able to help with... In the product_listing module I have been using $listing['products_name'] to add a title tag to the link e.g. $lc_text = ' <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing['products_id']) . '" title="' . $listing['products_name'] . ' some additional text">' . $listing['products_name'] . '</a> '; This causes a problem though when adding this code for this contribution as I have $listing['products_name'] used twice // added for New Product Icon contribution // 2592000 = 30 days in the unix timestamp format if ( ($today_time - strtotime($listing['products_date_added'])) < 2592000) { $listing['products_name'] .= ' ' . tep_image_button('icon_newarrival.gif', TEXT_ICON_NEW_PRODUCT. ' : ' . $listing['products_name'], 'align="middle"'); } // end addition I've tried a number of ways to get around it but can't get any of them to work Anyone have any clever ideas? Thanks Dave
  6. Hi Tom, doh... all it was that was causing the problem was a missing # infront of the background colour. All works now! Just to let you know, incase anyone else has the problem, that I had clash with an existing script in my header that displayed different image on each page load. It caused all fields to show and stopped the layer from appearing. I removed that script and it now works fine. Thanks for your help Dave
  7. Hi Tom, I have this working to a fashion at the moment. A couple of questions for you.. :) Adding this breaks my stylesheet <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> for some reason it doesn't like the 'body' style so my page is just white. How important is it for this to be in place? Secondly is it possible to change the location of the layer which appears when pressing confirm? At the moment it appears off screen at the top. Lastly, just a suggestion really, when a customer selects maestro for example, would it be possible to keep the entries in tradional order? e.g start date, expiry date, issue number and then cvv rather than cvv > expiry > start date > issue number? All the best Dave
  8. Ahh ok, so there's no reason why that option shouldn't still appear in my existing set up really, as it currently displays that option and then the card details below. Thanks Tom
  9. Tom, I've not managed to get this working yet with my modified site, but I haven't been able to spend too long on it yet, i hope to at the weekend. Can you confirm the checkout process for me in this update? Does checkout_payment exist anymore? Currently I have a combined checkout_shipping and checkout_Payment page and then it goes to checkout_confirmation. I need to revert back to basics so what comes now after checkout_shipping? Thanks Dave
  10. Hi Tom, looking forward to seeing this in action :) One issue though will be for those who have a combined shipping/payment page (as I have). It doesn't like me moving the payment module to checkout_confimation. I haven't had time to look into it yet but hopefully I will get time this evening and report back. Just a heads up :) Dave
  11. You'll have to separately process the card.
  12. Hi lildog, I just saw this contribution uploaded and thought it might be a starter for 10 for the above. I've just installed it on customers.php and it does enable you to select any address in the customers address book, i'll take a look this evening and see if it can be easilyy added into this http://addons.oscommerce.com/info/6323 All the best Dave
  13. 1054 - Unknown column 'products_options_sort_order' in 'order clause' select * from products_options where language_id='1' order by products_options_sort_order For anyone having problems with this 1054 error when trying to install the sort order contribution, there are 3 columns missing in tables which are not obvious to fix They are referenced in AttributeManagerconfig.class.php amDB::query("ALTER TABLE ".TABLE_PRODUCTS_OPTIONS." ADD COLUMN ".$this->getValue('AM_FIELD_OPTION_SORT_ORDER')." INT UNSIGNED NOT NULL DEFAULT '0'"); amDB::query("ALTER TABLE ".TABLE_PRODUCTS_ATTRIBUTES." ADD COLUMN ".$this->getValue('AM_FIELD_OPTION_VALUE_SORT_ORDER')." INT UNSIGNED NOT NULL DEFAULT '0'"); amDB::query("ALTER TABLE ".$this->getValue('AM_TABLE_ATTRIBUTES_TO_TEMPLATES')." ADD COLUMN ".$this->getValue('AM_FIELD_OPTION_SORT_ORDER')." INT UNSIGNED NOT NULL DEFAULT '0'"); so basically you need to run 3 queries in mysql which are as follows ALTER TABLE products_options ADD products_options_values_sort_order int(6) NOT NULL default '0' ALTER TABLE products_attributes ADD AM_FIELD_OPTION_VALUE_SORT_ORDER int(6) NOT NULL default '0' ALTER TABLE products_options ADD AM_FIELD_OPTION_SORT_ORDER int(6) NOT NULL default '0' Do that, install your attribute sort contribution and then enable attribute sorting by changing this line $this->add('AM_USE_SORT_ORDER' , false); in AttributeManagerconfig.class.php to $this->add('AM_USE_SORT_ORDER' , true); This should sort the errors and get your attribute maneger to show iwth sort fileds and no errors I hope that helps Dave
  14. Thanks Sam, lol, I guess its just me being lazy ;) Anyway, its certainly an improvement on the 'other version' and much easier to install! Keep up the good work! Dave
  15. Hi Sam, I don't think this is the support thread but I couldn't find another one. Just one quick question, I have installed this, it was easy to follow and works great thanks, but I wondered if it is possible to link the turning off of the products with the turning off of the categories, so that you only have to set the category inactive and the products are automatically set inactive? Actually that leads me to a second question, is it possible to set a category inactive and all sub-categories are set inactive? All the best Dave
  16. Thanks Sam, that sounds like it is exactly what I've been looking for for all these years! Much appreciated :) Dave
  17. Hi there Could someone just confirm for me, when you disable a category should products in that category be able to be found in the search results? Thanks Dave
  18. Hi lildog, great news I'm looking forward to it :)
  19. Hi lildog, I wondered if it is possible/or if this contribution can already, choose from a number of addresses for a customer? For example store a shipping address and a billing address when creating a customers account and then have the possibility to choose from either when creating the order? Thanks Dave
  20. I'll second that... nearly all my prices are 'special' so I wouldn't have any control over what goes in the carousell at the moment! Dave
  21. Option Type & Attribute Weight Contributions Hi there, i wondered if anyone had successfully integrated either of these contributions with the Ajax Attribute Manager? And if so would you be willing to share any tips code? Thanks Dave
  22. Hi Rob, this sounds like it'll come in very handy! Just off to download and have a play with it :) Thanks Dave
  23. Hi there, I've just installed the contribution and have just run a back up but at the end I get the following error Warning: unlink(/admin/backups/partial_db_dirtbikebitz-20080608195038.sql) [function.unlink]: No such file or directory in /admin/backup.php on line 480 Warning: Cannot modify header information - headers already sent by (output started at /admin/backup.php:480) in /admin/includes/functions/general.php on line 49 The file doesnt exist because I chose to create a backup with gzip and this is looking for just an .sql extension. The backup file with the gz extension was created Thanks Dave
  24. I think I've sussed it, these are existing customers and I have reorganised my zones recently so I think its because the zone_id's have changed.
×
×
  • Create New...