Navigation

    QloApps Forums

    QloApps Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. HeartValley
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 8
    • Best 0
    • Groups 0

    HeartValley

    @HeartValley

    0
    Reputation
    23
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    HeartValley Follow

    Best posts made by HeartValley

    This user hasn't posted anything yet.

    Latest posts made by HeartValley

    • RE: CSS editing

      I've successfully edited the CSS, but attempting to add a whole library is going to cause trouble. Not recommended. As far as adding drag and drop capabilities, that's unlikely to happen unless you develop the theme yourself as it requires a fundamental rework.

      posted in General Discussion
      H
      HeartValley
    • RE: Add products/services to room

      Thank you @Faiz! I appreciate your quick response

      posted in General Discussion
      H
      HeartValley
    • Add products/services to room

      Would it be possible to add available items to room bookings? For example, offering a bottle of wine, extra towels, another bed, or other amenities for a fee.

      posted in General Discussion
      H
      HeartValley
    • RE: Navigating to Catalog or Manage Room Type lands on blank page.

      Removing the code block has allowed me to access the page, with errors. This has allowed me to advance to the point where I am able to add a room type, but I can not complete the room creation because adding anything to the configuration tab results in a modal displaying error:

      Unknown error on line 2151 in file /classes/Tools.php
      [8192] Function create_function() is deprecated
      

      the line in question in tools.php reads:

      return preg_replace_callback('/_+([a-z])/', create_function('$c', 'return strtoupper($c[1]);'), $str);
      
      posted in Bug Report
      H
      HeartValley
    • RE: Navigating to Catalog or Manage Room Type lands on blank page.

      @shreesh, thank you for your reply.
      I've just downloaded and installed it fresh, so I'm using the latest version, 1.4.1. This code block is where the error lies, with the specific error being the second line of this snippet.

              foreach ($attributes as $attribute) {
                  $combinations[$attribute['id_product_attribute']]['id_product_attribute'] = $attribute['id_product_attribute'];
                  if (!isset($combinations[$attribute['id_product_attribute']]['attributes'])) {
                      $combinations[$attribute['id_product_attribute']]['attributes'] = '';
                  }
                  $combinations[$attribute['id_product_attribute']]['attributes'] .= $attribute['attribute_name'].' - ';
      
                  $combinations[$attribute['id_product_attribute']]['price'] = Tools::displayPrice(
                      Tools::convertPrice(
                          Product::getPriceStatic((int)$obj->id, false, $attribute['id_product_attribute']),
                          $this->context->currency
                      ), $this->context->currency
                  );
              }
      posted in Bug Report
      H
      HeartValley
    • RE: Navigating to Catalog or Manage Room Type lands on blank page.

      Ahh, I forgot I was unable to figure out how to install mcrypt on my commercial webhost. Is there a guide to doing this? Specifically I'm hosted with namecheap.com

      posted in Bug Report
      H
      HeartValley
    • RE: Navigating to Catalog or Manage Room Type lands on blank page.

      Thank you. The error output is as follows:

      Warning: Use of undefined constant _RIJNDAEL_KEY_ - assumed '_RIJNDAEL_KEY_' (this will throw an Error in a future version of PHP) in /home/hearqyad/public_html/reservations/classes/Cookie.php on line 79
      
      Warning: Use of undefined constant _RIJNDAEL_IV_ - assumed '_RIJNDAEL_IV_' (this will throw an Error in a future version of PHP) in /home/hearqyad/public_html/reservations/classes/Cookie.php on line 79
      
      Warning: Use of undefined constant MCRYPT_RIJNDAEL_128 - assumed 'MCRYPT_RIJNDAEL_128' (this will throw an Error in a future version of PHP) in /home/hearqyad/public_html/reservations/classes/Rijndael.php on line 124
      
      Warning: openssl_decrypt(): IV passed is only 7 bytes long, cipher expects an IV of precisely 16 bytes, padding with \0 in /home/hearqyad/public_html/reservations/classes/Rijndael.php on line 91
      
      Parse error: syntax error, unexpected end of file in /home/hearqyad/public_html/reservations/controllers/admin/AdminProductsController.php on line 3735
      
      posted in Bug Report
      H
      HeartValley
    • Navigating to Catalog or Manage Room Type lands on blank page.

      I've just completed my first installation of Qlo and have added a hotel. Now I'm trying to add rooms to that hotel, but navigating to Catalog or Manage Room Type lands on blank page. The html reveals a pairs of HTML, head, and body tags, but nothing more. The network tab reveals that I'm getting a 500 from the web server on these pages. Unsure how to repair this, as this install is only a few minutes old. I am a web developer, so please feel free to talk nerdy to me.

      posted in Bug Report
      H
      HeartValley