Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

valquiria23

Members
  • Posts

    722
  • Joined

  • Last visited

  • Days Won

    7

valquiria23 last won the day on February 18 2020

valquiria23 had the most liked content!

4 Followers

About valquiria23

  • Birthday 01/30/1992

Profile Information

  • Real Name
    Valquiria Fernandez
  • Gender
    Female

Recent Profile Visitors

19,698 profile views

valquiria23's Achievements

  1. Hi @Jack_mcs , hope you are fine. I get this PHP Warning error in : PHP Warning: Use of undefined constant CHARSET - assumed 'CHARSET' (this will throw an Error in a future version of PHP) in /home3/xxx/public_html/catalog/includes/classes/seo.class.php on line 1827 in includes/classes/seo.class.php I chenged line 1827 From : if (CHARSET == 'utf-8') { to: if (defined('CHARSET') && (CHARSET == 'utf-8')) { Would you kindly confirm that the change I made is correct? Best regards Valqui
  2. thanks Jack. This change fixed the error, you are a genius !!! Have a nice day. Valqui
  3. Hi Jack @Jack_mcs, how are you? I dont have an entry in the Standard Boxes box, its empty. Use the fix you propose and it worked correctly. Is the following line of code the same with respect to the solution that you proposed? if ($box != (defined('TEXT_MAKE_BOX_SELECTION') && TEXT_MAKE_BOX_SELECTION )) { best regards Valqui
  4. Hi Jack @Jack_mcs, I dont have enabled any infobox in Box Control. I think the problem is in Deprecated features in PHP 7.2 + Unquoted strings: Unquoted strings that are non-existent global constants are taken to be strings of themselves. This behavior used to emit an E_NOTICE, but will now emit an E_WARNING. In the next major version of PHP, an Error exception will be thrown instead. any other idea? best regards Valqui
  5. Hi Jack @Jack_mcs, how are you? my error_log started to fill with the following warning: PHP Warning: Use of undefined constant TEXT_MAKE_BOX_SELECTION - assumed 'TEXT_MAKE_BOX_SELECTION' (this will throw an Error in a future version of PHP) in /home/mysite/public_html/catalog/includes/functions/sitemap.php on line 18 sitemap.php line 18 looks like this: if ($box != TEXT_MAKE_BOX_SELECTION) { Any clue how to fix it? Best regards. Valqui
  6. Hello Jack @Jack_mcs, Genius !! Now everything works correctly !! Thank you very much Jack and Happy Easter !! Best regards. Valqui
  7. Hello Jack @Jack_mcs, I have it uploaded correctly to: C:\ xampp \ htdocs \ frozen\ admin \ includes \ classes But nevertheless it keeps giving me the error. Any other idea? Best regards. Valqui
  8. Hello Jack @Jack_mcs, I hope you are very well and healthy. I am testing this addon on frozen and it gives me the following error: Fatal error: Class 'tableBlock_easy_populate' not found in C:\xampp7\htdocs\frozen\admin\easypopulate.php on line 248 Do you have any clues? Best regards Valqui
  9. Hi @henri_house Edit the file \includes\modules\header_tags\ht_jcm_whatsapp.php and delete line 41 Line 41 look like this : $oscTemplate->addBlock('<script defer src="https://use.fontawesome.com/releases/v5.2.0/js/all.js"></script>', $this->group); Best regards Valqui
  10. Hello, Valquiria23

    I made an upgrade to the latest CE Phoenix Ocommerce and everything went fine, but now when clicking on the items, I get this error on the screen. Do you have an idea how to fix that?

    I had CE Phoenix v1.0.7.9 and upgraded to CE Phoenix v1.0.7.10.  I sending a picture of the error.

    This is the error:

    "  1054 - Unknown column 'po.sort_order' in 'order clause'

    SELECT DISTINCT po.products_options_id, po.products_options_name FROM products_options po INNER JOIN products_attributes patrib ON patrib.options_id = po.products_options_id WHERE patrib.products_id = 45 AND po.language_id = 1 ORDER BY po.sort_order, po.products_options_name

    [TEP STOP]     "

     

    Thank You.

     

     

     

    error.png

    1. valquiria23

      valquiria23

      Hello SolidAmerica , Hope everything is well on your side and you are all safe and sound :)

      I have not tested version v1.0.7.10 yet, but I think that the best place to do this question is in the following topic:

      https://www.oscommerce.com/forums/topic/496261-v10710-questionscommentsconcerns/

      Community members could surely will help you.

      Cheers

      Valqui

       

       

    2. SolidAmerica

      SolidAmerica

      I bade a back up and forget to upgrade.

      Thank You. :smile:

  11. Would you  be  interested in installing recaptcha on my site? I'm a guitar builder and I can do some things, but some of this escapes my capabilities. I need it on the account create page and the contact page.

    1. valquiria23

      valquiria23

      Hello DivebombInc  ,

      I hope you are very well.
      I like to help users (if I can), but I don't do installation work for other users. For that, it is best to ask for help at Commercial Support. There are several talented developers on the forum.

      I recommend you to be a PRO user of Phoenix and contact Burt for his Google recaptcha modules.

      have a nice day.

      Valqui

  12. Valeria,

    How are you?

    Listen, i have this file " bm_jcmgoogleads.php " on the Adsense module installation folder.  The question is, do i have to insert that in there? 

    <?php
    /*
      $Id$

      osCommerce, Open Source E-Commerce Solutions
      http://www.oscommerce.com

      Copyright (c) 2010 osCommerce

      Released under the GNU General Public License
    */

      class bm_jcmgoogleads {
        var $code = 'bm_jcmgoogleads';
        var $group = 'boxes';
        var $title;
        var $description;
        var $sort_order;
        var $enabled = false;

        function __construct() {
          $this->title = MODULE_BOXES_JCMGOOGLEADS_TITLE;
          $this->description = MODULE_BOXES_JCMGOOGLEADS_DESCRIPTION;

          if ( defined('MODULE_BOXES_JCMGOOGLEADS_STATUS') ) {
            $this->sort_order = MODULE_BOXES_JCMGOOGLEADS_SORT_ORDER;
            $this->enabled = (MODULE_BOXES_JCMGOOGLEADS_STATUS == 'True');
            
            $this->group = ((MODULE_BOXES_JCMGOOGLEADS_CONTENT_PLACEMENT == 'Left Column') ? 'boxes_column_left' : 'boxes_column_right');
          }
        }

        function execute() {
          global $currencies, $oscTemplate;

          {
                     
            ob_start();
            include('includes/modules/boxes/templates/jcmgoogleads.php');
            $data = ob_get_clean();

            $oscTemplate->addBlock($data, $this->group);
          }
        }

        function isEnabled() {
          return $this->enabled;
        }

        function check() {
          return defined('MODULE_BOXES_JCMGOOGLEADS_STATUS');
        }

        function install() {
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable jcmgoogleads Module', 'MODULE_BOXES_JCMGOOGLEADS_STATUS', 'True', 'Do you want to add the module to your shop?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Content Placement', 'MODULE_BOXES_JCMGOOGLEADS_CONTENT_PLACEMENT', 'Left Column', 'Should the module be loaded in the left or right column?', '6', '1', 'tep_cfg_select_option(array(\'Left Column\', \'Right Column\'), ', now())");
          tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_BOXES_JCMGOOGLEADS_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())");
        }

        function remove() {
          tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
        }

        function keys() {
          return array('MODULE_BOXES_JCMGOOGLEADS_STATUS', 'MODULE_BOXES_JCMGOOGLEADS_CONTENT_PLACEMENT', 'MODULE_BOXES_JCMGOOGLEADS_SORT_ORDER');
        }
        }

     

    Thank You for helping me.

    1. Show previous comments  2 more
    2. SolidAmerica

      SolidAmerica

      THANK YOU do much.

      Gino Venegas Costa Rica.

    3. valquiria23

      valquiria23

      de nada y a las ordenes.

    4. SolidAmerica

      SolidAmerica

      Funciona de Marabilla, Fantastico!.

      Muchisimas Gracias.

  13. Hi Jack, @Jack_mcs ok, I managed to fix it. The FROZEN file: /admin/all_customers.php is missing a line of code: add : require ('includes / functions / all_customers.php'); between lines 41 and 42. Thank you very much Jack for this interesting addon. Have a nice day Valqui
  14. Hi Jack, @Jack_mcs I just tried this nice addon in Frozen and I get the following error: Fatal error: Call to undefined function tep_sort_order() in /home2/xxxxx/public_html/yyyyy/catalog/admin/all_customers.php on line 216 Any idea what it could be? Regards Valqui
×
×
  • Create New...