Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Alexian

Pioneers
  • Posts

    212
  • Joined

  • Last visited

Profile Information

  • Real Name
    Alex

Alexian's Achievements

  1. is there been found a solution for this? i have now 1 image at a time. i have multiple attributes and i want to display all multiple pictures at once. So has someone worked this out yet?
  2. We are also interested in this. You can use it to sell as Accessoires.
  3. i came accross a problem. I'm a bit nooby :( so couldnt find the solution that easily. I have installed the contribution version 2.0. It works well but 1 problem. I have lots of products in the store and when i try to EDIT them i come accross a "array" error. To be exact; Warning: reset() [function.reset]: Passed variable is not an array or object in /home/(site)/domains/mydomain.com/public_html/admin/includes/classes/object_info.php on line 17 Warning: Variable passed to each() is not an array or object in /home/(site)/domains/mydomain.com/public_html/admin/includes/classes/object_info.php on line 18 I know i there are few line wich misses the code " array" in front of it. But i cant find wich ones. REMEMBER; This ONLY HAPPEN WHEN I TRY TO EDIT THE PRODUCTS
  4. I need to add something to the tables, but i cant figure out what i'm doing wrong. I need to have manufacturer_image at the frontpage in my featured box. Wich statements do i have to put WHERE ? i'm confused. Please someone help me out
  5. I maid it easier for myself. I have my iDEAL account else where and chronopay for the creditcards. I got them seperate...so my checkout is also more synoptic. (overzichtelijker)
  6. I want the orderd products to be displayed in account_history.php. At the moment its 3 ordes and you have 3 infoboxes. But some customers have more then 3 and to search wich order is wich is anoying. So i want to display the ordered products. I have tried to put the query of account_history_info.php into it and it worked, but for some reason it stopt working. How can i put the orded products into account_history.php
  7. I have an own dedicated server.. I can test what ever you need. send it clean install osc... already done for you
  8. I got the same problem. Same code Same thing. I got it on line 30: //// // Recursively handle magic_quotes_gpc turned off. // This is due to the possibility of have an array in // $HTTP_xxx_VARS // Ie, products attributes function do_magic_quotes_gpc(&$ar) { if (!is_array($ar)) return false; reset($ar); while (list($key, $value) = each($ar)) { if (is_array($ar[$key])) { do_magic_quotes_gpc($ar[$key]); } else { $ar[$key] = addslashes($value); } } reset($ar); }
  9. And where do i place a date? I never saw it before.
  10. I set in the admin,.. the status to "completed". In the mean time check this: I got 2 value options. I'm a real rookie in DB so, go easy on me :P :huh:
  11. Okey, i didnt do any of it. I now checkt the DB i use DB 4.2. Anyhow In de table "orders" the value was 5 and i changed it to 3. Is this right? And as second one...the cel "last_modified" . I dont get it. Where do i set the date? what do i have to change? and now in admin. i put it to 10 and 1 for the newsletter on. is this okey ?
  12. Okey step for step. We have a dedicated server with our own control panel. So i setup the cron job for every day, every hour, every minute. There is none mails going out. When i execute the php file i get this: The www.samplesite.com review reminder script finished execution on 19 Oct 2007 13:19:51 email messages were sent. So i guess thats okey. As next i registered a account with Newsletter. And in the admin the newsletter was 1 and the delay is 10. Oh,.. i also NOT used the orignal SQL tables. but the second updated: INSERT INTO `configuration` VALUES (NULL, 'Days delay for review email', 'REVIEW_REMINDER_DELAY', '10', 'Number of days to wait before sending a review reminder email', 1, 998, now(), now(), NULL, NULL); INSERT INTO `configuration` VALUES (NULL, 'Review email limit', 'REVIEW_REMINDER_NEWSLETTER', '1', 'Send review reminder email only to customers who accept newsletters (set to 1)', 1, 999, now(), now(), NULL, NULL); ALTER TABLE `orders` ADD `reminder_sent` TINYINT(1) NOT NULL default '0' AFTER `orders_status`; I don't know if there is any difference between them. As an customer i don't get any mails. Anyone any idea what i'm doing wrong ?
  13. I have also installed the contribution 1654. and with this code: <!-- DWD Contribution -> Add: Browse by Categories. !--> <tr> <td><br><?php include(DIR_WS_MODULES . FILENAME_BROWSE_CATEGORIES); ?></td> </tr> <!-- DWD Contribution End. !--> I can put it everywhere. I can make an extra page which loads this. And the popup will link to "THAT SPECIFIC" page. Like Amazon does.
  14. Okey i'm not an PHP guru. So i researched a few things...and we can also put it together with the right tools. At amazon.com they have a TAB who says: See all 42 Categories When you do a Mouse-Over it Popups an image it seems. But it is an website. (another Page) You can see it here: http://www.amazon.com/gp/site-directory/re...0850527-3700627 The popup opens that page...so i thought why couldn't we do it. They do it with a HyperText. I found a site who explanes the HyperText: http://www.htmlgoodies.com/primers/jsp/print.php/3478451 Here you can see a example: <A HREF="http://www.htmlgoodies.com" onMouseOver="alert('Click OK to make this go away');" >Click Here</A> Or click here: http://www.htmlgoodies.com/legacy/primers/...ssignment4.html Can someone Alter this code, so in stead of an Alert Popup it opens a little window with another page on your server.
  15. THANX FOR THE CONTRIBUTION. It works fine in my shop. Thanx a million times guys. But i got 1 request. I have a problem, because mine product_info page doesn't have any link to other categories. So i thought maybe i can put this into the product_info page. When i put the code like this it DOES work: When i put the code like this it DOES NOT work: What i want is to put the current sub-categories into the product_info page. Is there a little code for this?
×
×
  • Create New...