Thank you for purchasing this item. If you have have some problems, please contact me
Note. If you installed script not in web-root directory then you need to add RewriteBase /subdir/ into .htaccess file after RewriteEngine on
To get number of likes, shares you must create facebook developer account and facebook web app. Read here how to do it: https://developers.facebook.com/docs/apps/register Once you create www app, get app id and app secret from Facebook Developer Dashboard and put them into ~root/config/facebook.php
Go to Google Console. Create a project if you have not created it yet and generate Server Key Next, enable following APIs:
'google_server_key'=>'SERVER-API-KEY', // Google Server API key
~/root/config/app.php file:
To obtain it go to Google Console Cloud - APIs & Services - Credentials. Click on "Create Credentials" -> "API Key". Copy this key and paste into config file.
Next, go to APIs & Services - Library and search for "Maps Static API" and enable it.
~/root/config/antispam.php file:
~/root/config/browser.php file:
~/root/config/cache.php file:
Each module which is using 3-rd party API's must cache data to reduce duplicate requests.
'module_name' => 'time_in_seconds',
DO NOT CHANGE MODULE NAME
~/root/config/captcha.php file:
You can configure here which module should use captcha.
~/root/config/crypt.php file:
~/root/config/db.php file:
~/root/config/metagen.php file:
The options which are using Meta Tags Generation module.
~/root/config/og.php file:
Open graph meta tag
~/root/config/password.php file:
The list of option for Password Generation module.
~/root/config/routes.php file:
Here you can change module urls to your own.
'module_name' =>'your-custom-url',
DO NOT CHANGE MODULE NAME
~/root/config/seo.php file:
Here you can specify title, keywords, description for each module.
EUROPA websites must follow the Commission's guidelines on privacy and data protection and inform users that cookies are not being used to gather information unnecessarily.
All websites owned in the EU or targeted towards EU citizens, are now expected to comply with the law. If it is relevant for you and you are using 3rd party tools to analyze statistic, ads campaigns which are using cookies, then you need to inform user about it.
A simple floating widget is used which is enabled by default. All configuration settings are stored in ~root/config/cookieconsent.php file.
return array( 'cookieconsent_enable'=>true, // whether to show widget 'cookieconsent_learnmore'=>"Learn more", // Learn more link text 'cookieconsent_dismiss'=>"Got it!", // User confirmation text 'cookieconsent_message'=>"This website uses cookies to ensure you get the best experience on our website.", // Explanation 'cookieconsent_theme'=>"light-floating", // dark-top, dark-floating, dark-bottom, light-floating, light-top, light-bottom 'cookieconsent_link'=>"http://www.google.com/intl/en/policies/privacy/partners/", // Leave empty to hide link (Learn more) );