1. Go to this page and download the library: Download devfactory/mollom library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
alias => array(
'Mollom' => 'Devfactory\Mollom\Facades\Mollom',
),
return array(
/*
|--------------------------------------------------------------------------
| Mollom dev Mode
|--------------------------------------------------------------------------
|
| When the dev mode is enabled the package will use the dev.mollom.com api
|
*/
'dev' => false,
/*
|--------------------------------------------------------------------------
| Mollom Public Key
|--------------------------------------------------------------------------
|
| This key is used to comminicate with the mollom api
| https://mollom.com/user/xxxx/site-manager
|
*/
'mollom_public_key' => '',
/*
|--------------------------------------------------------------------------
| Mollom private Key
|--------------------------------------------------------------------------
|
| This key is used to comminicate with the mollom api
| https://mollom.com/user/xxxx/site-manager
|
*/
'mollom_private_key' => '',
/*
| List of ISO 639-1 language codes supported by Mollom.
|
| If your application has a predefined list of ISO 639-1 languages already,
| intersect your list with this via strtok($langcode, '-').
|
| example : en
*/
'mollom_languages_expected' => '',
);