Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Boldman

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Boldman

  1. V2.3.4 PHP 7.0 Static analysis: 3 errors were found during analysis. Ending quote " was expected. (near "" at position 690) Unexpected token. (near ""); insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Bad Words', 'MODULE_HEADER_TAGS_HONEYPOT_BAD_WORDS', '', 'Enter a comma separated list of words that are not allowed.', '1', '109', 'tep_cfg_textarea(', now());" at position 339) Unexpected beginning of statement. (near ""); insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Bad Words', 'MODULE_HEADER_TAGS_HONEYPOT_BAD_WORDS', '', 'Enter a comma separated list of words that are not allowed.', '1', '109', 'tep_cfg_textarea(', now());" at position 339) SQL query: insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Exclude IP\'s', 'MODULE_HEADER_TAGS_HONEYPOT_EXCLUDE_IPS', '', 'A comma-separated list of IP\'s that are not blocked by the create account checks.', '1', '108', now())"); insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Bad Words', 'MODULE_HEADER_TAGS_HONEYPOT_BAD_WORDS', '', 'Enter a comma separated list of words that are not allowed.', '1', '109', 'tep_cfg_textarea(', now()); MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '"); insert into configuration (configuration_title, configuration_key, configur' at line 1
  2. Jack, In 2 last lines in the SQL given gives my database an error: insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Exclude IP\'s', 'MODULE_HEADER_TAGS_HONEYPOT_EXCLUDE_IPS', '', 'A comma-separated list of IP\'s that are not blocked by the create account checks.', '1', '108', now())"); insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Bad Words', 'MODULE_HEADER_TAGS_HONEYPOT_BAD_WORDS', '', 'Enter a comma separated list of words that are not allowed.', '1', '109', 'tep_cfg_textarea(', now()); Syntax ?
  3. Raiwa, Recent I work with OSC 2.3.4 PayPal express and Paypal standard is installed and works fine. I want that buyers pay the paypal commision, I found in orders total the addon "the cost of payment methonds" When activate the existing standard paypal_ipn 3% fees is not working when make a test order. How to get it working ? Boldman
  4. Hello Jack, I don't think its a full package. Boldman
  5. I installed 2.3.3.4 3 years back and quiet some extra addons running like MTS and started this week to ad CCGV but get errors in checkout_confirmation.php by command : $order_total_modules->collect_posts(); quiet difficult to compare same named files, petty no manual is available to put instructions manual into the PHP files.
  6. I found in meanwhile the folder ( shop/mailhive/configbeez/config_editor/template_library) where the default logo's stored replaced the 2 Logo's with mine and it shows ok when I do a preview, but when I send a test email the stocklogo from mailbeez is still there.
  7. Where is the location from the stock logo ? I want to replace with my own logo, after few hours digging I give up.
  8. When I want to delete the index.php header tags it shows Deletion of index.php is not allowed
  9. When I change the content from index.php from the title box and update it updates in the title box but when I looking the source of the page itself it won't change, strange. I got notest when I was busy with rankingcoach, it was advice me to write some words in the title, when I did a change in header tags Seo index.php and update then I did a recheck and it did not found the words I have updated. permissions set correctly on the includes/header_tags.php file 755 this line is in the tiitle box of index.php : Fiets Damesfiets Herenfiets meisjesfiets jongensfiets Herselt Check the index on fashionbikes.be/shop/index.php
  10. My Title, Description I cannot change now, it must be changed as words I have choosen befor are wrong , why we cannot change ?
  11. I want to clear the Index.php in the page control
  12. Hi, I have installed Header Tags Seo V3.3.4 but I wanna delete the Title/Description etc but it don't delete it when I push the button, even new content it don't overwrite.
  13. I miss some meta's for local targeting and language like <meta name="language" content=" xx "> <meta name="Geography" content=" xxxx "> this will help me alot to get my local ranking higher. How ?
  14. I found it, in the left collum.php I removed /*** Begin Header Tags SEO ***/ include(DIR_WS_BOXES . 'header_tags_seo.php'); /*** End Header Tags SEO ***/
  15. In my admin I see the Header Tag Seo twice on the left side, must be somewhere a double code in a file. where to look ?
  16. I ran Osc 2.3.3.4 but the problem is solved. In de language.php file I made the following changes First row change to : if (!class_exists('language')) {class language { var $languages, $catalog_languages, $browser_languages, $language; Then at the end of the file change to: for ($i=0, $n=sizeof($this->browser_languages); $i<$n; $i++) { reset($this->languages); while (list($key, $value) = each($this->languages)) { if (preg_match('/^(' . $value . ')(;q=[0-9]\\.[0-9])?$/i', $this->browser_languages[$i]) && isset($this->catalog_languages[$key])) { $this->language = $this->catalog_languages[$key]; break 2; class_exists.close(); } } } } } } ?>
  17. So i found it, when have a redeclare language class error write the following line behind the last content in the include/classes/language.php editing the language.php file from: class language { var $languages, $catalog_languages, $browser_languages, $language; to if (!class_exists('language')) {class language { var $languages, $catalog_languages, $browser_languages, $language; Find: for ($i=0, $n=sizeof($this->browser_languages); $i<$n; $i++) { reset($this->languages); while (list($key, $value) = each($this->languages)) { if (preg_match('/^(' . $value . ')(;q=[0-9]\\.[0-9])?$/i', $this->browser_languages[$i]) && isset($this->catalog_languages[$key])) { $this->language = $this->catalog_languages[$key]; break 2; after write: class_exists.close(); } and the error was with me gone. The checkout success php works normal now.
  18. How to close the "if" at the end of the file ?
  19. Hello. I followed that link and the code mentioned I put in the language.php but it din't find a second call "require" so it must be something else. This error comes up when use desktop/laptop when I choose payment by banktransfer and push the checkout button, the site goto checkout success and then I get this Cannot redeclare error. Few years back the the mini template system is installed and no problems. The Mobile addon 7.5.9 is installed and works but some customers cannot checkout, it returns back on the product page. Header Tags SEO V3.3.4 is installed. I'm not sure if the Mobile addon have influance on the desktop version. Any idee
  20. solved, it was not a full package :rolleyes: I run Osc 2.3.3.4 I installed full package and get a fault on the front page: cannot declare class in shop/includes/classes/supertracker.php on line 13 In the admin I can choose supertracker and see the scroll down menu. anybody have a clue ?
  21. admin/supertracker.php was not found on this server. when I unzip the supertracker 3.5.2 contribution indeed in de admin folder no supertracker.php
  22. I have installed Osc 7.5.9 in my Osc 2.3.3.4 shop with MTS My Desktop version works ok. When I open my shop on mobile then it opens ok, when I go to store > catalog i see manufacturers and specials but not categories. Other thing I over write paypal_express.php which is in the Full 7.5.9 package and then I get the follwoing error: Warning: include() [function.include]: Unable to access /public/sites/www.myshop.com/includes/apps/paypal/OSCOM_PayPal.php in /public/sites/www.myshop.com/includes/modules/payment/paypal_express.php on line 14 Warning: include(/public/sites/www./public/sites/www.myshop.com/includes/apps/paypal/OSCOM_PayPal.php/includes/apps/paypal/OSCOM_PayPal.php) [function.include]: failed to open stream: No such file or directory in /public/sites/www.myshop.com/includes/modules/payment/paypal_express.php on line 14 /public/sites/www.myshop.com/includes/apps/paypal/OSCOM_PayPal.php is ofcourse not in my shop or I find in the 7.5.9 pack , its from the developer I suppose ? I'm not a coder but I can add OSC addons or make changes which is in the addon manual. Any Clue ? Jan
×
×
  • Create New...