Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rule

Pioneers
  • Posts

    65
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by rule

  1. Any progress? Is no one really using this gateway anymore? They are huge.
  2. 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.
  3. @Jack_mcs Unfortunately, this latest change does not improve the situation. We are still seeing about 15 new fake accounts each day. More importantly, using CSF to blacklist IP addresses also appears to be futile.
  4. 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?
  5. 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.
  6. Security support for 7.0 ends in 40 days. Could you possibly upgrade the add-on?
  7. New issue discovered: when using a module that is not located in root (e.g. /ext/modules/content/product_info/) and changing the shop language, SEO URLs rewrites the URL as if it were in root thereby leading to a 404. Could SEO URLs be forced to use the original tep_href_link in such cases?
  8. 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.
  9. 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.
  10. 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
  11. @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?
  12. @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?
  13. @piernas Thanks. Hopefully, someone has already made those changes to the product_info module and is kind enough to share them here. To all: based on experience, which of the 4 caching options is the fastest and most efficient at using server resources?
  14. @burt We would just like for this add-on to use the SEO titles instead of the stock ones. Stripping endings such as -p-4226.html and -c-32_285_297.html would be even better. Is this possible?
  15. Is it possible to make this add-on pull data from the Header Tags SEO Reloaded that is part of core CE?
  16. @Jack_mcs How could we modify the SEO URLs add-on to pull product names from Header Tags SEO Reloaded? @altoid Are you running any other PHP extensions?
  17. We've found that most coders stray away from payment modules, since they are quite complex. The fact that 90% of shopowners rely on PayPal doesn't help either.
  18. @altoid Just trying to figure out whether a missing PHP extension is the cause of our issue with the latest add-on version. We are running the following: cli, curl, gd, iconv, mbstring, mysqlnd, posix, xml. This should cover every possible need but who knows... As for Header Tags SEO, it has been part of core code for a while now. Why not use it?
  19. Extending the question to other payment modules. Does anyone use tokens and Apple/Android Pay at all?
  20. PHP 7.2.9 with clean error logs. Admin settings (filter short words, header tags SEO, special characters) keep on getting reset for some reason. @altoid What PHP extensions are you running?
  21. @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) {
  22. @Jack_mcs Checked the tables first thing when the lack of add-on settings in admin had been spotted. Nothing was added. URLs are being rewritten correctly. Could you please post the necessary SQL query to do this manually?
  23. @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.
  24. @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?
  25. 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...