How to Clone Classified Ads Module. It will be very easy to Clone this Module. There are just 6 steps and it is cloned with no errors. Tested in APACHE 1.3.37 PHP version 4.4.4 with MYSQL version 4.1.22 standard and APACHE 2.2.4 PHP version 5.2.1 with MYSQL version 5.0.37 Everything is based off what you name the module before installation. You can name it what ever you want. 1. Go to the file include/search.inc.php around line 20 find this line: function classifieds_search($queryarray, $andor, $limit, $offset, $userid){ change to this function your_dir name_search($queryarray, $andor, $limit, $offset, $userid){ replacing 'your_dir name' with the name you called the module Example: If you call the module classifieds2 then the line above would look like this: function classifieds2_search($queryarray, $andor, $limit, $offset, $userid){ 2. Go to the file include/notification.inc.php around line 36 find this line: function classifieds_notify_iteminfo($category, $item_id) change to this function your_dir name_notify_iteminfo($category, $item_id) replacing 'your_dir name' with the name you called the module 3. Go to the file include/comment_functions.php around line 5 change function classifieds_com_update($usid, $total_num){ to function your_dir name_com_update($usid, $total_num){ replacing 'your_dir name' with the name you called the module And around line 11 function classifieds_com_approve(&$comment){ to function your_dir name_com_approve(&$comment){ replacing 'your_dir name' with the name you called the module 4. Go to the folder templates Rename all temlpate file names: Example: classifieds_index.html to dir_name_index.html 'dir_name' is what you named the module Don't forget to rename the block template files too. 5. Go to the file sql/mysql.sql Open it with a text editor and do a Replace on all instances of: classifieds_ with dir_name_ 'dir_name' is what you named the module 6. Go to the file blocks/ads.php around line 21 change function classifieds_show($options) to function your_dir name_show($options) replacing 'your_dir name' with the name you called the module And below that around line 71 look for this line: function classifieds_edit($options) { to function your_dir name_edit($options) { replacing 'your_dir name' with the name you called the module That should be it. The only thing you might want to change is some of the language files.