Example: http://www.linksjuice.com/index.php?go=addpage&catid=5
This mod is for the latest version of Site-sift 3.1, more information on downloading site-sift directory here
Note: I am not responsible for any problems that may occur on your script by using this script - you are responsible, i recommend backing up files before continuing.
So you want to make 5 deep links available for your directory customers? Here’s how to do it!
Firstly you will need to add abit of SQL to your database structure, this will store the deep link titles and url’s. Add the SQL below to your database in phpmyadmin or similar programs.
ALTER TABLE `pages` ADD `o_url1` TEXT NOT NULL ,
ADD `o_url2` TEXT NOT NULL ,
ADD `o_url3` TEXT NOT NULL ,
ADD `o_url4` TEXT NOT NULL ,
ADD `o_url5` TEXT NOT NULL ,
ADD `o_title1` TEXT NOT NULL ,
ADD `o_title2` TEXT NOT NULL ,
ADD `o_title3` TEXT NOT NULL ,
ADD `o_title4` TEXT NOT NULL ,
ADD `o_title5` TEXT NOT NULL ;
Now after once you have done that, you will need to edit some of the pages to enable to deep link mod.
Open ‘add_page.php’, find a suitable place where you would like to add the option for deep links and add;
[Optional] Below you can add 5 more URLs from the same domain. Other URL 1: Title 1: Other URL 2: Title 2: Other URL 3: Title 3: Other URL 4: Title 4: Other URL 5: Title 5:
Now presuming you haven’t already changed to SQL to insert links into the database, look for
if ((isset($_POST[”MM_insert”])) && ($_POST[”MM_insert”] == “form1″)) {
in add_page.php, now below that you will find the SQL, change the SQL to
Now you should be able to see the deep link boxes on your submit pages, and in the database. Now you just have to edit the details page to show deep links which were submitted, so open up details.php, find a suitable place to add the websites deep links and add




