Topics
-
this capsule explains how to install the "apps tools export data" module in clicshopping. For more information you can go on the market place :https://www.clicshopping.org/forum/files/file/33-apps-tools-export-price-comparator/
-
-
- 0 replies
- 2.8k views
-
-
this capsule explains how to install the "apps customers guest customer" module in clicshopping. For more information you can go on the market place :https://www.clicshopping.org/forum/files/file/63-apps-guest-customer/
-
-
- 2 replies
- 3.4k views
-
-
this capsule explains how to install the "minimalistic header multi template module" module in clicshopping. For more information you can go on the market place :https://www.clicshopping.org/forum/files/file/168-modules-page-header-multi-template-minimalistic/
-
-
- 5 replies
- 9k views
-
-
This tutorial allows you to see how to install the Apps Shipping Post Canada inside ClicShopping
-
-
- 0 replies
- 6.7k views
-
-
this capsule explains how to install the Colissimo french Post Multi Pickup in ClicShopping. For more information you can go on the market place : https://www.clicshopping.org/forum/files/file/156-apps-shipping-colissimo-point-relais/
-
-
- 0 replies
- 3k views
-
-
this capsule explains how to set the "PayPal payment apps" module in ClicShopping.
-
-
- 3 replies
- 4.6k views
-
-
A little example allow you to configure your htaccess to increase the speed and security Options -Indexes Options +FollowSymlinks #### Your config to change ############### #AllowOverride All AcceptPathInfo on ################################## # Security ################################## <IfModule mod_headers.c> # prevent mime based attacks Header set X-Content-Type-Options "nosniff" # XSS Protection Header set X-XSS-Protection "1; mode=block" #content policy #Header set Content-Security-Policy "script-src 'self' https://www.mydomain.org" #X Frame Header always set X-FRAME-OPTIONS "DENY" </IfModule> #Header always append X-Frame-Option…
-
-
- 1 reply
- 3.8k views
-
-
If you hoster use MyISAM for their SGBD You can not install ClicShopping because it Use Innodb If you see a message like this when you try to install ClicShopping : SQLSTATE[42000]: Syntax error or access violation: 1286 Unknown storage engine 'innodb' You can try to resolve the problem with this process : 1 - Install manually the Database called : clicshopping_en_MyIsam.sql located inside install directory via your phpMyAdmin import Db (no data included inside) 3 - Continue the installation process without to install the Db.
-
- 0 replies
- 3.5k views
-
-
This video allows you to see how to include a new template inside ClicShopping more information : https://www.clicshopping.org/forum/files/file/169-template-design-alibaba/
-
-
- 1 reply
- 3.1k views
-
-
Hello, This tutorial allow you to create a cron to save your db in daily. if you want to change the delay, you can use this site to help you : https://crontab-generator.org/ Inside your server create a files : saveCronTabDb.sh with execute right (chmod 755) #!/bin/bash DB_USER='MyUserName' DB_PASS='MyPassword' DB_HOST='localhost' DB_NAME='MyTable' mysql -u${DB_USER} -p${DB_PASS} -h${DB_HOST} $DB_NAME < "/var/www/xxx/xxx/web8/web/myDbdirectory/myDbfilesToSave.sql" Now you can create your crontab with this command: In this case all the 21hr everyday * */21 * * * /var/www/xxx/xxx/web1/private/saveCronTabDb.sh…
-
-
- 0 replies
- 3.3k views
-
-
For moment, some badbots can very aggressive. There a solution to block this elements via your htaccess ################################## # Bot ################################## #Rules to block bad bods from accessing web pages on your site. #Remove or add more rules as per your needs. BrowserMatchNoCase "Baiduspider" bots BrowserMatchNoCase "SemrushBot" bots BrowserMatchNoCase "Yandex" bots BrowserMatchNoCase "BLEXBot" bots BrowserMatchNoCase "AhrefsBot" bots BrowserMatchNoCase "DotBot" bots BrowserMatchNoCase "Exabot" bots BrowserMatchNoCase "SeznamBot" bots BrowserMatchNoCase "aiHitBot" bots BrowserMatchNoCase "spbot" bots BrowserMatchNoCase "MJ12bot…
-
-
- 1 reply
- 4.9k views
-
-
Hello, The latest commit introduce the service worker and a manifest for web app. The advantage to use a web app is for the smartphone and improve the speed of the website. If you want more information about that, just follow these links : about the web app : https://developers.google.com/web/fundamentals/web-app-manifest service worker : https://developers.google.com/web/fundamentals/primers/service-workers About the manifest, you nothing to do but if you want change the logo, you must go in this directory /sources/images/logos/manifest just replace the logo by yours and you must respect also the size of the image. …
-
-
- 3 replies
- 11.7k views
-
-
Hello, Below the information, how to configure ClicShopping with the SMTP approach. For hotmail Hotmail SMTP Server: smtp-mail.outlook.com Hotmail SMTP Port: 587 Hotmail Security: STARTTLS Hotmail SMTP Username: Your complete Windows Live Hotmail email address (e.g. me@hotmail.com or me@live.com) Hotmail SMTP Password: Your Windows Live Hotmail password SMTP transport : TLS For gmail Server name SMTP : smtp.gmail.com Username SMTP : your Gmail email SMTP Password : you Gmail password SMTP Portl: 25 ou 465 SMTP transport : TLS More general Server name SMTP : smtp.mydomain.com Username SMTP : your…
-
-
- 0 replies
- 1.8k views
-
-
ClicShopping includes some elements to declare your sitemap on google console. There the main element than you must include in google sitemap. These elements are in relation with these files includes/ClicShopping/Apps/Marketing/SEO/Sites/Shop/Pages/GoogleSitemap/Actions /shop/index.php?Info&RSS /shop/index.php?Sitemap&GoogleSitemapBlogCategories /shop/index.php?Sitemap&GoogleSitemapBlogContent /shop/index.php?Sitemap&GoogleSitemapCategories /shop/index.php?Sitemap&GoogleSitemapFavorites /shop/index.php?Sitemap&GoogleSitemapFeaturedProducts /shop/index.php?Sitemap&GoogleSitemapIndex /shop/index.php?Sitemap&GoogleSitemapManufa…
-
-
- 4 replies
- 4.6k views
-
-
Hello, A little tutorial to help you to include some interesting element inside your .htaccess and increase the website security. I take also, the ClicShopping .htaccess inside this tutorial. Link can help you : https://htaccessbook.com/increase-security-x-security-headers/ ################################## # Security # Be carefull approach is different : Linux, Ngix, IIS # Below for linux ################################## <IfModule mod_headers.c> # prevent mime based attacks Header set X-Content-Type-Options "nosniff" # XSS Protection Header set X-XSS-Protection "1; mode=block" #X Frame Header always set X-FRAME-O…
-
-
- 0 replies
- 4.8k views
-
-
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" > …
-
-
- 0 replies
- 3.2k views
-
-
Mobile Friendly Good for checking if site is Mobile Friendly https://search.google.com/search-console/mobile-friendly?utm_source=mft&utm_medium=redirect&utm_campaign=mft-redirect Microdata Testing Tools Good for Schema. https://search.google.com/structured-data/testing-tool Facebook Link Good for Opengraph. https://developers.facebook.com/tools/debug/ Twitter Card Validator https://cards-dev.twitter.com/validator SSL https://www.ssllabs.com/ssltest/index.html"] https://www.ssllabs.com/ssltest/index.html Performs a deep analysis of the configuration of any SSL web server. Pag…
-
- 0 replies
- 2.1k views
-
-
If it can help you to understand google : look theses link A lot of good stuff https://www.thinkwithgoogle.com/
-
- 0 replies
- 2.3k views
-
-
A few people here asked that we have a thread on Adwords, so I'll start it. I've used Adwords since 2003 when you could do a nickel a click. Then, it became a dime and the race was off. Over time I've learned a lot and had a love/hate relationship. This year Adwords account managers have helped me in updating and learning new features. Currently, my ROI is the best it's been in at least a very long time, so I’ll try to share some ideas. For me, a big key is getting a repeat customer, but I also get some good sales from it. First, you need to tie in Analytics, which is now part of Adwords. Analytics can show you what sales you are getting through different ad…
-
- 1 reply
- 2.4k views
-
-
A tool that I did not know http://www.positeo.com/check-duplicate-content/ allows to check which other sites displays similar content for a page. What is acceptable ?
-
- 4 replies
- 3.5k views
-