Jump to content

Foster

Members
  • Posts

    86
  • Joined

  • Last visited

    Never
  • Days Won

    19

Foster last won the day on February 18 2021

Foster had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Foster's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Collaborator Rare

Recent Badges

70

Reputation

  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.
×
×
  • Create New...

Important Information

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