1. First, open connect.php in modules folder and enter database info.
<?php
$dbhost = ‘
localhost‘; /* ENTER YOUR SERVER ADDRESS HERE ITS IS GENERALLY LOCALHOST. */
$dbuser = ‘user‘; /* ENTER YOUR DATABASE USERNAME HERE. */
$dbpass = ‘password‘; /* ENTER YOUR DATABASE PASSWORD HERE. */
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die (‘Error connecting to mysql’);
$dbname = ‘dle db‘; /* ENTER YOUR DATABASE NAME HERE. */
mysql_select_db($dbname);
?>
2. copy the engine folder of the zip pack you got into your root directory.
3. Then import the IMPORT.sql into your DLE database using PhpMyAdmin.
4. Then paste this code in your template’s main.tpl file using the DLE admin Panel where you want to display the Recent Searches section.
{include file=”engine/modules/searchcloud.php”}
5. Open /engine/engine.php and find.
include ENGINE_DIR . ‘/modules/deletenews.php’;
break;
and after that copy and paste the following code.
case “searchcloud” :
include ENGINE_DIR . ‘/modules/search2.php’;
break;
6. Copy the following code to your .htaccess file.
RewriteRule ^search/(.*).html?$ /index.php?do=searchcloud&subaction=search&story=$1&x=$4&y=$5 [L]
that`s all you must do.
good luck.
tested and working.