Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rule

Pioneers
  • Posts

    65
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by rule

  1. Is it possible to extend the module by including a filter to catch domain names used by spammers for emails, i.e. similar to the bad words filter but for account creation rather than contact form? The same domain names seem to be used over and over again.

  2. Noticing quite a few of the following in our error log.

    PHP Fatal error:  Uncaught Error: Call to a member function store() on boolean in /home/xxx/public_html/includes/modules/ultimate_seo_urls5/main/usu5.php:78
    Stack trace:
    #0 [internal function]: Usu_Main->__destruct()
    #1 {main}
      thrown in /home/xxx/public_html/includes/modules/ultimate_seo_urls5/main/usu5.php on line 78

    Line 78 reads as follows.

    $this->getVar( 'cache' )->store( $this->getVar( 'registry' )->store() );

    Is this a PHP 7.2 related error yet again?

  3. You are only making things worse for yourself by misleading everyone here. Why didn't you mention that the purchased add-ons contained errors and how you said that PHP notices and warnings weren't important? Free support through 20 emails? This is ridiculous. Most of those state how your time costs 75 euros per request and that questions must be asked in the forum.

    As mentioned previously, anyone who wishes to know the truth is welcome to PM us. We will also happily point you to those osCommerce devs that really care about their customers and deserve all the money they humbly ask for.

  4. Removed the first line right after the installation as it threw a different error. Removing the second line doesn't change anything.

    Given that the cron job worked previously when we were on PHP 5.6 it is probably safe to say that the current issue is related to PHP 7.2.

  5. We do not recommend purchasing any add-ons from Rainer Schmied (raiwa) if you expect subsequent support. Our experience is that this developer views his customers as cash cows that are not worth his time unless money (65 euros seems to be the favorite amount) is paid for each request. For further details, please feel free to PM us.

  6. Latest CE on PHP 7.2 and the script does run via tools but additionally throws the following 2 errors.

    [09-Oct-2018 20:09:41 UTC] PHP Warning:  Use of undefined constant DATABASE_OPTIMIZER_OPTIMIZE - assumed 'DATABASE_OPTIMIZER_OPTIMIZE' (this will throw an Error in a future version of PHP) in /home/langbrid/public_html/izbushka/includes/modules/database_optimizer.php on line 25
    [09-Oct-2018 20:09:41 UTC] PHP Warning:  Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in /home/langbrid/public_html/izbushka/includes/modules/database_optimizer.php on line 42

     

  7. @Jack_mcs Seeing the following error when the cron job is run.

    [09-Oct-2018 05:00:01 UTC] PHP Warning:  mysqli_error() expects parameter 1 to be mysqli, null given in /home/xxx/public_html/izbushka/includes/functions/database.php on line 55
    
    line 55: $result = mysqli_query($$link, $query) or tep_db_error($query, mysqli_errno($$link), mysqli_error($$link));

    The following is printed in the confirmation email.

    Content-type: text/html; charset=UTF-8
    <font color="#000000"><strong> - <br /><br />SHOW TABLES LIKE 'supertracker'<br /><br /><small><font color="#ff0000">[TEP STOP]</font></small><br /><br /></strong></font>

    Could you please help fixing this?

  8. @clustersolutions Thank you for chiming in. This is probably in response to stripping the URL endings. I wish we could take your advice and implement it but lack of MySQL knowledge prevents us from even trying.

    On a separate note, does anyone run this add-on together with the KissIT Image Thumbnailer. Strangely enough, the thumbnail for the main product image stopped being fetched after we installed the SEO URLs. Could this be due to the rewrites or a conflict of functions?

  9. @Jack_mcs Has v16 install been tested on CE? Just tried installing v15. All database tables got added correctly and admin settings are visible. However, the Header Tags SEO and character conversions don't stay in place when selected. Looks like changes to the function that manages DB entries (below) are the cause of our issues with v16. We'd keep v15 but it doesn't work fully either.

                      foreach(array_keys($data) as $columns) {
                        $query .= '`' . $columns . '`, ';
                      }
                      $query = substr($query, 0, -2) . ') values (';
    							   
                        foreach($data as $value) {
                          switch ((string)$value) {
                              case 'now()':
                                    $query .= 'now(), ';
                                    break;
                              case 'null':
                                    $query .= 'null, ';
                                    break;
                              default:
                                    $query .= "'" . $this->Slashes($value) . "', ";
                                    break;
                            }
                      }
                      $query = substr($query, 0, -2) . ')';
                    } elseif ($action == 'update') {
                      $query = 'UPDATE `' . $table . '` SET ';
                      foreach($data as $columns => $value) {

     

  10. @Jack_mcs The server environment has not changed. We just added the PHP extension. The current issue is that the latest version has not installed correctly, i.e. there is no SEO URLs link under Configuration in admin. The settings were there when the previous version was installed. What could be the cause?

    The suggested change does fix the undefined constant error. Thank you for that! Need to figure out how to have the module settings back now.

  11. @Jack_mcs Thank you. Solved that part instantly. The following persists though.

    [11-Sep-2018 17:18:15 UTC] PHP Warning:  Use of undefined constant SEO_ENABLED - assumed 'SEO_ENABLED' (this will throw an Error in a future version of PHP) in /home/xxx/public_html/rl/includes/application_top.php on line 298

    This is basically because the module has not been installed correctly. There are no admin settings for it. Previous version did install without any issues. Any ideas what recent change could be causing this?

  12. Getting the following errors with the latest version (with the two fixes).

    [11-Sep-2018 12:05:52 UTC] PHP Warning:  Use of undefined constant SEO_ENABLED - assumed 'SEO_ENABLED' (this will throw an Error in a future version of PHP) in /home/xxx/public_html/rl/includes/application_top.php on line 298
    [11-Sep-2018 12:05:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function iconv() in /home/xxx/public_html/rl/includes/classes/seo.class.php:1835
    Stack trace:
    #0 /home/xxx/public_html/rl/includes/classes/seo.class.php(2036): SEO_URL->strip('Longest Product Na...')
    #1 /home/xxx/public_html/rl/includes/classes/seo.class.php(675): SEO_URL->generate_products_cache()
    #2 /home/xxx/public_html/rl/includes/application_top.php(301): SEO_URL->__construct('1')
    #3 /home/xxx/public_html/rl/index.php(13): require('/home/furwinter...')
    #4 {main}
      thrown in /home/xxx/public_html/rl/includes/classes/seo.class.php on line 1835

    Any idea how to fix this?

×
×
  • Create New...