Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Tsimi

♥Ambassador
  • Posts

    2,353
  • Joined

  • Last visited

  • Days Won

    85

Tsimi last won the day on January 29 2019

Tsimi had the most liked content!

Profile Information

  • Real Name
    Lambros
  • Gender
    Male
  • Location
    Japan

Recent Profile Visitors

49,122 profile views
  1. Hi Tsimi,

    Is there a version of Option Types that works with CE Phoenix v1.0.5.0?

    If not, could OTBS v1.4 be made to work with CE Phoenix v1.0.5.0 ?

    Thank you.

  2. @tttim6575 I highly doubt you'll get an answer here from the previous people. This is an old topic with the last answer dating back to 2012. There are however 2 config files. catalog/includes/config.php (front store side) catalog/admin/includes/config.php (admin side)
  3. @Shoppertroppen Download the zip package from my post here.
  4. @LeeFoster Sorry for chiming in late. Wasn't there an issue about product stock not being subtracted?
  5. @odracirjf No need to download and use the EDGE version. Frozen is just fine. Read the post about the php 7.2 error in the following thread. You can either use my solution or the one offered by raiwa. https://www.oscommerce.com/forums/topic/408478-horizontal-categories-menu-bs/?page=12
  6. No, it does not. You might wanna take a look at @raiwa 's website.
  7. Thanks @raiwa The error has been corrected I think. I had something mixed up with the data inside the database and the data shown in the shop. I emptied the database table and now the error is gone and I cannot recreate it either. 🤔 So the only code that needs fixing to be PHP 7.2 compatible is the code fix Omar posted above. Thanks again for looking into it.
  8. Thanks @Omar_one That took care of one of the errors. Now only one error is left Warning: Invalid argument supplied for foreach() in /home/xxx/www/shop/xxx/includes/classes/object_info.php on line 21 Must have something to do with this code here I guess (around line 455) if ((!isset($_GET['uID']) || (isset($_GET['uID']) && ($_GET['uID'] == $pending_points['unique_id']))) && !isset($uInfo)) { $uInfo = new objectInfo($uInfo_array); } I tried to copy code structures from other file which also have the objectInfo code in it but none of my tries worked thus far.
  9. @raiwa Have you looked at this add-on with PHP 7.2 recently? I get these errors and I know why it happens but I could not find a fix for it. customers_points_referral.php file PHP 5.6 and 7.1 Warning: Invalid argument supplied for foreach() in /home/xxx/www/shop/xxx/includes/classes/object_info.php on line 21 PHP 7.2 Warning: Invalid argument supplied for foreach() in /home/xxx/www/shop/xxx/includes/classes/object_info.php on line 21 Warning: sizeof(): Parameter must be an array or an object that implements Countable in /home/xxx/www/shop/xxx/customers_points_referral.php on line 451 All the other points related pages work just fine even with PHP 7.2
  10. @raiwa Man I am glad to hear/read that. What a great timing. Thanks
  11. @raiwa Do you have this app running on PHP 7.2?
  12. That did the trick. Thanks for the quick support. Change mine to this echo tep_draw_button(IMAGE_DELETE); echo tep_draw_button(IMAGE_CANCEL, NULL, tep_href_link('faq_manager.php', '', 'NONSSL')); Something else, isn't this following line echo tep_draw_form('faq_manager','faq_manager.php', 'faq_action=DelSure&faq_id='.$val[faq_id]); suppose to look like this? echo tep_draw_form('faq_manager','faq_manager.php', 'faq_action=DelSure&faq_id='.$faq_id); When I look at the form using "Inspect Element" on my Firefox browser the faq_id= within the form is empty but when I change the line from faq_id='.$val[faq_id] to faq_id='.$faq_id the id is passed on and shows fine. However no matter which one I use the FAQ gets deleted correctly so not sure if it is a major issue.
×
×
  • Create New...