Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rusky

Pioneers
  • Posts

    30
  • Joined

  • Last visited

Everything posted by rusky

  1. Why dont`you take this: "Cool Flash Carousel Menu v2.2" ?

  2. Hi, it`s for OSC 3.0 and not for OSC 2.2

  3. ...no, I think we`re in the admin (backend) and not frontend. 1. admin / includes / configure.php 2. admin / categories.php e.g. <td class="dataTableRow" colspan="2" valign="top"><?php if (tep_not_null($pInfo->products_image_sm_3)) { ?><span class="smallText"><?php echo $pInfo->products_image_sm_3 . '<br>' . tep_image(DIR_WS_CATALOG_IMAGES_3D . $pInfo->products_image_sm_3, $pInfo->products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'align="left" hspace="0" vspace="5"') . '<br>'. tep_draw_separator('pixel_trans.gif', '5', '15') . ' <input type="checkbox" name="unlink_image_sm_3" value="yes">' . TEXT_PRODUCTS_IMAGE_REMOVE_SHORT . '<br>' . tep_draw_separator('pixel_trans.gif', '5', '15') . ' <input type="checkbox" name="delete_image_sm_3" value="yes">' . TEXT_PRODUCTS_IMAGE_DELETE_SHORT . '<br>' . tep_draw_separator('pixel_trans.gif', '1', '42'); ?></span><?php } ?></td> 3. Maybe the PHP.INI
  4. ...hi, check the path for uploading the pics (folder / permission). To change it manual is a lot of work.
  5. ...ah sorry, it`s www.hqtv.de. The same way is possible without clicking pictures and only choosing the dropdown...
  6. ...hi, in the sourcecode look for: SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT . These sizes you can change in the admin ->configuration -> images. If you want to output the large image in the product_info, you have to change: document.write('<?php //echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>'); into document.write('<?php //echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '\\\')">' . tep_image(DIR_WS_IMAGES . $product_info['products_image_lrg'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; ?>'); or without java script: <?php echo tep_options_images(DIR_WS_IMAGES . $product_info['products_image_lrg'], addslashes($product_info['products_name']), $image_width, $image_height, 'hspace="5" vspace="5"'); ?> ...
  7. ... yes, it is in my last demo. I couldn`t find a contrib, so I made it myself inlcuding images to click on. But it only runs with javascript. You can see it on hqtv.com ...
  8. ...hi, if i understad you correctly you can use this: $products_query = tep_db_query("select pd.products_name, p.products_image, p.products_image_sm_3, p.products_image_lrg, p.products_image_xl_1, p.products_image_xl_2, p.products_image_xl_3, p.products_image_xl_4, p.products_image_xl_5, p.products_image_xl_6 from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and pd.language_id = '" . (int)$languages_id . "'"); DIR_WS_IMAGES . $products['products_name'] . '/' . $products['products_image_sm_3'] Now you have to put the images (e.g. ..sm_3) in the folder named like your product. If you want it automatically with upload in the admin you have to set the folder in the admin too...
  9. ...hi, you can implement flash wherever you want. Especially sunglasses, jewels etc. will be shown fine with flash...
  10. ...hi: missing java script: <script type="text/javascript"> function popupWindow(url) { window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,res izable=yes,copyhistory=no,width=350,height=500,screenX=150,screenY=150,top=150,le ft=150') } </script> You only have the function "wopen"...
  11. ...hi, just change the path in includes/configure.php...
  12. ...and it works with a little change: catalog/options_images.php if ($products_options_name['products_options_images_enabled'] == 'false'){ change to if (OPTIONS_AS_IMAGES_ENABLED == 'false'){
  13. Hello!!! First of all thanks a lot for this geat contrib. But there is one problem: I`ve installed the contrib "Great Categories" too. When I leave the Startpage to a category, the boxes have no more a border. When I go to e.g. service.php all the boxes are getting the boarder back. Only the categories are wrong. I`ve changed all the stylesheet.css in includes\classes\thema\1 (2,3,4..)\*.css too. Can anyone help? Thanks a lot from germany... Rgds. rusky
  14. Hello & thanks a lot for answering every question!!! My System: XAMPP for Windows Version 1.5.3 MySQL - 5.0.21-community-nt [php: 5.1.4] Because of the problem (login) I took a new version without any contribs and tried it: Same error. I`ve deleted the password with phpmyadmin: Same error Let me tell you, what I did exactly: 1. Installation oscommerce + Sql 2. Copy / overwrite the Contrib + Sql (When I start with the Contrib-Sql the 16,1 error (-> 99,1) disappears.) Adress of index.php: localhost/new_shop/index.php (without /catalog) Adress of admin_index.php: localhost/new_shop/admin/index.php (without /catalog) I installed many contribs, but this will let me going crazy. But one question to understand it correctly: Do i have to install shop1, shop2... before the first login? I don`t think so. Best regards rusky
  15. Hello, i`ve changed all to 99, 1, but it won`t let me in. Maybe Xampp forces the error: MQSQL 5.0.21 ??? I`ll get it tonight...I`ll get it tonight...I`ll get it tonight...I`ll get it tonight...
  16. Hello & thank you for answer, yes I have commented out the entries in the configure.php. But what do you mean with "did you populate...?" Sorry, my english ist not very well. Best regards rusky
  17. Hello hobbzilla!!! To test this contrib I have installed completely new. I had one error installing the update.sql: an changed it to: I don´t think, that this is the source for the error "no login". OOOHH NOOOO, PLEASE HELP ME, I WANT TO LOGIN. Thanks a lot rusky
  18. Hello World!!! Just the same problem. Can`t login to the admin. Does anyone have an idea? Thanks a lot. Best regards rusky
×
×
  • Create New...