Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

univer

Pioneers
  • Posts

    23
  • Joined

  • Last visited

Everything posted by univer

  1. I installed this add-on, but it doesn't work I don't see anything on the dashboard I did install it on the modules (dashboard) to be sure I installed it on a new clean shop, same result, no view on the dashboard what can be wrong? I use osc 2.3.1
  2. having problems with ogone (we didn't recieve the payment status back in our shop), ogone in belgium gave me another version that is much more expanded than the previous one that is available on the community: http://addons.oscommerce.com/info/5126 reading the installation doc it seems very attractive and complete, but the install doesn't work, I get http 500 server connection error I just uploeded this add-on who can get a look at it and confirm that this must be a working module? and also what could be my problem with the installation? attached the installation doc installation_en.html
  3. I received a module from ogone called oscommerce_ogone_v1.3_0208 that is much more expanded then the earlier one only problem uis that I cannot succeed to install it does anybody now this version and has experiance with it? I don't see it appear on the add-ons, and i don't know who made it if somebody tells me how to upload it, I will do this I attached the install documentation installation_en1.html
  4. ok, thank you do you have any idea in what time it could be done?
  5. Could you solve this problem already? I'm still blocked because of this and I'm waiting for the solution please thank you to inform me
  6. @ gergely Posted 25 September 2011, 09:34 univer, on 24 September 2011, 21:34, said: i forgot to mention that i'm stucked while merging the file catalog/product_info.php here are the two files, who can do this? I'm trying since days without any succes Hi, We need to do new module for it. As soon as possible I will do it in extras. The tab page navigation not fix yet. Did you solve this problem already? Thank you.
  7. @Gergely ok, I already did answer in the other topic i'll wait for your further info thanks (also for sending missing file)
  8. @Gergely do I wait for further reply or ...or what needs to be done? I tried to merge, but there was also QPBPP involved, it took me 3 full days !! I send you the 2 files that where very difficult to merge: catalog/admin/categories.php and catalog/product_info.php, could you check if they are ok? I was very carefully, but some parts were very uncertain could you check them? thanks categories.php product_info.php
  9. could somebody explain me in catalog/product_info.php I refer to the lines in PS on line 55 is desactivated a line, but it was not there before, so why is there that line? // echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); after line 88 is taken away line 55 from the original file <?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?> why? the bigest problem for other addons is on line 193 of the original file <div class="buttonSet"> <span class="buttonAction"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_draw_button(IMAGE_BUTTON_IN_CART, 'cart', null, 'primary'); ?></span> <?php echo tep_draw_button(IMAGE_BUTTON_REVIEWS . (($reviews['count'] > 0) ? ' (' . $reviews['count'] . ')' : ''), 'comment', tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params())); ?> </div> is changed into <div class="buttonSet"> <span class="buttonAction"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_draw_button(IMAGE_BUTTON_IN_CART, 'cart', null, 'primary'); ?></span> </div> <div style="clear: both;"></div> but it is also put higher, that means now before ?> <div style="clear: both;"></div> <?php if ($product_info['products_date_available'] > date('Y-m-d H:i:s')) { ?> <p style="text-align: center;"><?php echo sprintf(TEXT_DATE_AVAILABLE, tep_date_long($product_info['products_date_available'])); ?></p> <?php } ?> </div> <?php $reviews_query = tep_db_query("select count(*) as count from " . TABLE_REVIEWS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and reviews_status = 1"); $reviews = tep_db_fetch_array($reviews_query); ?> in the original file it was after this block is this change of place important and necessary?
  10. ok, I understand; is anybody alse capable do merge the catalog/product_info.phph from "Master Products" and "Products Specifications"?
  11. i forgot to mention that i'm stucked while merging the file catalog/product_info.php here are the two files, who can do this? I'm trying since days without any succes product_info.php product_info.php
  12. @jim, please find the 2 files if you could do it I would be very happy because I'm trying without succes since days product_info.php product_info.php
  13. @jim, could you help me to merge the 2 files catalog/product_info.php? i'm completely stuck
  14. is it possible to mix this addon of "Products Specifications" with the addon of "Master Products for V2.3x V2.1 " (http://addons.oscommerce.com/info/1681) I'm trying in several ways buth I always get stuck with this parts // Start Products Specifications if (SPECIFICATIONS_BOX_FRAME_STYLE == 'Tabs') { // Insert the javascript for the tabs and // Master Products $master_status_query = tep_db_query("select products_id, products_master_status, products_master from " . TABLE_PRODUCTS . " where products_status = '1' and products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'"); $master_check = tep_db_fetch_array($master_status_query); if ($master_check['products_master_status'] > 0) { echo tep_draw_form('buy_now_', tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=add_slave', 'NONSSL')); } else { // this line should be disactivated by PRODUCTS SPECIFICATIONS echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); } // Master Products EOF
  15. is it possible to mix this addon of "Master Products" with the addon of "Products Specifications"? (Products Specifications http://addons.oscomm.../info/8096/v,23) I'm trying in several ways buth I always get stuck with this parts // Start Products Specifications if (SPECIFICATIONS_BOX_FRAME_STYLE == 'Tabs') { // Insert the javascript for the tabs and // Master Products $master_status_query = tep_db_query("select products_id, products_master_status, products_master from " . TABLE_PRODUCTS . " where products_status = '1' and products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'"); $master_check = tep_db_fetch_array($master_status_query); if ($master_check['products_master_status'] > 0) { echo tep_draw_form('buy_now_', tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=add_slave', 'NONSSL')); } else { // this line should be disactivated by PRODUCTS SPECIFICATIONS echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); } // Master Products EOF
  16. i installed the version from 5 Jun 2011 (yansfung) is it the most recent version? in the install.html is stated that \catalog\includes\modules\product_listing.php should be changed, but this is not explained in the manual installation instructions comparing the files, there is a lot off difference, also in a lot of parts that are not indicated as changed (not flagged) in the file of qpbpp is stated that it is from version qpbpp1.3.3, while this should be 2.0 I think so do i have to treat it?
  17. i installed mp v2.1 but I think there is missing one file in the packet: catalog/includes/modules/boxes/bm_best_sellers.php
×
×
  • Create New...