Jump to content

Foster

Members
  • Posts

    86
  • Joined

  • Last visited

    Never
  • Days Won

    19

Everything posted by Foster

  1. Hello, try to use firefox or another browser. It seems the problem come from chrome. https://stackoverflow.com/questions/68924463/a-page-or-script-is-accessing-at-least-one-of-navigator-useragent-navigator-app
  2. Hello, It's in ClicShopping/Sites/ClicShoppingAdmin/indexAdmin.php
  3. It's weird, Do you tried on your local computer, because I tested the lastest release and I have no problem. Do you use Cpanel ? If yes you can install via Cpanel ClicShopping, it's automatic. Note . All the script is called on CDN, If you have no connection with internet, you wil have a problem. I suppose it's to reduce the code by the developers, Also, you can try something, Find this function and put in comment these elements, One time I used another software with a lot code line on the same domain and I have been a problem /** * Calculate the size of a directory by iterating its contents * @Access public * @Return size if the directory */ Public Static function getDirSize(): string { /* $path = CLICSHOPPING::getConfig('dir_root', 'Shop'); $path = rtrim(str_replace('\\', '/', $path), '/'); $bytestotal = 0; $path = realpath($path); if ($path !== false && $path != '' && file_exists($path)) { foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \FilesystemIterator::SKIP_DOTS)) as $object) { $bytestotal += $object->getSize(); } } */ $bytestotal = ''; return $bytestotal; }
  4. Hello @Lunalphic, Could you look the log please, /ClicShopping/Work/Log/error.txt Maybe you will have a message ? About the installation, do you have specific problem ? Can you look /ClicShopping/Sites/Admin/conf.php and if you see the informations Can you see your catalog ?
  5. Hello @AlwaysSkint, I understand you point of view as service provider. But the php evolution has some bug fix and secure fix.You can say your server is secure after some years use the same php version. Maybe your code is secure, but not your php version. Also all the ClicShopping version updated fix some bugs identified in the time and at the moment all software need a break to follow the technology. Maintain some different solution for free is not relevant in my sense.
  6. Hello, Yes congratulation to the team for this new release. The dashboard has a new script, very light and not use jQuery, It's better like that in my sense. Now all the browser can manage some function. The importance of Jquery start to decrease. FontAwesome has been removed also. Now just to have a bootstrap beta 2, I ask me question. It will no better to have the official release ?
  7. Yes there is a difference, PHP 8 bring lot of functionalities and improvement. The impact yill be also on the software.
  8. Hello, I am looking something allowing to check the number of character inside a textarea without jquery. There are some solution, but I like the code below because he is very short. It's for some people want to do create a form as contact, feedback, reviews, comment ... It can be useful If the number of character is not reach, a pop up appear on the screen. <form action="mango.php" method="post" id="form12" onsubmit="var text = document.getElementById('checkField').value; if(text.length < 80) { alert('put more info!'); return false; } return true;"> <textarea rows="10" cols="80" maxlength="200" required id="checkField" > </textarea> </form>
      • 4
      • Like
      • Thanks
  9. Hello, Bootstrap do not use Jquery now, but you can. It let the developper to implement their script or use something as Vanilla.
  10. Hello, you can try this if ($data['customers_group_id'] > 0) { $sql_data_array = [ 'customers_group_id' => (int)$data['customers_group_id'], 'customers_group_name' => $data['customers_group_name'], 'group_tax' => $data['customers_group_tax_exempt'], 'group_order_taxe' => (int)$data['customers_group_show_tax'] ]; }
  11. Hello @Patrick, HTML::.... do not allow you to import whatever. ====> Are you sure ? It's not better to say : HTML::sanitize do not allow you wathever. For example delete the tag <script> . I suppose that you want to tell us.
  12. hello, If you want something simple and the supplier allow that, it's a good option (as google merchent), else you must use the API.
  13. Hello, I understand you will have a infrastructure problem. Your experience will help some other ! About maria Db 10.4, I am not installed and I am 10.3.x currently (recommended for installation). The test are been on ubuntu and debian, use mariadb 10.3.x by default if I remeber well. I make some mistake like that and I do not understand why a software can not work. If the infrastructure is too old not work, if you use something too new, also. About the index Undefined index: ... , it would be resolved on the next release. A big go work has been made on that to respect the strict mode of php. In this case it's better to include reduce that. Normally it's inside the code (includes/application_top.php) I think or change in php.ini If your experience can help to create a better documentation,it's good for everybody. .
  14. Hello, Is it not to soon. It's better to stay under php7.4.x and wait an update no ? If you look Github you will see there is some update for the next release, maybe ?
  15. The file config do not stay in 777, but 444. After every hoster has a specific configuration and for moment a software can be simple to use, another with some difficulties. For me, I tested ClicShopping under Ispconfig and Cpanel, ubuntu debian and there is no problem. As mentionned, there, https://www.clicshopping.org/forum/technical-information/ - ClicShopping - ClicShopping has been tested on these environment.
  16. Hello, while ($data = $QproductDescriptions->fetch_assoc()) { .... Yes it was the line. but be careful check if all the data imported is the same that the original database. You can eventually have problem between products and products description inside your database (integrity) for example. About the last message, what you do, I do not understand exactly. Thank you.
  17. Hello It's long time I do not use this app. It's important to let the prefix table to be in concordance with ClicShopping Table About the installation : yes you must to to that. Could you make that : $this->db->save('products_description', $sql_data_array); by var_dump($sql_data_array); //$this->db->save('products_description', $sql_data_array); } } exit; What is the result ; Do you have 1 or 2 language or more ? Thank you.
  18. Hello, Do you try @Rantanplan? Do you see an improvment ? Thank you.
  19. I am little late You can try also to Use the includes/Modules directory . If it works, you have not to modify anything.
  20. Hello, Yes, you can. You must create a hook in ibnside the reviews apps. Lootk this code : SItes/ClicShoppingAdmin ... Dashboard .... main.php <?php echo $CLICSHOPPING_Hooks->output('DashboardShortCut', 'DashboardShortCut', null, 'display'); ?> Now look inside product you will see in Hooks directory a files called DashboardShortCut Reply the process inside Module/ClicShoppingAdmin/DashboardShortCut or inside the aps reviews. I do not explain all because I think you must look to understand the application but you have all the process. good code Regards Forster
    Nice tool can help to win time. The latest release has a quick update bases on model, ean, stock and status. Can be installed via the administration on in manual.
  21. Yes you have, when you add a product in shopping cart, you can have a save product button, if you want a whishlist, just change the term by save your wishlist. The customer must create an account, like that when it come back, the products will be always in the basket.
  22. It' s important to respect the copyright, Julie, send you the link, I think it's enough for you to know what you can do or not. We are not administrator, but we can help you in function our knowledge
  23. Hello @Robert, Some provider propose let's encrypt as certificate. it's free. Other can propose also paid certificate. If you want to make a secure website for your customer the ssl certificate is necessary. Google look that on your website and also the browser. On local, it's not necessary.
  24. Hello griffou, Yes you can for every apps. Generally you have - Default configuration - Option module The default configuration allow to manage all the module as password / login / private key .... The Option allow you to make different configurations. look paypal, it's a good example as Antispam.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use