
Foster
Members-
Content Count
82 -
Joined
-
Last visited
Never -
Days Won
19
Content Type
Profiles
Forums
Blogs
Store
Downloads
Gallery
Everything posted by Foster
-
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.
-
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 ?
-
Yes there is a difference, PHP 8 bring lot of functionalities and improvement. The impact yill be also on the software.
-
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;">
-
Hello, Bootstrap do not use Jquery now, but you can. It let the developper to implement their script or use something as Vanilla.
-
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'] ]; }
-
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.
-
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 bee
-
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 ?
-
ClicShopping installation problem
Foster replied to AlwaysSkint's topic in Installation & Configuration & Operation
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. -
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.
-
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.
-
Hello, Do you try @Rantanplan? Do you see an improvment ? Thank you.
-
Add an shortcut icon menu inside the header
Foster replied to Rantanplan's topic in Installation & Configuration & Operation
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. -
-
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.
-
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.
-
The best is to test this option and see what's happen. But you can make a mix, remove the left and right boxe., Eventually the footer. You have : - No boxe and no header and no footer - No boxe and no header -No boxe and no footer I think it will be your simulation test.
-
Hi @Namiko You will find this option in design / Image management.
-
v 3.213 Pre-release How to mak upgrade for newbie
Foster replied to Catalina's topic in General discussions
@Catalina, You can upload and push the files inside your test website. If all is ok, you can push on your production. If you want to know the change, use a tool like beyond compare, you can compare the files and see the update. -
v 3.213 Pre-release How to mak upgrade for newbie
Foster replied to Catalina's topic in General discussions
Hello, It's not so difficult to make an upgrade. I look the update, there 2 sql update. in first, go to your phpmyadmin and update the Db. in second, just send the files in your server. Do not forget it's a pre release, some modification can be made the last minute For you it's good to make a test. That's all. My recommendation before that, do the update in your local server, If your have no problem, go in production. About the module, it will have no problem.