For the best
eSyndiCat directories!
Top Banners

Automotive eSyndiCat Directories

Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.

Center Banners
Articles

No articles created.

{/if},[file] => ,[plugin] => articles),[16] => Array ([type] => smarty,[code] => {if isset($num_total.pending)} {/if} {if isset($num_total.listing)} {/if} {if isset($num_total.category)} {/if},[file] => ,[plugin] => extrastats)),[GoogleSiteMapGeneratorHandler] => Array ([7] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; // Sitemap part for the article pages. if ($esynConfig->getConfig('article')) { global $feed, $GSM; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`,'active'", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ''.ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'; } else { $feed .= ''.ESYN_URL.'article/index.php?id='.$onearticle['id'].''; } $feed .= ''.$GSM['articlelinks']['changefreq'].''; $feed .= ''.$GSM['articlelinks']['priority'].''."\n"; } } },[file] => ,[plugin] => articles),[17] => Array ([type] => php,[code] => global $esynUtil, $feed, $GSM, $esynConfig; if($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,'active'", "`status` = 'active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr(array('string' => $onenew['title'])); $feed .= ''.ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'; } else { $feed .= ''.ESYN_URL.'controller.php?plugin=news&id='.$onenew['id'].''; } if (isset($GSM)) { $feed .= ''.$GSM['newslinks']['changefreq'].''; $feed .= ''.$GSM['newslinks']['priority'].''."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[YahooGeneratorHandler] => Array ([8] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; if ($esynConfig->getConfig('article')) { global $feed; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'article/index.php?id='.$onearticle['id']."\n"; } } } },[file] => ,[plugin] => articles),[18] => Array ([type] => php,[code] => global $esynConfig, $esynUtil, $feed; if($esynConfig->getConfig('news')) { $esynConfig->setTable('news'); $news = $esynConfig->all("`id`,`title`", "`status`='active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr($onenew['title']); $feed .= ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'controller.php?plugin=news&id='.$onenew['id']."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[beforeBlocksLoad] => Array ([9] => Array ([type] => php,[code] => global $category, $esynConfig, $eSyndiCat, $esynSmarty; if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $articles = $eSyndiCat->all("*", "`status`='active' AND `category_id` = '".$category['id']."' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); $esynSmarty->assign('articles', $articles); $eSyndiCat->setTable("blocks"); $status = (count($articles) > 0) ? 'active' : 'inactive'; $eSyndiCat->update(array('status' => $status), "`plugin` = 'article' AND `title` = 'Latest Articles'"); $eSyndiCat->resetTable(); },[file] => ,[plugin] => articles),[44] => Array ([type] => php,[code] => global $eSyndiCat, $esynSmarty, $esynConfig, $category, $esynAccountInfo; $eSyndiCat->loadPluginClass('Banner', 'banners', 'esyn'); $esynBanner = &new esynBanner(); $paid_positions = $esynBanner->get_blocks(); $temp = false; $bids = array(); $eSyndiCat->setTable('blocks'); $positions = $eSyndiCat->keyvalue('`id`,`position`', "`plugin` = 'banners'"); $eSyndiCat->resetTable(); foreach($positions as $bpos) { $temp = $esynBanner->getBanner($bpos, $category['id'], $esynConfig->getConfig("num_{$bpos}_banners")); if(!empty($temp)) { if(!file_exists(ESYN_PLUGINS."banners".ESYN_DS."templates".ESYN_DS."banner.tpl")) { $bannerError = "This file can not be found in template directory: banner.tpl"; $esynSmarty->assign_by_ref('bannerError', $bannerError); } else { $esynSmarty->assign($bpos.'_banner', $temp); } foreach($temp as $banner) { $bids[] = $banner['id']; } } $add_ads = $paid_positions && esynUtil::ArraySearchRecursive($bpos, $paid_positions) ? $bpos : false; $add_ads = !$esynConfig->getConfig('banner_guests_submit') && !$esynAccountInfo ? false : $add_ads; $esynSmarty->assign('add_ads_'.$bpos, $add_ads); } if(!empty($bids)) { // Just mini optimize :) to avoid IN() if(count($bids) > 1) { $wh = "`id` IN('".implode("','",$bids)."')"; } else { $wh = "`id`='".$bids[0]."'"; } // first parameters expects actual values // while third expects RDBMS functions, variables etc. like NOW(), UNIX_TIMESTAMP() // e.g first params will generate "showed='showed+1'" while third ("showed=showed+1") $esynBanner->query("UPDATE `$esynBanner->mTable` SET `showed` = `showed`+'1' WHERE $wh"); } unset($temp);,[file] => ,[plugin] => banners),[46] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'generate.php');,[file] => ,[plugin] => tagcloud)),[viewListingBeforeFooter] => Array ([10] => Array ([type] => smarty,[code] => {include_file js="plugins/claimlisting/js/frontend/index"},[file] => ,[plugin] => claimlisting),[23] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_PLUGINS|cat:"reviews/templates/reviews.tpl"},[file] => ,[plugin] => reviews),[39] => Array ([type] => smarty,[code] => {if isset($listing.display_url) && $listing.display_url neq 'http://'} {/if},[file] => ,[plugin] => displayurl)),[listingDisplayLinksArea] => Array ([11] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {/if},[file] => ,[plugin] => claimlisting),[52] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[viewListingAfterMainFieldsDisplay] => Array ([12] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {/if},[file] => ,[plugin] => claimlisting),[51] => Array ([type] => smarty,[code] => ,[file] => ,[plugin] => tagcloud)),[beforeCloseTag] => Array ([13] => Array ([type] => smarty,[code] => {include_file js="plugins/contacts/js/frontend/contacts"},[file] => ,[plugin] => contacts),[33] => Array ([type] => smarty,[code] => {$config.google_analytics},[file] => ,[plugin] => googletools),[35] => Array ([type] => smarty,[code] => {if isset($listings)} {foreach from=$listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($featured_listings)} {foreach from=$featured_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($partner_listings)} {foreach from=$partner_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {include_file js="plugins/displayurl/js/frontend/display_url"},[file] => ,[plugin] => displayurl),[57] => Array ([type] => smarty,[code] => ,[file] => ,[plugin] => googlesearch)),[tplFrontviewAccountsBeforeFooter] => Array ([14] => Array ([type] => smarty,[code] => {if isset($account)} {/if},[file] => ,[plugin] => contacts)),[viewListing] => Array ([24] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $listing; $limit = $esynConfig->getConfig('reviews_per_page'); $sql = "SELECT r.`title`, r.`body`, r.`status`, r.`date`, if(r.account_id > 0, a.username , r.author) as author "; $sql .= "FROM `{$eSyndiCat->mPrefix}reviews` r "; $sql .= "LEFT JOIN `{$eSyndiCat->mPrefix}accounts` a ON r.`listing_id` = a.`id` "; $sql .= "WHERE r.listing_id = '".$listing['id']."' AND r.`status` = 'active' ORDER BY r.date DESC" .($limit?" LIMIT $limit" : ''); $reviews = $eSyndiCat->getAll($sql); $esynSmarty->assign('reviews', $reviews); $eSyndiCat->setTable("reviews_rate"); $reviews = $eSyndiCat->all("*", "`listing_id` = :id", array('id' => $listing['id'])); $eSyndiCat->resetTable(); $stars = array(); for($i=1;$i<=5;$i++) { $stars[] = array('id'=>$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i),'class'=>($i==1?'class="rate"':'')); } $esynSmarty->assign('stars', $stars); $esynSmarty->assign('rate_count', $reviews[0]['rate_count']); $esynSmarty->assign('rate', number_format($reviews[0]['rate'],3)); $esynSmarty->assign('rate_perc', number_format($reviews[0]['rate'],3)*100/5); $esynSmarty->assign('url', ESYN_URL.'controller.php?plugin=reviews&listing_id='.$listing['id']);,[file] => ,[plugin] => reviews),[40] => Array ([type] => php,[code] => global $listing; if (($listing['display_url'] != "http://") && ($listing['display_url'] != "")) { $listing['real_url'] = $listing['url']; $listing['url'] = $listing['display_url']; },[file] => ,[plugin] => displayurl)),[theVeryStart] => Array ([25] => Array ([type] => php,[code] => global $eSyndiCat; $id_session = session_id(); $date_time = date("Y-m-d H:i:s"); $eSyndiCat->setTable("whoisonline"); $num = $eSyndiCat->one("COUNT(*) num", "`id_session` = '{$id_session}'"); if($num > 0) { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->update(array("date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active'), "`id_session` = '{$id_session}'"); } else { $eSyndiCat->update(array("date" => $date_time, "status" => 'active'), "`id_session` = '{$id_session}'"); } } else { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active')); } else { $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "status" => 'active')); } } $eSyndiCat->update(array("status" => 'expired'), "`date` < NOW() - INTERVAL 20 MINUTE"); $eSyndiCat->delete("`date` < NOW() - INTERVAL 2 DAY"); $eSyndiCat->resetTable();,[file] => ,[plugin] => whoisonline)),[suggestListingDataValidation] => Array ([27] => Array ([type] => php,[code] => global $esynI18N, $error, $msg, $esynConfig; if($esynConfig->getConfig('terms_verification') && !isset($_POST['terms_check'])) { $error = true; $msg[] = $esynI18N['error_terms_verification']; },[file] => ,[plugin] => terms_verification),[32] => Array ([type] => php,[code] => global $listings, $fields, $esynConfig, $esynI18N, $msg, $error; if ($fields && $esynConfig->getConfig('bad_words_checking')) { $bad_words = explode(",",$esynConfig->getConfig('bad_words')); $words = ""; if ($esynConfig->getConfig('checking_type') == "exact") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; $ldescription = strtolower($field_value); $ldescription = ereg_replace("[^A-Za-z0-9]", " ", $ldescription); $ldescription = explode(" "," ".$ldescription); foreach ($bad_words as $word) { if (array_search(strtolower(trim($word)),$ldescription)) { $words[] = $word; } } } } $bad_msg = $esynI18N['exact_bad_words']; } elseif ($esynConfig->getConfig('checking_type') == "stemming") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; foreach ($bad_words as $word) { if (stristr($field_value,trim($word))) { $words[] = $word; } } } } $bad_msg = $esynI18N['stemming_bad_words']; } if(!empty($words)) { $error = true; $msg[] = $bad_msg.": ".implode(', ', $words); } },[file] => ,[plugin] => badwordsfilter),[47] => Array ([type] => php,[code] => global $listing, $esynI18N, $error, $msg; if(!empty($listing['tag'])) { if(!preg_match("/^[\w\s,]+$/i", $listing['tag'])) { $error =true; $msg[] = $esynI18N['tag_incorrect']; } },[file] => ,[plugin] => tagcloud)),[afterSuggestListingFields] => Array ([28] => Array ([type] => smarty,[code] => {if $config.terms_verification} {$lang.field_terms_of_suggesting}:

 {$lang.field_terms_of_suggesting} {/if},[file] => ,[plugin] => terms_verification)),[viewListingAfterGetListing] => Array ([30] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $listing; global $esynConfig; $eSyndiCat->factory("Listing"); global $esynListing; $box_listings['related'] = $esynListing->getListingsByCategory($listing['category_id'], 0, $esynConfig->getConfig('num_related_listings')); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes)),[headSection] => Array ([34] => Array ([type] => smarty,[code] => {$config.google_verification},[file] => ,[plugin] => googletools),[42] => Array ([type] => smarty,[code] => {include_file css="plugins/twitter/templates/css/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterGetListingList] => Array ([37] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[afterGetSearchResult] => Array ([38] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[viewListingAfterFieldsDisplay] => Array ([41] => Array ([type] => smarty,[code] => {include file="box-header.tpl" caption="Twitter News" style="fixed"} {include file="box-footer.tpl"},[file] => ,[plugin] => twitter),[53] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[footerBeforeIncludeJs] => Array ([43] => Array ([type] => smarty,[code] => {include_file js="plugins/twitter/js/frontend/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterFooterLinks] => Array ([45] => Array ([type] => php,[code] => global $esynConfig; $root = ESYN_URL; $path = $root."plugins".ESYN_DS."banners".ESYN_DS."js".ESYN_DS."banners.js"; echo ""; echo "";,[file] => ,[plugin] => banners)),[beforeListingAdded] => Array ([48] => Array ([type] => php,[code] => global $listing, $eSyndiCat; if(!empty($listing['tag'])) { $info_table = $eSyndiCat->getAll("SHOW TABLE STATUS like '{$eSyndiCat->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ",",",$listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $eSyndiCat->setTable("dinamic_tags_clouds"); $eSyndiCat->insert($data); $eSyndiCat->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingInsert] => Array ([49] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { $info_table = $esynAdmin->getAll("SHOW TABLE STATUS like '{$esynAdmin->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingUpdate] => Array ([50] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $listing['id']; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[adminDatabaseConsistency] => Array ([54] => Array ([type] => smarty,[code] =>
  • {$esynI18N.manage_tag_cloud}: {$esynI18N.manage_tag_cloud|upper}
  • ,[file] => ,[plugin] => tagcloud)),[phpAdminDatabaseConsistencyType] => Array ([55] => Array ([type] => php,[code] => if($_GET['type'] == 'recounttags') { include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'admin'.ESYN_DS.'index.php'); },[file] => ,[plugin] => tagcloud)),[tplAdminDatabaseBeforeFooter] => Array ([56] => Array ([type] => smarty,[code] => {if 'consistency' eq $smarty.get.page} {include file=$smarty.const.ESYN_PLUGINS|cat:"tagcloud"|cat:$smarty.const.ESYN_DS|cat:"admin"|cat:$smarty.const.ESYN_DS|cat:"templates"|cat:$smarty.const.ESYN_DS|cat:"index.tpl"} {include_file js="plugins/tagcloud/js/admin/index"} {/if},[file] => ,[plugin] => tagcloud)),[paymentButtons] => Array ([58] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal),[64] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal)),[afterSuggestListing] => Array ([59] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal),[65] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal)),[plansBeforeSubmitButton] => Array ([60] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal),[66] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal)),[plansAfterViewInclude] => Array ([61] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal),[67] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal)),[plansAfterJsInclude] => Array ([62] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal),[68] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal)),[adminPlanCommonFieldFilled] => Array ([63] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal),[69] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal))),[tmpl] => marangal,[printRegular] => regular-listing-display.tpl,[printSponsored] => sponsored-listing-display.tpl,[printFeatured] => featured-listing-display.tpl,[printPartner] => partner-listing-display.tpl,[template_dir] => /home/director/public_html/esyndicat/templates/marangal/,[compile_dir] => /home/director/public_html/esyndicat/tmp/marangal/,[config_dir] => configs/,[plugins_dir] => Array ([0] => plugins),[debugging] => ,[error_reporting] => ,[debug_tpl] => ,[debugging_ctrl] => NONE,[compile_check] => 1,[force_compile] => ,[caching] => ,[cache_dir] => /home/director/public_html/esyndicat/tmp/smartycache/,[cache_lifetime] => 3600,[cache_modified_check] => 1,[php_handling] => 0,[security] => ,[secure_dir] => Array (),[security_settings] => Array ([PHP_HANDLING] => ,[IF_FUNCS] => Array ([0] => array,[1] => list,[2] => isset,[3] => empty,[4] => count,[5] => sizeof,[6] => in_array,[7] => is_array,[8] => true,[9] => false,[10] => null),[INCLUDE_ANY] => ,[PHP_TAGS] => ,[MODIFIER_FUNCS] => Array ([0] => count),[ALLOW_CONSTANTS] => ,[ALLOW_SUPER_GLOBALS] => 1),[trusted_dir] => Array (),[left_delimiter] => {,[right_delimiter] => },[request_vars_order] => EGPCS,[request_use_auto_globals] => 1,[compile_id] => ,[use_sub_dirs] => ,[default_modifiers] => Array (),[default_resource_type] => file,[cache_handler_func] => ,[autoload_filters] => Array (),[config_overwrite] => 1,[config_booleanize] => 1,[config_read_hidden] => ,[config_fix_newlines] => 1,[default_template_handler_func] => ,[compiler_file] => Smarty_Compiler.class.php,[compiler_class] => Smarty_Compiler,[config_class] => Config_File,[_tpl_vars] => Array ([SCRIPT_NAME] => /esyndicat/automotive-esyndicat-directories/index.php,[config] => Array ([htaccessfile_0] => # Uncomment next line if you get 404 error on accounts page # Options -MultiViews # enable mod_rewrite RewriteEngine on ,[htaccessfile_1] => # SECTION 1 # correct urls for yahoo bot RewriteCond %{REQUEST_URI} !\..+$ RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) %{REQUEST_URI}/ [R=301,L] # mod_rewrite rules for plugins RewriteRule ^mod/(.*)/$ controller.php?plugin=$1 [QSA,L] RewriteRule ^mod/(.*)/(.*)/$ controller.php?plugin=$1&file=$2 [QSA,L] RewriteRule ^mod/(.*)/(.*).html$ controller.php?plugin=$1&file=$2 [QSA,L] # mod_rewrite rules for view account page RewriteRule ^accounts/$ accounts.php [QSA,L] RewriteRule ^accounts/(.*)/$ accounts.php?alpha=$1 [QSA,L] RewriteRule ^accounts/(.*).html$ view-account.php?account=$1 [QSA,L] RewriteRule ^articles/$ controller.php?plugin=articles [QSA,L] RewriteRule ^articles/([a-z]+).html$ controller.php?plugin=articles&file=$1 [QSA,L] RewriteRule ^articles/index([0-9]+).html$ controller.php?plugin=articles&page=$1 [QSA,L] RewriteRule ^articles/(.*)-a([0-9]+).html$ controller.php?plugin=articles&title=$1&id=$2 [QSA,L] #mod_rewrite rules for news plugin RewriteRule ^(.*)-n([0-9]+).html$ controller.php?plugin=news&title=$1&id=$2 [QSA,L] RewriteRule ^news.html$ controller.php?plugin=news [QSA,L] RewriteRule ^news([0-9]+).html$ controller.php?plugin=news&page=$1 [QSA,L] # mod_rewrite rules for tell friend pages RewriteRule ^tell-friend.html$ controller.php?plugin=tell_friend [QSA,L] RewriteRule ^sitemap.xml$ tmp/sitemap/google/sitemap.xml [QSA,L] RewriteRule ^sitemap([0-9]+).xml$ tmp/sitemap/google/sitemap$1.xml [QSA,L] RewriteRule ^sitemap_index.xml$ tmp/sitemap/google/sitemap_index.xml [QSA,L] RewriteRule ^urllist.txt$ tmp/sitemap/urllist.txt [QSA,L] # mod_rewrite rules for tag cloud RewriteRule ^tags/$ controller.php?plugin=tagcloud&view=all [QSA,L] RewriteRule ^tag/([\w\s]+)/$ controller.php?plugin=tagcloud&tag=$1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index.html$ controller.php?plugin=tagcloud&tag=$1&page=1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index([0-9]+).html$ controller.php?plugin=tagcloud&tag=$1&page=$2 [QSA,L] ,[htaccessfile_2] => # SECTION 2 # mod_rewrite rules for ROOT category RewriteRule ^index([0-9]+).html$ index.php?category=0&page=$1 [QSA,L] # mod_rewrite rule for pageranks listing page RewriteRule ^pagerank([0-9]+)-listings.html$ controller.php?plugin=pageranks&pr=$1 [QSA,L] RewriteRule ^pagerank([0-9]+)-listings([0-9]+).html$ controller.php?plugin=pageranks&pr=$1&page=$2 [QSA,L] ,[htaccessfile_3] => # SECTION 3 # mod_rewrite rules for categories pages with HTML path option disable RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L] RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] ,[htaccessfile_4] => # SECTION 4 # mod_rewrite rule for suggest listing page RewriteRule report-listing.php$ report-listing.php [QSA,L] ,[htaccessfile_5] => # SECTION 5 RewriteRule ^([a-z]+)-listings.html$ listings.php?view=$1 [QSA,L] RewriteRule ^([a-z]+)-listings([0-9]+).html$ listings.php?view=$1&page=$2 [QSA,L] ,[htaccessfile_6] => # SECTION 6 # mod_rewrite rules for view listing page RewriteRule ^([^/]+)-l([0-9]+).html$ view-listing.php?cat=&title=$1&id=$2 [QSA,L] RewriteRule ^(.*)/([^/]+)-l([0-9]+).html$ view-listing.php?cat=$1&title=$2&id=$3 [QSA,L] ,[htaccessfile_7] => # SECTION 7 # mod_rewrite rules for additional pages RewriteRule ^p/(.*).html$ page.php?name=$1 [QSA,L] RewriteRule ^p(.*).html$ page.php?name=$1 [QSA,L] ,[htaccessfile_8] => # SECTION 8 # mod_rewrite rules for error pages RewriteRule ^([0-9]+).htm$ error.php?error=$1 [QSA,L] ,[htaccessfile_9] => # SECTION 9 # mod_rewrite rules for suggest category page RewriteRule ^suggest-category-([0-9]+).html$ suggest-category.php?id=$1 [QSA,L] ,[htaccessfile_10] => # SECTION 10 RewriteRule ^LICENSE.htm$ LICENSE.htm [QSA,L] ,[htaccessfile_11] => # SECTION 11 # mod_rewrite rules for categories pages RewriteRule ^(.*)_([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] RewriteRule ^(.*).html?(.*)$ index.php?category=$1&$2 [QSA,L] RewriteRule ^(.*).html$ index.php?category=$1 [QSA,L] ,[htaccessfile_12] => # SECTION 12 ErrorDocument 500 500.htm ErrorDocument 404 404.htm ErrorDocument 403 403.htm ErrorDocument 401 401.htm,[accounts] => 0,[accounts_autoapproval] => 0,[accounts_registered] => 1,[admin_online_expiry_time] => 60,[display_news] => 1,[display_new_plugins] => 1,[check_updates] => 1,[captcha] => 1,[captcha_name] => kcaptcha,[captcha_preview] => ,[captcha_case_sensitive] => 1,[captcha_num_chars] => 5,[suggest_category] => 1,[use_html_path] => 0,[related] => 0,[neighbour] => 0,[show_children_listings] => 0,[categories_order] => title,[num_categories_cols] => 3,[num_listings_display] => 0,[subcats_display] => 0,[categories_tree_type] => tree,[categories_display_type] => horizontal,[categories_icon_width] => 32,[categories_icon_height] => 32,[cron_recip] => 0,[cron_broken] => 0,[cron_pagerank] => 0,[cron_num_listings] => 10,[cron_check_interval] => 1,[cron_report_job] => 0,[cron_report_job_extra] => 0,[cron_report_cycle] => 0,[cron_report_cycle_extra] => 0,[cron_backup] => 0,[cron_backup_archive] => 0,[cron_backup_interval] => 30,[cron_backup_last_time] => ,[sponsored_listings] => 1,[currency_symbol] => $,[sponsored_only] => 0,[num_sponsored_display] => 3,[payment_transactions] => 1,[mcross_functionality] => 0,[mcross_number_links] => 5,[mcross_only_sponsored] => 0,[version] => 2.3.05,[site] => eSyndiCat Directories,[site_logo] => site_logo_388bde6351.png,[site_watermark] => ,[site_watermark_position] => bottom_right,[site_main_content] =>

    This is a source for all those great eSndicate Directories that can found check out our listings right away. To find out more visit their site eSyndiCat and the eSyndiCat Forum.

    ,[site_description] => This is a source for all those great eSndicate Directories that can found check out our listings right away.,[site_keywords] => eSndicate Directories,[backup] => backup/,[site_email] => directorys1@btinternet.com,[bugs_email] => directorys1@btinternet.com,[tmpl] => marangal,[admin_tmpl] => default,[lang] => en,[charset] => UTF-8,[date_format] => %b %e, %Y,[suffix] => :: Powered by eSyndiCat 2.3,[title_breadcrumb] => 0,[language_switch] => 0,[mod_rewrite] => 1,[lowercase_urls] => 1,[display_frontend] => 1,[underconstruction] => We are sorry. Our site is under construction.,[old_pages_urls] => 0,[esyndicat_news_url] => http://blog.intelliants.com/?view=rss,[esyndicat_new_plugins_url] => http://tools.esyndicat.com/new_plugins.php,[esyndicat_block_positions] => left,right,top,center,bottom,user1,user2,verybottom,verytop,topbanner,[ckeditor_color] => #F00,[esyndicat_menu_type] => inventory,main,bottom,account,[allow_listings_submission] => 1,[auto_approval] => 0,[new_window] => 1,[forward_to_listing_details] => 0,[pagerank] => 1,[thumbshot] => 1,[num_index_listings] => 20,[num_get_listings] => 20,[num_featured_display] => 20,[num_partner_display] => 20,[visitor_sorting] => 1,[listings_sorting] => alphabetic,[listings_sorting_type] => ascending,[num_cats_for_search] => 5,[expiration_period] => ,[expiration_action] => ,[broken_listings_report] => 1,[listing_check] => 0,[broken_visitors] => 1,[http_headers] => 301,302,200,[reciprocal_check] => 0,[reciprocal_required_only_for_free] => 0,[reciprocal_domain] => 1,[reciprocal_text] => http://directoriesbyscript.com/,[recip_featured] => 0,[reciprocal_visitors] => 1,[duplicate_checking] => 0,[duplicate_type] => domain,[duplicate_visitors] => 1,[reciprocal_label] => To validate the reciprocal link please include the following HTML code in the page at the URL specified above, before submitting this form:,[reciprocal_code] => ,[mail_function] => php mail,[mimetype] => html,[sendmail_path] => /usr/bin/sendmail,[smtp_secure_connection] => ,[smtp_server] => ,[smtp_user] => ,[smtp_password] => ,[listing_submit] => 1,[listing_submit_subject] => Listing was submitted to {own_site},[listing_submit_body_html] =>

    Dear Sir/Madam,

    We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed within 24 hours.

    After approval and activation, your URL will be listed at:

    {dir_listing}

    Now, please add a link to {own_site} to any of your site's pages.

    Please use the code below:

    {own_site}

    OR use the following information

    TITLE: {own_site}
    URL: {own_url}
    DESCRIPTION: your site description
    

    All the listings in our directory are direct, so they will improve your listing popularity.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_submit_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed as soon as possible. After approval and activation, your URL will be listed at: {dir_listing} Now, please add a link to {own_site} to any of your site's pages if you would like to as this is optional. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_approve] => 1,[listing_approve_subject] => Listing was approved in {own_site},[listing_approve_body_html] =>

    Dear Sir/Madam,

    Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at:

    {dir_listing}

    If you have not placed reciprocal listing to {own_site} yet, please add a listing to {own_url} to any of your site's pages.

    Please use the code below:

    {own_site}

    OR use the following information

    TITLE: {own_site}
    URL: {own_url}
    DESCRIPTION: your site description
    

    All the listings in our directory are direct, so they will improve your listing popularity.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_approve_body_plaintext] => Dear Sir/Madam, Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at {dir_listing}. All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[cron] => 1,[listing_disapprove] => 1,[listing_disapprove_subject] => Listing was disapproved in {own_site},[listing_disapprove_body_html] =>

    Dear Sir/Madam,

    Your listing {your_site_url} has been disapproved in {own_site}.

    If you have questions, please feel free to ask us.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_disapprove_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been disapproved in {own_site} Listings Directory. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_move] => 1,[listing_move_subject] => Listing was moved in {own_site},[listing_move_body_html] =>

    Dear Sir/Madam,

    We are glad to inform you, that your listing to site {your_site_url} was moved into another category.

    This is the new location of your listing:

    {dir_listing}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_move_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was moved into another category. This is the new location of your listing: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_modify] => 1,[listing_modify_subject] => Listing was modified in {own_site},[listing_modify_body_html] =>

    Dear Sir/Madam,

    We are glad to inform you, that your listing to site {your_site_url} was modified.

    These are the new attributes of your listing:

    Title: {your_site_title}
    URL: {your_site_url}
    Description: {your_site_desc}
    Email: {your_site_email}
    Rank: {your_site_rank}
    Status: {your_site_status}

    You can view your listing here:

    {dir_listing}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_modify_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was modified. These are the new attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_reject] => 1,[listing_reject_subject] => Listing was banned in {own_site},[listing_reject_body_html] =>

    Dear Sir/Madam,

    Your listing to {your_site_url} has been banned in {own_site}.

    If you have questions, please feel free to ask us.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_reject_body_plaintext] => Dear Sir/Madam, Listing to {your_site_url} in our directory has been banned. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_delete] => 1,[listing_delete_subject] => Listing was deleted from {own_site},[listing_delete_body_html] =>

    Dear Sir/Madam,

    Your listing {your_site_url} has been deleted from

    {dir_listing}

    category, probably because you did not place reciprocal listing(s) to {own_site}. To see your listing again, please add a listing to our site and inform us.

    {reason}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_delete_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been deleted from {dir_listing} category, To see your listing again, please add a listing to our site and inform us. {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_admin_add] => 1,[listing_admin_add_subject] => Listing was added to {own_site},[listing_admin_add_body_html] =>

    Dear Sir/Madam,

    We are glad to inform you that a listing to {your_site_url} has been added to {own_site} ({own_dir_url}).

    These are the attributes of your listing:
    Title: {your_site_title}
    URL: {your_site_url}
    Description: {your_site_desc}
    Email: {your_site_email}
    Rank: {your_site_rank}

    You can view your listing here:

    {dir_listing}

    Now, please add a listing to {own_site} to any of your site's pages.

    Please use the code below:
    ------------------------------------
    {own_site}
    ------------------------------------

    OR use the following information
    ------------------------------------
    TITLE: {own_site}
    URL: {own_url}
    DESCRIPTION: your site description

    All the listings in our directory are direct, so they will improve your listing popularity.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listing_admin_add_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a listing to {your_site_url} has been added to {own_site} Listings Directory ({own_dir_url}). These are the attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here {dir_listing} Now, please add a listing to {own_site} to any of your site's pages. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account] => 1,[register_account_subject] => Thanks for registration at {own_site},[register_account_body_html] =>

    Dear Sir/Madam,

    Thanks for your registration at {own_site}. Here is information you should use in order to login:

    Your username: {account_username}
    Your password: {account_pwd}
    Your activation key: {key}

    To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm

    You may change your password later by editing your personal attributes in your account area.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[register_account_body_plaintext] => Dear Sir/Madam, Thanks for your registration at {own_site}. Here is information you should use in order to login: Your username: {account_username} Your password: {account_pwd} Your activation key: {key} To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm You may change your password later by editing your personal attributes in your account area. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[admin_notif_subject] => Listing was submitted to {own_site},[admin_notif_body_html] =>

    Dear {admin_name},

    Listing was submitted to {own_site}. Please check it.

    These are the attributes of a listing:
    Title: {your_site_title}
    URL: {your_site_url}
    Description: {your_site_desc}
    Email: {your_site_email}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[admin_notif_body_plaintext] => Dear {admin_name}, Listing was submitted to {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listings_payment_subject] => Listing was made sponsored in {own_site},[listings_payment_body_html] =>

    Dear {admin_name},

    Listing was made sponsored in {own_site}. Please check it.

    These are the attributes of a listing:
    Title: {your_site_title}
    URL: {your_site_url}
    Description: {your_site_desc}
    Email: {your_site_email}
    Plan: {your_site_plan}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[listings_payment_body_plaintext] => Dear {admin_name}, Listing was made sponsored in {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Plan: {your_site_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_deleted] => 1,[account_deleted_subject] => Account deleted in {own_site},[account_deleted_body_html] =>

    Dear {username},

    Your account was removed from

    {own_site}

    Let us know if you have any questions.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_deleted_body_plaintext] => Dear {username}, Your account was removed from {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[password_change_subject] => Password change request at {own_site},[password_change_body_html] =>

    Dear {username},

    You requested a password change in {own_site}. Now you should use the following credentials to log in as account:

    username: {username}
    password: {password}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[password_change_body_plaintext] => Dear {username}, You requested a password change in {own_site}. Now you should use the following credentials to log in as account: username: {username} password: {password} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_approved] => 1,[account_approved_subject] => Account was approved at {own_site},[account_approved_body_html] =>

    Dear {username},

    Your account was approved in {own_site}. Now you can log in to the directory.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_approved_body_plaintext] => Dear {username}, Your account was approved in {own_site}. Now you can log in to the directory. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_disapproved] => 1,[account_disapproved_subject] => Account was disapproved at {own_site},[account_disapproved_body_html] =>

    Dear {username},

    Your account was disapproved in {own_site}.

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_disapproved_body_plaintext] => Dear {username}, Your account was disapproved in {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[payment_expiration] => 1,[payment_expiration_subject] => Payment is about to expire at {own_site},[payment_expiration_body_html] =>

    Dear {username},

    Hi, Your listing {your_site_title} will be expired in {days}. You can click here to extend the sponsorship:

    {upgrade_url}

    {action_expire}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[payment_expiration_body_plaintext] => Hi, Your listing - {your_site_title} - will be expired in {days}. You can click here to extend the sponsorship: {upgrade_url} {action_expire} Thanks in advance. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[broken_listing_report_subject] => Broken Listing Reported at {own_site},[broken_listing_report_body_html] =>

    Dear {admin_name},

    The following listing is reported as being broken:

    Listing ID: {id}
    Listing URL: {url}
    Listing Title: {title}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[broken_listing_report_body_plaintext] => Dear {admin_name}, The following listing is reported as being broken: Listing ID: {id} Listing URL: {url} Listing Title: {title} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[article] => 1,[article_number] => 20,[article_order] => date,[articles_registered] => 0,[article_auto_approval] => 0,[article_summary_max_chars] => 300,[article_allow_html] => 1,[num_new_articles] => 5,[contact_us_subject] => Contact us page ({subject}),[contact_us_body_plaintext] => Dear {admin_name}, You got contact requests with subject: {subject}, in {own_site} Directory. Please check it. Fullname: {fullname} Email address: {email} Reason: {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[contact_us_body_html] =>

    Dear {admin_name},

    You got contact requests with subject: {subject}, in {own_site} Directory. Please check it.

    Fullname: {fullname}
    Email address: {email}
    Reason: {reason}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[news] => 1,[news_number] => 3,[news_max] => 200,[news_order] => date,[reviews_title] => 1,[review_accounts_only] => 0,[review_approval] => 0,[title_max_chars] => 150,[reviews_min_chars] => 10,[reviews_max_chars] => 1000,[reviews_per_page] => 5,[num_best_rated] => 5,[reviews_opt1] => I Would Not Recommend,[reviews_opt2] => Fair,[reviews_opt3] => Good,[reviews_opt4] => Very Good,[reviews_opt5] => Exceptional,[terms_verification] => 1,[terms_verification_text] => Only eSyndiCat directories will be accepted.,[tell_friend_subject] => {name} recommends eSyndiCat Directory,[tell_friend_body_plaintext] => Dear {friends_name}, The following website was recommended to you by {name}: {url} {message} _____________________eSyndiCat Directory,[tell_friend_body_html] =>

    Dear {friends_name},

    The following website was recommended to you by {name}: {url}

    {message}

    _____________________eSyndiCat Directory,[newsletter_confirm_subject] => Thanks for subscribing at {own_site},[newsletter_confirm_body_plain] => Greetings {realname},\r\n\r\n thanks for requesting the {own_site} newsletter.\r\n\r\n Before we begin sending it, we want to make sure we\r\n have your permission.\r\n\r\n Below are the confirmation instructions.\r\n\r\n -----------------------------------------------------------\r\n CONFIRM BY VISITING THE LINK BELOW:\r\n\r\n To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key}\r\n\r\n Click the link above to give us permission to send you\r\n information. It''s fast and easy! If you cannot click the\r\n full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to subscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_confirm_body_html] => Greetings {realname},

    thanks for requesting the {own_site} newsletter.

    Before we begin sending it, we want to make sure we
    have your permission.

    Below are the confirmation instructions.

    -----------------------------------------------------------
    CONFIRM BY VISITING THE LINK BELOW:

    To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key}

    Click the link above to give us permission to send you
    information. It''s fast and easy! If you cannot click the
    full URL above, please copy and paste it into your web
    browser.

    If you do not want to subscribe, simply ignore this message.
    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}
    ,[newsletter_unsubscribe_subject] => Thanks for unsubscribing at {own_site},[newsletter_unsubscribe_body_plain] => Greetings {realname},\r\n\r\n To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key}\r\n\r\n If you cannot click the full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to unsubscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_unsubscribe_body_html] => Greetings {realname},

    To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key}

    If you cannot click the full URL above, please copy and paste it into your web
    browser.

    If you do not want to unsubscribe, simply ignore this message.
    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}
    ,[newsletter_autoapproval] => 1,[num_new_listings] => 20,[num_random_listings] => 20,[num_top_listings] => 5,[num_related_listings] => 5,[recaptcha_publickey] => ,[recaptcha_privatekey] => ,[bad_words_checking] => 1,[checking_type] => exact,[bad_words] => ,[google_analytics] => ,[google_verification] => ,[num_verytop_banners] => 1,[num_verybottom_banners] => 1,[num_center_banners] => 1,[num_topbanner_banners] => 1,[num_left_banners] => 1,[num_right_banners] => 1,[num_top_banners] => 1,[num_bottom_banners] => 1,[num_user1_banners] => 1,[num_user2_banners] => 1,[banner_guests_submit] => 1,[banner_prefix] => banner_,[banners_payment] => 1,[banners_payment_subject] => Banner was submitted to {own_site},[banners_payment_body_plaintext] => Dear {admin_name}, Banner was submitted to {own_site} Directory. Please check it. These are the attributes of a banner: Title: {item_title} URL: {item_url} Email: {item_email} Banner Plan: {item_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[banners_payment_body_html] => Dear {admin_name},

    Banner was submitted to {own_site} Directory. Please check it.

    These are the attributes of a banner:
    Title: {item_title}
    URL: {item_url}
    Email: {item_email}
    Banner Plan: {item_plan}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email},[tags_count] => 30,[tag_period_update] => 24,[tag_count_for_recount] => 30,[tag_clouds_last_modified] => 1337388916,[paypal_currency_code] => USD,[paypal_email] => ,[paypal_demo] => 0,[paypal_secret_word] => c680989de9cf61d0330b3bd18543eb14,[display_twitter] => 1,[config_keys] => recaptcha_publickey,recaptcha_privatekey,sendmail_path,smtp_secure_connection,smtp_server,smtp_user,smtp_password,[default_categories_icon] => templates/common/img/category_icons/category_icon.gif,[smtp_port] => 25,[account_register] => 1,[account_register_subject] => Account was registered to {own_site},[account_register_body_html] =>

    Dear {admin_name},

    Account was registered to {own_site}. Please check it.

    These are the attributes of the account:
    Username: {account_username}
    Email: {account_email}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_register_body_plaintext] => Dear {admin_name}, Account was registered to {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirmed] => 1,[account_confirmed_subject] => Account was confirmed in {own_site},[account_confirmed_body_html] =>

    Dear {admin_name},

    Account was confirmed in {own_site}. Please check it.

    These are the attributes of the account:
    Username: {account_username}
    Email: {account_email}
    Status: {account_status}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_confirmed_body_plaintext] => Dear {admin_name}, Account was confirmed in {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} Status: {account_status} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin] => 1,[register_account_admin_subject] => Thanks for registration at {own_site},[register_account_admin_body_plaintext] => Dear Sir/Madam, Your website {your_site_url} has been added to {own_site}. This is the information we have added: Title: {your_site_title} Description: {your_site_desc} URL: {your_site_url} Email: {your_site_email} You can find your listing at {dir_listing} If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information Your username: {account_username} Your password: {account_pwd} Login page: {own_site}/login.php ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin_body_html] =>

    Dear Sir/Madam,

    Your website {your_site_url} has been added to {own_site}

    This is the information we have added:

    Title: {your_site_title}
    Description: {your_site_desc}
    URL: {your_site_url}
    Email: {your_site_email}

    You can find your listing at {dir_listing}

    If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information:

    Your username: {account_username}
    Your password: {account_pwd}

    Login page: {own_site}login.php

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[suggest_category_subject] => Category was submitted to {own_site},[suggest_category_body_html] =>

    Dear {admin_name},

    Category was submitted to {own_site}. Please check it.

    These are the attributes of a category:
    Title: {cat_title}
    Category path: {cat_path}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[suggest_category_body_plaintext] => Dear {admin_name}, Category was submitted to {own_site} Directory. Please check it. These are the attributes of a category: Title: {cat_title} Category path: {cat_path} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email] => 1,[account_confirm_email_subject] => Confirm email in {own_site},[account_confirm_email_body_plaintext] => Dear {username}, We have received new password request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=restore_password&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email_body_html] =>

    Dear {username},

    We have received new password request for your account ({username}) in {own_site}.

    If this request was initiated by you, please click on following link to confirm your email:
    {own_dir_url}confirm.php?action=restore_password&account={account_id}&r={sec_key}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[account_change_email] => 1,[account_change_email_subject] => Confirm change email in {own_site},[account_change_email_body_plaintext] => Dear {username}, We have received change email request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=change_email&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_change_email_body_html] =>

    Dear {username},

    We have received change email request for your account ({username}) in {own_site}.

    If this request was initiated by you, please click on following link to confirm your email:
    {own_dir_url}confirm.php?action=change_email&account={account_id}&r={sec_key}

    ______________________________
    Thank you,
    {own_site} Administration Team
    {own_url}
    {own_email}

    ,[esyn_url] => http://directoriesbyscript.com/esyndicat/),[esynAccountInfo] => ,[lang] => Array ([login] => Login,[interface_language] => Interface Language,[password] => Password,[forgot_password] => Forgot your password?,[login_btn] => Login,[invalid_username] => Invalid username.,[invalid_password] => Invalid password.,[changes_saved] => Changes saved,[items_deleted] => Deleted.,[save_changes] => Save Changes,[home] => Home,[help] => Help,[error_name] => The name is empty,[plan_added] => Plan added.,[edit] => Edit,[delete] => Delete,[field_url] => Listing URL,[field_title] => Title,[field_description] => Description,[field_email] => Email,[field_reciprocal] => Reciprocal URL,[order] => Order,[description] => Description,[title] => Title,[add] => Add,[view_all] => View All,[search] => Search,[logout] => Logout,[date] => Date,[status] => Status,[go] => Go,[_select_] => -- select --,[reply] => Reply,[email_sent] => Email Sent,[body] => Body,[from] => From,[body_incorrect] => Body is incorrect.,[to] => To,[subject] => Subject,[author] => Author,[email] => Email,[categories] => Categories,[listings] => Listings,[sponsored] => Sponsored,[featured] => Featured,[partner] => Partner,[total] => Reviews total,[reciprocal] => Reciprocal,[comments] => Comments,[accounts] => Accounts,[move] => Move,[password_incorrect] => Password is incorrect.,[passwords_not_match] => Passwords do not match.,[account_added] => Account added.,[account] => Account,[browse_categories] => Browse Categories,[create] => Create,[browse] => Browse,[category] => Category,[listing] => Listing,[expand_all] => Expand All,[collapse_all] => Collapse All,[done] => Done,[all_categories] => All Categories,[all_listings] => All Listings,[title_incorrect] => Title incorrect.,[plan_assigned] => Sponsored plan assigned.,[meta_description] => Meta-description,[meta_keywords] => Meta-keywords,[yes] => Yes,[no] => No,[comment] => Comment,[partner_since] => Partner Since,[clicks] => Clicks,[rating] => Rating,[featured_since] => Featured Since,[ban] => Ban,[deleted] => Deleted.,[send] => Send,[disable] => Disable,[myfield] => myfield,[pagerank] => PageRank,[some] => some,[unknown_upload] => Unknown error during file upload.,[incorrect_filetype] => Incorrect file type.,[upload_correct_permission] => Couldn't copy uploaded image to the destination. Please make sure that the script has write permission.,[view] => View,[additional_fields] => Additional Fields,[rank] => Rank,[incorrect_email] => Please input correct email.,[username] => Username,[fullname] => Full Name,[payment_notif] => Payment Notification,[password_confirm] => Password Confirmation,[enabled] => Enabled,[disabled] => Disabled,[no_comments] => No Comments.,[page] => Page,[pages] => Pages,[page_content_sample] => Your page content should be here...,[url] => URL,[suggest_listing] => Suggest Listing,[listing_details] => Listing Details,[image_width] => Image Width,[remove] => Remove,[of] => of,[first_page] => First Page,[previous_page] => Previous Page,[next_page] => Next Page,[last_page] => Last Page,[no_listings] => No listings yet created. Click here to add new one.,[any_word] => any word,[all_words] => all words,[exact_match] => exact match,[language] => Language,[default] => Default,[set_default] => Set Default,[download] => Download,[about] => About Us,[account_created] => Account created! Thank you!,[advanced_search] => Advanced Search,[advertise] => Advertise Us,[approval_listings] => Waiting Approval,[ascending] => ascending,[author_email] => Author Email,[category_title] => Category title,[category_submitted] => Category was submitted for consideration!,[change_password] => Change Password,[characters_left] => characters left,[click_here] => Click here,[comment_added] => Comment added.,[comment_author] => Comment Author,[comment_rank] => Listing Rank: ,[company_info] => Company Info,[company_jobs] => Company Jobs,[company_policy] => Company Policy,[company_terms] => Terms Of Service,[complete_submission] => Complete submission,[confirmation_sent] => Confirmation for password change request sent.,[current_password] => Current Password,[description_empty] => Description is empty!,[descending] => descending,[edit_account] => Edit Account,[edit_info] => Edit Info,[edit_listing] => Edit Listing,[account_email_exists] => Account with this email already exists!,[account_listings] => My listings,[account_login] => Account Login,[account_no_listings] => You have not submitted any listings. Please choose correct category and make sure it fits your listing best. Then click SUGGEST LISTING, input requested information and submit it.
    Usually it takes about 24 hours for a listing to be reviewed by administrator.,[accounts_area] => Accounts Area,[error] => Error,[featured_listings] => Featured,[first] => First,[free] => Free,[friend_fullname] => Your friend's fullname,[friend_told] => Message has just been sent to your friend.,[forgot] => Forgot password?,[last] => Last,[leave_comment] => Leave Comment,[listing_added] => Listing added,[listing_changed] => Listing changed,[listing_rank] => Listing Rank,[listing_status] => Listing Status,[listing_submitted] => Thank you! Your listing was submitted for consideration,[listings_found] => Listings Found: ,[logged_out] => You have been logged out.,[my_categories] => My Categories,[my_listings] => My listings,[new_listings] => New listings,[new_password] => New Password,[new_password2] => New Password[confirm],[new_password_sent] => New password has just been sent to account email!,[neighbour_categories] => Neighbour Categories,[next] => Next,[no_results] => No results,[non_sponsored] => Non sponsored link,[not_found_listings] => No listings found. Please try to broaden your search criterias!,[not_available] => Not available,[no_approval_listings] => No listings waiting for approval in your categories,[not_rated] => This listing is not rated yet. Be the first who rates it!,[partner_listings] => Partner listings,[policy] => Privacy Policy,[previous] => Previous,[purchase] => purchase,[reason] => Reason,[related_categories] => Related Categories,[restore_password] => Restore password,[statistics] => Statistics,[sponsored_listings] => Sponsored,[sponsored_plan] => Sponsored Plan,[sponsored_plans] => Sponsored Plans,[submit] => Submit,[submission] => Submission,[suggest_category_top1] => You are going to suggest category here:,[suggest_listing_top1] => You are going to suggest your listing to the following category:,[suggest_listing_top2] => Please make sure your listing fits this category.,[purchase_successful] => Thank you. We received your payment.,[password_changed] => Password has been successfully changed.,[passwords_dont_match] => Passwords you entered do not match.,[password_empty] => You have not entered a new password.,[popular_listings] => Popular listings,[posted] => posted on ,[rate_listing] => Rate Listing,[report_broken_listing] => Report Broken Listing,[rating_num] => Number of Ratings:,[reciprocal_empty] => Reciprocal link is empty!,[register] => Register,[register_account] => Do not have an account?,[submission_confirmation] => Please verify if submitted information is correct.,[upgrade_listing] => Upgrade Listing,[url_empty] => url is empty!,[username_empty] => Make sure you entered valid username or your account is active.,[terms] => Terms of Use,[title_empty] => Title is empty!,[thanks] => Thank you.,[thank_text] => to get back to index page.,[thanks_for_vote] => Thanks for vote.,[top_listings] => Top listings,[total_num_categories] => Number of categories:,[total_num_listings] => Number of listings:,[transaction_failed] => Transaction failed! Please contact us!,[transaction_failed2] => Stop trying hack our site! Your ip is has been tracked!,[transaction_success_title] => Transaction successful!,[transaction_success] => Transaction successful! You will be sent an email within 24 hours!,[view_amazon] => View Amazon Info,[view_listing] => View Listing,[view_my_listings] => View My listings,[view_my_categories] => Categories To Edit,[your_email] => Your email,[your_listing_category] => Your listing category,[your_listing_url] => Your listing URL,[your_listing_title] => Your listing title,[your_listing_description] => Your listing description,[your_listing_reciprocal] => Listing reciprocal URL,[your_message] => Your message here,[your_password] => Your password,[your_password_confirm] => Confirm your password,[your_username] => Your username,[your_username_here] => Your username here:,[welcome] => Welcome,[choose_plan] => Choose a Plan,[change_plan] => Change plan,[wrong_image_type] => Only following image types are allowed ({types}) for `{name}` field,[sort_listings_by] => Sort listings by: ,[alphabetic] => Alphabetic,[error_already_voted] => You've already voted. Please try later.,[error_banned] => Listing was banned. Please do not try to add it again.,[error_broken_listing] => Listing seems to be broken. Please check it manually.,[error_captcha] => Make sure you entered valid captcha code.,[error_category_empty] => Please go into appropriate category and become account there.,[error_category_exists] => Category was already suggested before.,[error_category_locked] => This category is locked by administrator.,[error_contact_fullname] => Please fill in full name.,[error_directory_readonly] => Uploads directory is readonly. Please make it writable.,[error_email_incorrect] => Make sure you entered valid email.,[error_sponsored] => You should choose sponsored plan. Only sponsored listings are accepted.,[error_listing_present] => Your listing already exists in directory.,[error_file_upload] => Unknown error during file upload.,[error_max_description] => Your description length should be less than {num} symbols.,[error_min_description] => Your description length should be more than {num} symbols.,[error_comment] => Make sure you entered valid comment.,[error_comment_author] => Make sure you entered valid comment author.,[error_comment_email] => Make sure you entered valid author email.,[error_max_comment] => Your comment length should be less than {maxLength} symbols.,[error_min_comment] => Your comment length should be more than {minLength} symbols.,[error_no_account_email] => No accounts registered with this email.,[error_root_category] => You can not suggest in root category. Please choose an appropiate category and try again.,[error_suggest_logged] => You should be logged in to suggest listings.,[error_password_empty] => Please input correct password.,[error_password_match] => Passwords do not match.,[error_reciprocal_listing] => Please input correct reciprocal link.,[error_reciprocal_domain] => Please make sure you use a backlink from your domain.,[error_username_empty] => Please input correct username.,[error_username_exists] => Username already taken. Please input different username.,[error_account_incorrect] => Please fill in username.,[error_accountpsw_incorrect] => Please fill in password.,[200] => URL located, content follows (200),[301] => Object moved permanently (301),[302] => Object moved (302),[304] => Not modified (304),[400] => Bad request (400),[401] => Unauthorized(401),[403] => Forbidden (403),[404] => Requested URL not found (404),[500] => Unknown server error (500),[503] => Server capacity reached (503),[666] => Error occurred while paid listing submission. Please try to sugget a listing again.,[667] => Incorrect listing id during payment processing.,[668] => Incorrect plan id during payment processing.,[669] => You used demo transaction. Please stop cheating.,[670] => Accounts functionality disabled by administrator.,[671] => Permission denied. You don't have enough permission to modify that listing.,[672] => Suggest category functionality disabled by administrator.,[673] => Your IP-address was banned by administrator,[cancel] => Cancel,[click_here_to_edit] => Click here to edit.,[reset] => Reset,[key] => Key,[value] => Value,[filename] => Filename,[all_languages] => All Languages,[search_in] => Search in,[search_for_text] => Search for Text,[save] => Save,[no_backlink] => No backlink,[position] => Position,[other] => Other,[copy] => Copy,[field_is_empty] => "{field}" is empty.,[no_sponsored_plans] => No sponsored plans created.,[broken_report_sent] => A report has been sent to the site administrator.,[report] => Report,[close] => Close,[report_as_broken] => Report the link {lurl} as being broken.,[do_you_want_report_broken] => Do you want to report broken listing?,[ascii_required] => Only alphanumeric ASCII characters are allowed,[1] => Not available,[expire] => Expire,[vote] => Vote,[payment_done] => Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. Once the administrator approves your listing it will appear as sponsored in our listings.,[oops] => Oops!,[payment_canceled] => Since you canceled the payment your listing will not appear as sponsored.,[folder_incorrect_permissions] => Sorry, you have not set necessary permissions. Please set writable permissions for the following directory {name},[expire_date] => Expire date,[random_listings] => Random listings,[total_votes] => Total {num} votes,[suggest_category] => Suggest Category,[parent_category] => Parent category,[searchable] => Searchable,[file_types] => Allowed file types (comma separated values (don't include point), example: pdf, doc, odf, mov),[section] => Search section,[sections] => Search sections,[contains] => Contains,[where] => Where,[search_match] => Match,[relevance] => Relevance,[perpage] => Per page,[output_settings] => Output settings,[deep_links] => Deep links,[start_search] => Start search,[confirmation] => Confirmation,[na] => n/a,[loading] => Loading ...,[change] => change,[listing_category] => Listing category,[error_login] => Either login or password is invalid,[user_default] => User default,[exit] => Exit,[youre_in_manage_mode] => You're in manage mode,[code] => Code,[quick_links] => Quick links,[add_as_crossed_to_other_categories] => Add also to other categories as crossed,[suspend] => Suspend,[wrong_file_extension] => Wrong file extension for {field} field. Please use one of the following extensions {allowed},[go_back] => Go back,[ok] => Ok,[crossed_to] => Crossed to,[move_listing] => Move listing,[listing_returned] => Listing was returned back!,[listing_move_confirmation] => You are going to move listing to another category, please be sure you want do this. If listing has active status it will be disapproved.,[listing_fin_move_confirmation] => Are you sure you want to move this listing?,[rate_this] => Rate this {rate},[apply] => Apply,[favorites_added] => The Listing has been added to favorites.,[view_my_favorites] => View My favorites,[remove_from_favorites] => Remove from favorites,[favorites_removed] => The Listing has been removed from favorites.,[add_to_favorites] => Add To Favorites,[my_favorite_listings] => My favorite listings,[slogan] => For the best
    eSyndiCat directories!,[comment_approval] => Your comment is waiting for approval.,[error_url] => Please check the URL.,[vote_cast] => vote cast,[vote_casts] => vote casts,[search_criterias] => Search Criterias,[listings_legend] => listings waiting for administrator approval,[add_favorite] => Do you want to add the listing to favorites?,[remove_favorite] => Do you want to remove the listing from favorites?,[mcross_warning] => You can not cross one more link,[cross_warning] => You can not cross listing into main category,[page_title_index] => Home,[page_title_search] => Search,[page_title_new_listings] => New Listings,[page_title_top_listings] => Top Listings,[page_title_popular_listings] => Popular Listings,[page_title_random_listings] => Random Listings,[page_title_suggest_listing] => Suggest Listing,[page_title_suggest_category] => Suggest Category,[page_title_edit_account] => Edit Account,[page_title_favorites_listings] => Favorites,[page_title_account_listings] => My Listings,[page_title_about] => About Us,[page_title_terms] => Terms of Use,[page_title_help] => Help,[page_title_policy] => Privacy Policy,[page_title_advertise] => Advertise Us,[listings_submission_disabled] => Listings submission is disabled by adminstrator.,[error_email] => The email is not valid,[thankyou_tail] =>

    Please read our letter with further instructions.

    ,[thankyou_head] =>

    Below is the information you submitted so far. You will be able to extend and edit this information via your member account.

    IMPORTANT! Your account password has been sent to the following email address:

    ,[reg_confirmed] => Account confirmed. Please sign in.,[reg_confirm_err] => Error. You key not found.,[reg_confirmation] => Registration Confirmation,[confirm] => Confirm,[error_javascript] => You have to enable JavaScript in your browser.,[redraw_captcha] => Click on image to redraw.,[text_captcha] => Please input letters you see on the image.,[favorites_listings] => Favorite Listings,[error_min_textarea] => Your {field} length should be more than {num} symbols.,[error_max_textarea] => Your {field} length should be less than {num} symbols.,[characters_count] => Characters count,[plans] => Plans,[payment_gateway] => Payment gateways,[captcha] => Captcha,[fields] => Fields,[reg_confirmed_pending] => Account confirmed. Your account is still pending approval by the administrator.,[rememberme] => Remember Me,[error_username_incorrect] => Make sure you entered valid username.,[unconfirmed] => Unconfirmed,[auto_generate_password] => Auto generate password,[or] => OR,[and] => AND,[page_content_about] => About Us page content,[page_content_policy] => Privacy Policy page content,[page_content_terms] => Terms Of Use page content,[page_content_help] => Help page content,[page_content_advertise] => Advertise Us page content,[newly_added_listings] => Newly added listings,[most_popular_listings] => Most popular listings,[rss_feed] => RSS feed,[esyndicat_action_add_favorite] => Add Favorite,[esyndicat_action_remove_favorite] => Remove Favorite,[esyndicat_action_report_listing] => Report Listing,[esyndicat_action_visit_website] => Visit Website,[xml_syndication] => XML syndication,[enter_confirmation] => Please enter confirmation code below,[unknown] => Unknown,[confirm_not_valid] => Confirmations data is not valid. Please recheck the confirm link.,[check_listing_fields] => Please recheck your information.,[error_contents] => Contents field is a required.,[new] => New,[date_registration ] => Date Registration,[view_account_details] => View account details,[no_accounts] => There is no any accounts.,[no_account_listings] => Account does not have any listings yet.,[page_title_accounts] => Accounts,[page_title_account_login] => Account Login,[page_title_payment_complete] => Payment Complete,[page_title_account_register] => Account Register,[page_title_edit_listing] => Edit Listing,[page_title_account_logout] => Account Logout,[page_title_thank] => Thank,[page_title_account_password_forgot] => Account Password Forgot,[page_title_error] => Error,[page_title_payment_canceled] => Payment Canceled,[page_title_purchase_complete] => Purchase Complete,[page_title_view_listing] => View Listing,[page_title_report_broken_listing] => Report Broken Listing,[no_more_files] => You can not upload more files. Limit exceeded.,[page_title_index_browse] => Browse Categories,[youre_in_preview_mode] => You are in template preview mode.,[field_rss_feed] => RSS Feed,[article] => Article,[articles] => Articles,[account_articles] => My Articles,[no_article] => No articles created.,[view_article] => View Article,[view_all_article] => View All Articles,[suggest_article] => Suggest Article,[article_title] => Title of Article,[article_description] => Short Description,[article_text] => Article Text,[article_tags] => Article Tags,[login_to_article] => Please login to suggest an article,[article_submission_disabled] => Article Submission has been disabled, Please try again later,[owner_name] => Name,[owner_email] => Email,[owner_domain] => URL,[article_submitted] => Your Article has been submitted for approval.,[error_title] => Title is a required field.,[error_description] => Description is a required field.,[error_body] => Body is a required field.,[error_date_added] => Please check the Date Added.,[error_tags] => Tags is a required field.,[article_date_added] => Date Added,[article_date_modified] => Date Modified,[error_email_required] => Email is a required field. (will be hidden),[article_by] => By,[article_category] => Category,[page_title_article] => Articles,[page_title_suggest_article] => Add Article,[page_title_account_articles] => My Articles,[esyndicat_action_claim-listing] => Claim Listing,[validate_listing_owner] => Validate Listing Owner,[error_claim_code] => Error. Your code is not found.,[claim_this_link] => Claim Listing,[meta_validation] => Meta Validation Method,[file_validation] => File Validation Method,[claim_text] =>

    To edit your listing you should add the following code to {url} as it's shown below:

    ,[claim_text2] =>
    • Create a text file called {domain}.txt containing: {owner_code}
    • Upload it to {url}

    The full address is {url}/{domain}.txt. This file can be removed after verification.

    ,[your] => Your,[full_name] => Full name,[get_back_to] => to get back to listing detail page.,[error_contact_body] => Please fill in contact reason.,[error_contact_subject] => Please fill in contact subject.,[contact_us] => Contact us,[contact_added] => Contact added.,[contact] => Contact,[contacts] => Contacts,[page_title_contacts] => Contact us,[esyndicat_action_contact_member] => Contact,[contact_account] => Contact account,[contact_listing_owner] => Contact listing owner,[page_title_contact_us] => Contact Us,[page_title_contact_member] => Contact Member,[page_title_contact_listing] => Contact Listing Owner,[pending_approval] => Pending Approval,[total_listing_clicks] => Total Listing Clicks,[total_category_clicks] => Total Category Clicks,[news] => News,[view_news] => View News,[view_all_news] => View all news,[no_news] => There is no any news.,[page_title_news] => News,[reviews] => Reviews,[manage_reviews] => Manage reviews,[edit_review] => Edit review,[review_author] => Author,[review_url] => Site,[review_title] => Title,[review_text] => Text,[reviews_read] => Reviews list,[reviews_rate] => Reviews rate,[review_add] => Add review,[review_rate_name] => Rating,[reviews_count] => Reviews count,[rate_it] => Post review for this listing.,[no_reviews] => No reviews to view.,[reviews_approval] => Your review is waiting for approval.,[error_review_logged] => Your must be authorized to post reviews.,[reviews_deleted] => All reviews deleted.,[review_deleted] => Review deleted.,[reviews_added] => Your review has been added. It will be available soon.,[reviews_error_already] => Your rate already record,[error_max_title] => Your title length should be less than {maxLength} symbols.,[error_min_reviews] => Your text length should be more than {minLength} symbols.,[error_max_reviews] => Your text length should be less than {maxLength} symbols.,[error_no_rate] => No rating number.,[error_no_auth] => You must be authorized.,[error_no_listing] => No listing id avaible.,[are_you_sure_to_delete_selected_reviews] => Are you sure to delete selected reviews?,[are_you_sure_to_delete_selected_review] => Are you sure to delete selected review?,[are_you_sure_to_delete_this_review] => Are you sure to delete this review?,[active_users] => Active Users,[guests] => Guests,[visits] => Visits last 24h,[field_terms_of_suggesting] => Terms of Submission,[field_i_agree] => I agree with,[error_terms_verification] => You may not suggest the link as you do not agree with the terms,[page_title_term_of_submission] => Terms of Submissions,[page_content_term_of_submission] => Please edit your terms of submissions using your Admin Panel -> Manage Pages,[tell_friend] => Tell Friend,[are_you_sure_to_delete_selected_subscribe] => Are you sure to delete selected subscribe?,[newsletter_unsubscribe_confirm_err] => Error. Your key not found.,[newsletter_unsubscribe_confirm] =>

    Congratulations!

    You have successfully confirmed end of subscription.
    Best regards.,[newsletter_email_exists] => Email already exists,[newsletter_unsubscribe] =>

    Thank You,

    We have just sent you a confirmation email. It should arrive into your inbox shortly.
    Please check your email inbox, find our confirmation email, read the instructions, and confirm.,[newsletter_confirm_err] => Error. Your key not found.,[newsletter_delete_err] => Your subscription has not been removed,[newsletter_subscribe] =>

    Thank You,

    thank you for subscribing to our newsletter.
    Before we start sending you our newsletter we have to make sure we have your permission. We have just sent you a confirmation email. It should arrive into your inbox shortly.
    Please check your email inbox, find the our subscription confirmation email, read the instructions, and confirm your subscription.,[error_realname_empty] => Real name field is empty,[newsletter_confirmed] =>

    Congratulations!

    You have successfully confirmed your subscription.
    We do appreciate your feedback so feel free to reply to our newsletter messages.
    Stay in touch!
    Best regards.,[manage_newsletters] => Manage Subscribe,[newsletter_deleted] => Your subscription has been removed,[email_tags_explan] => You can use following email tags,[error_email_exist] => Email already exist,[newsletters_added] => News letters added,[add_newsletters] => Add newsletters,[individ_receps] => Individual recipients,[no_newsletters] => no_newsletters,[manage_mailer] => Manage Mailer,[mass_mailer] => Mass mailer,[unsubscribe] => Unsubscribe,[newsletters] => Newsletters,[newsletter] => Newsletter,[subscribe] => Subscribe,[realname] => Real name,[cannot_create_folder] => Can't create folders for sitemap files.,[not_writable_folder] => Sitemap file's folder non writable.,[create_gy_sitemap] => Create Google Yahoo sitemap.,[processing] => Processing.,[finished] => Finished.,[progress] => Progress.,[start] => Start.,[check_link_status] => Check Listing Status,[listing_status_description] => Please input your listing URL to check what status it has now.,[check_link_status_url] => Link URL,[error_empty_link_status_url] => Please type correct link URL.,[error_not_found_link_status_url] => No listing found with this URL.,[approval_link_status_url] => Your listing is waiting for administrator approval. It was submitted on {date}.,[active_link_status_url] => This listing is active since {date}.,[suspended_link_status_url] => This listing was suspended on {date}. Please contact site administrator in case you have questions.,[banned_link_status_url] => This listing was banned on {date}. Please contact site adminisitrator if you have any questions.,[page_title_listingstatus] => Check Listing Status,[pagerank_listings] => Listings with PR,[no_pagerank_listings] => No listings with Pagerank yet.,[page_title_pagerank_listings] => Pagerank Listings,[exact_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[stemming_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[field_display_url] => Display URL,[field_twitter_username] => Twitter Username,[set_status_after_submit] => Set banner status after submit as,[banner_email_incorrect] => As you are not registered we need to know your correct email that informs you about any changes with your banner.,[cron_for_expiration_b] => Cron for changing banner after payment is expired,[page_title_my_banners] => My Banners,[banner_type_incorrect] => Banner type is incorrect.,[banner_title_is_empty] => Banner Title is empty.,[uploads_not_writable] => Uploads folder is not writable. Your customers will not be able submit Local(image,flash) bunners.,[remote_url_incorrect] => You must specify an URL to the remote banner.,[paypal_not_installed] => You need install paypal plugin before create a banners plan.,[banner_url_incorrect] => Banner URL is incorrect.,[click_to_add_banner] => Click here to add Your Banner,[manage_banner_plans] => Manage Banner Plans,[choose_file_upload] => Choose a file to upload,[image_keepratio] => Keep image ratio,[include_subcats] => include subcategories,[use_orig_params] => Use original parameters,[suggest_banner] => Suggest Banner,[banner_img_url] => Banner image URL,[banner_email] => Your e-mail,[banner_title] => Banner Title,[banner_added] => Banner added.,[image_height] => Image Height,[banner_type] => Banner Type,[edit_banner] => Edit Banner,[banner_alt] => Banner Alternative Text,[add_banner] => Add Banner,[verybottom] => Very Bottom,[banner_url] => Banner URL,[topbanner] => Top Banner,[image_fit] => Enlarge the image if it will be less than entered sizes,[verytop] => Very Top,[_parent] => Parent Frame,[content] => Content,[banners] => Banners,[center] => Center,[bottom] => Bottom,[target] => Target,[remote] => Remote,[banner] => Banner,[_blank] => New Window,[_self] => Current Window,[local] => Local (image or flash),[block] => Block,[shows] => Shows,[user1] => User1,[user2] => User2,[right] => Right,[_top] => Top Frame,[text] => Plain text,[left] => Left,[html] => HTML or JS,[top] => Top,[page_title_suggest_banner] => Suggest Banner,[view_all_tags] => View all tags,[tag_incorrect] => Incorrect tags key,[tag_cloud] => Tag Cloud,[view_tags] => View tags,[all_tags] => All Tags,[tags] => Tags,[page_title_tagcloud] => Tag Cloud,[field_tag] => Tags,[google_search] => Google Search,[page_title_Main] => Main,[more] => more...,[categories_found] => Categories found: ,[username_banned] => Your account has been banned by administrator.,[last_visited] => Last Visited,[instructions_restore_password_sent] => Email with instructions to restore password has been sent.,[instructions_change_email_sent] => Email with instructions to change email has been sent.,[change_email] => Change Email,[confirm_email] => Confirm Email,[account_successful_change_email] => You have successfully change your account email.,[field_meta_description] => Meta Description,[field_meta_keywords] => Meta Keywords,[error_deep_link_not_similar] => The domain of deep link ( {url} ) is not similar as listing URL.),[breadcrumb] => ,[msg] => ,[error] => ,[printregular] => regular-listing-display.tpl,[printsponsored] => sponsored-listing-display.tpl,[printfeatured] => featured-listing-display.tpl,[printpartner] => partner-listing-display.tpl,[templates] => http://directoriesbyscript.com/esyndicat/templates/marangal,[img] => http://directoriesbyscript.com/esyndicat/templates/marangal/img/,[menus] => Array ([inventory] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[2] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing)),[main] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Main,[order] => 1,[url] => http://directoriesbyscript.com,[nofollow] => 0,[name] => Main),[2] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[3] => Array ([title] => New Listings,[order] => 3,[url] => new-listings.html,[nofollow] => 0,[name] => new_listings),[4] => Array ([title] => Top Listings,[order] => 4,[url] => top-listings.html,[nofollow] => 0,[name] => top_listings),[5] => Array ([title] => Popular Listings,[order] => 5,[url] => popular-listings.html,[nofollow] => 0,[name] => popular_listings),[6] => Array ([title] => Random Listings,[order] => 6,[url] => random-listings.html,[nofollow] => 0,[name] => random_listings),[7] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing),[8] => Array ([title] => Suggest Category,[order] => 8,[url] => suggest-category.php?id=5,[nofollow] => 1,[name] => suggest_category),[9] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[10] => Array ([title] => Add Article,[order] => 18,[url] => articles/add.html?id=5,[nofollow] => 1,[name] => suggest_article),[11] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news)),[account] => Array ([0] => Array ([title] => My Listings,[order] => 9,[url] => account-listings.html,[nofollow] => 0,[name] => account_listings),[1] => Array ([title] => Favorites,[order] => 10,[url] => favorites-listings.html,[nofollow] => 0,[name] => favorites_listings),[2] => Array ([title] => Edit Account,[order] => 11,[url] => edit-account.php,[nofollow] => 1,[name] => edit_account),[3] => Array ([title] => My Articles,[order] => 19,[url] => articles/account.html,[nofollow] => 0,[name] => account_articles)),[bottom] => Array ([0] => Array ([title] => About Us,[order] => 12,[url] => about.html,[nofollow] => 0,[name] => about),[1] => Array ([title] => Privacy Policy,[order] => 13,[url] => policy.html,[nofollow] => 0,[name] => policy),[2] => Array ([title] => Terms of Use,[order] => 14,[url] => terms.html,[nofollow] => 0,[name] => terms),[3] => Array ([title] => Help,[order] => 15,[url] => help.html,[nofollow] => 0,[name] => help),[4] => Array ([title] => Advertise Us,[order] => 16,[url] => advertise.html,[nofollow] => 0,[name] => advertise),[5] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[6] => Array ([title] => Contact Us,[order] => 21,[url] => mod/contacts/?contact=us,[nofollow] => 0,[name] => contact_us),[7] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news),[8] => Array ([title] => ,[order] => 26,[url] => tell-friend.html,[nofollow] => 1,[name] => tell_friend),[9] => Array ([title] => Check Listing Status,[order] => 27,[url] => mod/listingstatus/,[nofollow] => 1,[name] => listingstatus),[10] => Array ([title] => Tag Cloud,[order] => 30,[url] => tags/,[nofollow] => 0,[name] => tagcloud))),[articles] => ,[add_ads_left] => ,[add_ads_right] => ,[add_ads_top] => ,[add_ads_bottom] => ,[add_ads_user1] => ,[add_ads_user2] => ,[add_ads_center] => ,[add_ads_verybottom] => ,[add_ads_verytop] => ,[add_ads_topbanner] => ,[bottomBlocks] => Array ([0] => Array ([id] => 9,[title] => New Articles,[contents] => {if isset($latestArticles)}
    {foreach from=$latestArticles item=one_article} {if $config.mod_rewrite} {else} {/if} {/foreach}
    {/if},[order] => 6,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => articles,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[1] => Array ([id] => 22,[title] => Bottom Banners,[contents] => {if isset($bottom_banner)} {foreach from=$bottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_bottom"} {/dynamic} {/foreach} {elseif $add_ads_bottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_bottom"} {/if},[order] => 19,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 30,[title] => eSyndiCat,[contents] => {foreach from=$rss_1 item=one_rss}

    {$one_rss.title}

    {/foreach},[order] => 26,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => rss,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[centerBlocks] => Array ([0] => Array ([id] => 25,[title] => Center Banners,[contents] => {if isset($center_banner)} {foreach from=$center_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_center"} {/dynamic} {/foreach} {elseif $add_ads_center} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_center"} {/if},[order] => 22,[lang] => en,[position] => center,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[leftBlocks] => Array ([0] => Array ([id] => 2,[title] => Sponsored,[contents] => {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=sponsored_listing} {/foreach} {/if},[order] => 1,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 3,[title] => Featured,[contents] => {if isset($featured_listings)} {foreach from=$featured_listings item=featured_listing} {/foreach} {/if},[order] => 2,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[2] => Array ([id] => 14,[title] => New listings,[contents] => {if isset($box_listings.new) && !empty($box_listings.new)} {foreach from=$box_listings.new item=new_listing}

    {$new_listing.title}

    {/foreach} {/if},[order] => 6,[lang] => en,[position] => left,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[3] => Array ([id] => 10,[title] => Latest news,[contents] => {if isset($news) && !empty($news)} {foreach from=$news item=one_news} {if $smarty.const.ESYN_MOD_REWRITE}

    {$one_news.title}

    {else}

    {$one_news.title}

    {/if}
    {$one_news.body|truncate:$config.news_max:"..."}

    {$one_news.date|date_format:$config.date_format}

    {/foreach} {/if},[order] => 7,[lang] => en,[position] => left,[type] => smarty,[plugin] => news,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[4] => Array ([id] => 19,[title] => Left Banners,[contents] => {if isset($left_banner)} {foreach from=$left_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_left"} {/dynamic} {/foreach} {elseif $add_ads_left} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_left"} {/if},[order] => 16,[lang] => en,[position] => left,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 31,[title] => Our Network,[contents] =>

    African Directory

    Africas Directory

    Agricultural Directory

    Automotive Directory

    Building Services Directory

    Business Directory

    Business Directory UK

    Dating Directory

    Design Directory

    Directory of Directories

    Diretory of Directories

    Entrertainment Directory

    Forum Directory

    Gambling Directory

    General Directory

    Lingerie Directory

    Lingerie Directory

    Party Directory

    Shopping Directory

    South African Directory

    Travel Directory

    Zimbabwean Directory

    ,[order] => 17,[lang] => en,[position] => left,[type] => html,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 13,[title] => Newsletter,[contents] =>
    {$lang.realname}:
    {$lang.unsubscribe} {include_file js="plugins/mailer/js/frontend/index"},[order] => 18,[lang] => en,[position] => left,[type] => smarty,[plugin] => mailer,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 12,[title] => Whois Online,[contents] =>
    Automotive Directory bringing you the best in websites about the automobile and automotive industry.
    http://automotive.directoriesltd.com/
    PageRank: 0/10
    (Clicks: 0; Listing added: Aug 14, 2010) Listing Details Report Broken  Listing
    Error: Table 'director_esynd.v2303_tags' doesn't exist
    SELECT * FROM v2303_tags WHERE `id_listing`='7'
    
    

    Debug backtrace:

    #0 esynDatabase->query(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:259] #1 esynDatabase->getAll(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:671] #2 esynDatabase->get(all, *, `id_listing`='7', Array (), 0, ) called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:580] #3 esynDatabase->all(*, `id_listing`='7') called at [/home/director/public_html/esyndicat/plugins/tagcloud/display.php:27] #4 include(/home/director/public_html/esyndicat/plugins/tagcloud/display.php) called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php(63) : eval()'d code:1] #5 eval() called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php:63] #6 smarty_function_esynHooker(Array ([name] => listingDisplayLinksArea), esynSmarty Object ([mHooks] => Array ([bootstrap] => Array ([0] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $esynSmarty->assign('sponsored_listings', $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display'))); } $esynSmarty->assign('featured_listings', $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display'))); $esynSmarty->assign('partner_listings', $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')));,[file] => ,[plugin] => ),[1] => Array ([type] => php,[code] => global $category, $esynSmarty, $eSyndiCat; $eSyndiCat->loadPluginClass("Rss", 'rss', "esyn"); $esynRss = new esynRss(); $rss = $esynRss->getRss(); if (!empty($rss)) { foreach($rss as $value) { $content = esynUtil::getPageContent($value['url']); $esynRss->createParser($content); $rssContent = $esynRss->getRssContent(); $esynRss->clear(); if(count($rssContent) > $value['num']) { $rssContent = array_slice($rssContent, 0, $value['num']); } $esynSmarty->assign("rss_{$value['id']}", $rssContent); } },[file] => ,[plugin] => rss),[2] => Array ([type] => php,[code] => if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $num_total_articles = $eSyndiCat->one("COUNT(*)", "`status` = 'active'"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total_articles', $num_total_articles); $eSyndiCat->setTable("articles"); $latestArticles = $eSyndiCat->all("*", "`status`='active' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('num_new_articles')); $eSyndiCat->resetTable(); $esynSmarty->assign_by_ref('latestArticles', $latestArticles); },[file] => ,[plugin] => articles),[15] => Array ([type] => php,[code] => $eSyndiCat->setTable("listings"); $num_total['pending'] = $eSyndiCat->one("COUNT(*)", "`status` = 'approval'"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("listing_clicks"); $num_total['listing'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("category_clicks"); $num_total['category'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total', $num_total);,[file] => ,[plugin] => extrastats),[19] => Array ([type] => php,[code] => global $esynConfig, $esynSmarty; if ($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,`date`,`alias`, `body`", "`status` = 'active' AND `lang` = '".ESYN_LANGUAGE."' ORDER BY `date` DESC", $values = array(), 0, $esynConfig->getConfig('news_number')); $esynConfig->resetTable(); $esynSmarty->assign('news', $news); },[file] => ,[plugin] => news),[22] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty; $limit = (int)$esynConfig->getConfig('num_best_rated'); if($limit<=0||$limit>30) $limit = 1; $sql = "SELECT w.*, d.*, a.* FROM `".$eSyndiCat->mPrefix."reviews_rate` w, `".$eSyndiCat->mPrefix."listings` a LEFT JOIN `".$eSyndiCat->mPrefix."categories` d ON(d.`id` = a.`category_id`) WHERE a.`id` = w.listing_id ORDER BY w.`rate` DESC, w.last_change DESC LIMIT ".$limit; $reviews = $eSyndiCat->getAll($sql); if(!empty($reviews)) { foreach($reviews as $key=>$val) { $reviews[$key]['rate'] = $val['rate'] = number_format($val['rate'],3); $reviews[$key]['rate_perc'] = $val['rate']*100/5; } } $esynSmarty->assign('best_rated', $reviews); $stars = array(); for($i=1;$i<=5;$i++) { $stars[] = array('id'=>$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i)); } $esynSmarty->assign('stars', $stars);,[file] => ,[plugin] => reviews),[26] => Array ([type] => php,[code] => global $eSyndiCat; $eSyndiCat->setTable("whoisonline"); $total_users = $eSyndiCat->one("COUNT(*) num", "`status` = 'active'"); $register_users = $eSyndiCat->one("COUNT(*) num", "`username` != '' AND `status` = 'active'"); $name_users = $eSyndiCat->all("`username`", "`username` != '' AND `status` = 'active'"); $num_visits_today = $eSyndiCat->one("COUNT(*) num","`date` + INTERVAL 1 DAY > NOW()"); $eSyndiCat->resetTable(); $esynSmarty->assign('total_users', (int)$total_users); $esynSmarty->assign('register_users', (int)$register_users); $esynSmarty->assign('guests_users', (int)$total_users - (int)$register_users); $esynSmarty->assign('name_users', $name_users); $esynSmarty->assign('num_visits_today', (int)$num_visits_today);,[file] => ,[plugin] => whoisonline),[29] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $esynAccountInfo; $eSyndiCat->factory("Listing"); $box_listings['new'] = $esynListing->getLatest(0, $esynConfig->getConfig('num_new_listings'), $esynAccountInfo['id']); $box_listings['random'] = $esynListing->getRandom($esynConfig->getConfig('num_random_listings'), $esynAccountInfo['id']); $box_listings['top'] = $esynListing->getTop(0, $esynConfig->getConfig('num_top_listings'), $esynAccountInfo['id']); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes),[31] => Array ([type] => php,[code] => $sql = "SELECT `pagerank`, COUNT(*) as `val`"; $sql .= "FROM `{$eSyndiCat->mPrefix}listings` "; $sql .= "WHERE `pagerank` != '-1' "; $sql .= "AND `status` = 'active' "; $sql .= "GROUP BY `pagerank`"; $sql .= "ORDER BY `pagerank` DESC"; $pageranks = $eSyndiCat->getAll($sql); $esynSmarty->assign('pageranks', $pageranks);,[file] => ,[plugin] => pageranks),[36] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $listings = $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } $esynSmarty->assign('sponsored_listings', $listings); } } } $listings = $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('featured_listings', $listings); } $listings = $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('partner_listings', $listings); },[file] => ,[plugin] => displayurl)),[adminIndexBeforeDisplay] => Array ([3] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("articles"); $articles['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $articles['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $articles['total'] = $articles['active'] + $articles['approval']; $esynSmarty->assign('articles', $articles);,[file] => ,[plugin] => articles),[20] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("reviews"); $reviews['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $reviews['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $reviews['total'] = $reviews['active'] + $reviews['approval']; $esynSmarty->assign('reviews', $reviews);,[file] => ,[plugin] => reviews)),[adminIndexStats2] => Array ([4] => Array ([type] => smarty,[code] =>
    {$esynI18N.articles}  
    {$esynI18N.approval}: {$articles.approval}
    {$esynI18N.active}: {$articles.active}
    {$esynI18N.total}: {$articles.total}
    ,[file] => ,[plugin] => articles),[21] => Array ([type] => smarty,[code] =>
    {$esynI18N.reviews}  
    {$esynI18N.approval}: {$reviews.approval}
    {$esynI18N.active}: {$reviews.active}
    {$esynI18N.total}: {$reviews.total}
    ,[file] => ,[plugin] => reviews)),[indexBeforeListings] => Array ([5] => Array ([type] => smarty,[code] => {include_file css=$smarty.const.ESYN_URL|cat:"plugins/articles/templates/css/style"} {include file=$smarty.const.ESYN_PLUGINS|cat:"articles/templates/block.tpl"},[file] => ,[plugin] => articles)),[statisticsBlock] => Array ([6] => Array ([type] => smarty,[code] => {if isset($num_total_articles)}
    {$lang.articles}: {$num_total_articles}
    {$lang.pending_approval}: {$num_total.pending}
    {$lang.total_listing_clicks}: {$num_total.listing}
    {$lang.total_category_clicks}: {$num_total.category}
    {$lang.tags}: {$listing.tag}
    {$lang.active_users}: {$total_users}
    {$lang.accounts}: {$register_users}
    {$lang.guests}: {$guests_users}
    {$lang.visits}: {$num_visits_today}
    {foreach name=users from=$name_users item=user} {$user.username}{if !$smarty.foreach.users.last},{/if} {/foreach}
    ,[order] => 20,[lang] => en,[position] => left,[type] => smarty,[plugin] => whoisonline,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[rightBlocks] => Array ([0] => Array ([id] => 6,[title] => Accounts area,[contents] => {if $config.accounts} {if $esynAccountInfo} {$lang.welcome}, {$esynAccountInfo.username}! {else}
    {$lang.username}:
    {$lang.password}:
    {$lang.forgot} {$lang.register}
    {/if} {/if},[order] => 1,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 11,[title] => Best Rated,[contents] => {if !empty($best_rated)} {include_file css="/plugins/reviews/templates/css/reviews"} {foreach from=$best_rated item=review name=reviews}

    {$review.title}

    {$lang.review_rate_name}: {$review.rate} of 5.000 ({$review.rate_count})
     
    {$lang.review_url}: {$review.url}
    {$review.description|truncate:200}

    {/foreach} {/if},[order] => 2,[lang] => en,[position] => right,[type] => smarty,[plugin] => reviews,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 4,[title] => Partner,[contents] => {if isset($partner_listings)} {foreach from=$partner_listings item=partner_listing} {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[3] => Array ([id] => 7,[title] => Actions,[contents] => {if isset($esyndicat_actions) && !empty($esyndicat_actions)}{foreach from=$esyndicat_actions item=action} {assign var="action_key" value="esyndicat_action_"|cat:$action.name} {if $action.name eq 'action_favorite'} {if $esynAccountInfo} {if $esynAccountInfo.id neq $listing.account_id} {assign var="fav_array" value=','|explode:$listing.fav_accounts_set} {if !empty($fav_array) && in_array($esynAccountInfo.id, $fav_array)} {$lang.remove_from_favorites}
    {else} {$lang.add_to_favorites}
    {/if} {/if} {/if} {else} {$lang.$action_key}
    {/if} {/foreach}{/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[4] => Array ([id] => 15,[title] => Random listings,[contents] => {if isset($box_listings.random) && !empty($box_listings.random)} {foreach from=$box_listings.random item=random_listing}

    {$random_listing.title}

    {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 17,[title] => Related listings,[contents] => {if isset($box_listings.related) && !empty($box_listings.related)} {foreach from=$box_listings.related item=related_listing}

    {$related_listing.title}

    {/foreach} {/if},[order] => 14,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 29,[title] => Tags,[contents] => wholesale adult business sites australian health jewellery exporters General Directory Design Directory b2b bling bling Wholesa freebies online strnek dine tilbage Agriculture health zpis lingerie directory blogs internet quality Automotive websites Business Directory link looking

    View all tags
    ,[order] => 16,[lang] => en,[position] => right,[type] => smarty,[plugin] => tagcloud,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 20,[title] => Right Banners,[contents] => {if isset($right_banner)} {foreach from=$right_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_right"} {/dynamic} {/foreach} {elseif $add_ads_right} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_right"} {/if},[order] => 17,[lang] => en,[position] => right,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[8] => Array ([id] => 18,[title] => PageRanks,[contents] => {if isset($pageranks)} {foreach from=$pageranks item=pagerank} {if $pagerank.pagerank > 0} {/if} {/foreach}
    {if $config.mod_rewrite} {print_pagerank pagerank=$pagerank.pagerank} {else} {print_pagerank pagerank=$pagerank.pagerank} {/if} {$pagerank.val}
    {else}

    {$lang.no_pagerank_listings}

    {/if},[order] => 18,[lang] => en,[position] => right,[type] => smarty,[plugin] => pageranks,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topBlocks] => Array ([0] => Array ([id] => 21,[title] => Top Banners,[contents] => {if isset($top_banner)} {foreach from=$top_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_top"} {/dynamic} {/foreach} {elseif $add_ads_top} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_top"} {/if},[order] => 18,[lang] => en,[position] => top,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topbannerBlocks] => Array ([0] => Array ([id] => 28,[title] => Top2 Banners,[contents] => {if isset($topbanner_banner)} {foreach from=$topbanner_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_topbanner"} {/dynamic} {/foreach} {elseif $add_ads_topbanner} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_topbanner"} {/if},[order] => 25,[lang] => en,[position] => topbanner,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user1Blocks] => Array ([0] => Array ([id] => 23,[title] => User1 Banners,[contents] => {if isset($user1_banner)} {foreach from=$user1_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user1"} {/dynamic} {/foreach} {elseif $add_ads_user1} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user1"} {/if},[order] => 20,[lang] => en,[position] => user1,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user2Blocks] => Array ([0] => Array ([id] => 24,[title] => User2 Banners,[contents] => {if isset($user2_banner)} {foreach from=$user2_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user2"} {/dynamic} {/foreach} {elseif $add_ads_user2} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user2"} {/if},[order] => 21,[lang] => en,[position] => user2,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verybottomBlocks] => Array ([0] => Array ([id] => 26,[title] => Very Bottom Banners,[contents] => {if isset($verybottom_banner)} {foreach from=$verybottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verybottom"} {/dynamic} {/foreach} {elseif $add_ads_verybottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verybottom"} {/if},[order] => 23,[lang] => en,[position] => verybottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verytopBlocks] => Array ([0] => Array ([id] => 27,[title] => Very Top Banners,[contents] => {if isset($verytop_banner)} {foreach from=$verytop_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verytop"} {/dynamic} {/foreach} {elseif $add_ads_verytop} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verytop"} {/if},[order] => 24,[lang] => en,[position] => verytop,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[sponsored_listings] => ,[featured_listings] => ,[partner_listings] => ,[rss_1] => Array ([1] => Array ([title] => Error 500.htm,[link] => goto=newpost)),[num_total_articles] => 0,[latestArticles] => ,[num_total] => Array ([pending] => 22,[listing] => 27,[category] => 63),[news] => ,[best_rated] => ,[stars] => Array ([0] => Array ([id] => 1,[name] => I Would Not Recommend),[1] => Array ([id] => 2,[name] => Fair),[2] => Array ([id] => 3,[name] => Good),[3] => Array ([id] => 4,[name] => Very Good),[4] => Array ([id] => 5,[name] => Exceptional)),[total_users] => 17,[register_users] => 0,[guests_users] => 17,[name_users] => ,[num_visits_today] => 77,[box_listings] => Array ([new] => Array ([0] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 54,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.online-businessdirectory.com,[url] => http://www.online-businessdirectory.com,[description] => We offer Premium Business Directory Listings to thousands of businesses in the uk. Free and Paid Listings are available for maximum exposure. ,[email] => info@webxl-international.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2011-03-03 04:56:19,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:39:01,[title] => Online Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://online-businessdirectory.com/feed.php?from=category&id=0,[display_url] => http://,[twitter_username] => OBDirectory,[tag] => business, directory,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 43,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.thefree4u.com,[url] => http://www.thefree4u.com/,[description] => Directory of the free stuff for you,Resource for freebies with over 60 categories,your one stop resource for freebies on the internet,Frequently updated. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:50:35,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:50:35,[title] => TheFree4u,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => freebies,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 42,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:45:26,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:45:26,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 40,[account_id] => 0,[category_id] => 22,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => fishing-in.com,[url] => http://fishing-in.com,[description] => The Fishing Directory is a meeting place for all enthusiasts of the fishing world. We list fishing destinations worldwide for you to visit or learn more about, fishing gear to buy, travel resorts, fishing games, and much more.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-12-04 03:29:06,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:29:06,[title] => The Fishing Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://fishing-in.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Fishing Directory,[path] => fishing-esyndicat-directories,[category_title] => Fishing eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[5] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[6] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[7] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[8] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[10] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[11] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[12] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[13] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[14] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[15] => Array ([id] => 20,[account_id] => 0,[category_id] => 14,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.kom-paa-forsiden.dk,[url] => http://www.kom-paa-forsiden.dk/,[description] => Kom På Forsiden er et seo venligt link katalog, der linker direkte tilbage til din hjemmeside, helt gratis. Så hvis De ønsker at forbedre dine indgående links og blive mere synlig på Internettet, kan du tilføje dine hjemmesider til link kataloget kom på forsiden. Det er ganske gratis at tilføje links hos link kataloget kom på forsiden, og vi forlanger ikke, at du skal linke tilbage til os. :-),[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:34:31,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:34:31,[title] => Tilføj link,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.kom-paa-forsiden.dk/feed.php?id=0,[display_url] => http://,[twitter_username] => ,[tag] => link,tilbage,dine,[path] => international-esyndicat-directories/denmark-esyndicat-directories,[category_title] => Denmark eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[16] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[17] => Array ([id] => 17,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.orchidtgp.com,[url] => http://www.orchidtgp.com,[description] => A adult TGP directory offering a selction of quality adult gallerys in many niche categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:09:52,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:09:52,[title] => Orchid TGP,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[18] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[19] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0)),[random] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[1] => Array ([id] => 8,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultdirectoryreview.com,[url] => http://www.adultdirectoryreview.com/directory/,[description] => If you are looking for quality sex and porn sites then you have come to the right place check out our large selection of easy to navigate categories for what you are looking for.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:09:16,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adult Directory Review,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => looking,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[2] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[3] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[4] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[5] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[6] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[7] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[8] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[10] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[11] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[12] => Array ([id] => 14,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => exclusiveadultblogs.com,[url] => http://exclusiveadultblogs.com/,[description] => A directory listing some of the best exclusive adult sex and porn blogs that can be found on the internet. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:34:41,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:34:41,[title] => Exclusive Adult Blogs,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[13] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[14] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[15] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[16] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[17] => Array ([id] => 11,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsdirectory.eu,[url] => http://www.adultsdirectory.eu,[description] => Adult Directory EU caters for adult and non adult websites. Only quality websites and blogs are listed in this quality link directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:18:38,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adults Directory EU,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,websites,quality,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[18] => Array ([id] => 10,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsbusinessdirectory.com,[url] => http://www.adultsbusinessdirectory.com,[description] => We are your one stop guide to all the great adult businesses that can be found online our categories and links are always increasing so be sure to check back regularly for new listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:14:29,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:14:29,[title] => Adults Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[19] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0)),[top] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 2,[account_id] => 0,[category_id] => 9,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.africasdirectory.com,[url] => http://www.africasdirectory.com/,[description] => This is an African Directory listing sites from all over Africa by country and in a large selection of categories so feel free to search our listings for what you are after.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:35:24,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Africa's Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.africasdirectory.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => African Directory,[path] => international-esyndicat-directories/africa-esyndicat-directories,[category_title] => Africa eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 3,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => icecreamforyoursoul.com,[url] => http://icecreamforyoursoul.com,[description] => A general world wide directory listing quality hand picked websites in a large selection of categories which are also broken down into regions.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 05:08:15,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Ice Cream For Your Soul Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://icecreamforyoursoul.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 4,[account_id] => 0,[category_id] => 10,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.ukdesignernetwork.com,[url] => http://www.ukdesignernetwork.com,[description] => A design directory for all types of design related websites and resources with a large selection of categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-08-14 06:23:02,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Design Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.ukdesignernetwork.com/directory/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => Design Directory,[path] => design-esyndicat-directories,[category_title] => Design eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0))),[pageranks] => Array ([0] => Array ([pagerank] => 4,[val] => 2),[1] => Array ([pagerank] => 3,[val] => 6),[2] => Array ([pagerank] => 2,[val] => 3),[3] => Array ([pagerank] => 1,[val] => 4),[4] => Array ([pagerank] => 0,[val] => 19)),[manageMode] => ,[instead_thumbnail] => ,[sortings] => Array ([0] => alphabetic,[1] => date,[2] => clicks,[3] => rank),[category] => Array ([id] => 5,[account_id] => 0,[parent_id] => 0,[title] => Automotive eSyndiCat Directories,[page_title] => Automotive eSyndiCat Directories,[icon] => ,[description] =>

    Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.

    ,[status] => active,[meta_description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[meta_keywords] => Automotive eSyndiCat Directories,[path] => automotive-esyndicat-directories,[order] => 0,[locked] => 0,[hidden] => 0,[unique_tpl] => 0,[level] => 1,[num_cols] => 0,[num_neighbours] => 0,[num_listings] => 1,[num_all_listings] => 1,[clicks] => 3,[no_follow] => 0,[confirmation] => 0,[confirmation_text] => ),[description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[keywords] => Automotive eSyndiCat Directories,[title] => Automotive eSyndiCat Directories :: eSyndiCat Directories,[header] => Automotive eSyndiCat Directories,[categories] => ,[total_listings] => 1,[listings] => Array ([0] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[url] => http://directoriesbyscript.com/esyndicat/automotive-esyndicat-directories/index{page}.html,[num_listings] => 1,[num_categories] => 0,[view] => all,[confirm_key] => confirm_5,[type] => 2,[listing] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[_smarty_vars] => ,[_sections] => Array ([star] => Array ([name] => star,[loop] => 0,[show] => ,[max] => 0,[step] => 1,[start] => 0,[total] => 0)),[_foreach] => Array ([users] => Array ([total] => 0,[iteration] => 0)),[_tag_stack] => Array (),[_conf_obj] => ,[_config] => Array ([0] => Array ([vars] => Array (),[files] => Array ()),[1] => Array ([vars] => Array (),[files] => Array ()),[2] => Array ([vars] => Array (),[files] => Array ())),[_smarty_md5] => f8d698aea36fcbead2b9d5359ffca76f,[_version] => 2.6.26,[_inclusion_depth] => -27,[_compile_id] => ,[_smarty_debug_id] => SMARTY_DEBUG,[_smarty_debug_info] => Array (),[_cache_info] => Array (),[_file_perms] => 420,[_dir_perms] => 505,[_reg_objects] => Array (),[_plugins] => Array ([modifier] => Array ([cat] => Array ([0] => smarty_modifier_cat,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 5,[3] => 1,[4] => 1),[escape] => Array ([0] => smarty_modifier_escape,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 8,[3] => 1,[4] => 1),[default] => Array ([0] => smarty_modifier_default,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 30,[3] => 1,[4] => 1),[add_url_param] => Array ([0] => smarty_modifier_add_url_param,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 56,[3] => 1,[4] => 1),[truncate] => Array ([0] => smarty_modifier_truncate,[1] => evaluated template,[2] => 8,[3] => 1,[4] => 1),[date_format] => Array ([0] => smarty_modifier_date_format,[1] => evaluated template,[2] => 9,[3] => 1,[4] => 1)),[function] => Array ([convertStr] => Array ([0] => Array ([0] => esynUtil,[1] => convertStr),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[print_listing_url] => Array ([0] => Array ([0] => esynLayout,[1] => printListingUrl),[1] => evaluated template,[2] => 4,[3] => 1,[4] => 1,[5] => ),[print_category_url] => Array ([0] => Array ([0] => esynLayout,[1] => printCategoryUrl),[1] => /home/director/public_html/esyndicat/plugins/articles/templates/block.tpl,[2] => 17,[3] => 1,[4] => 1,[5] => ),[print_account_url] => Array ([0] => Array ([0] => esynLayout,[1] => printAccUrl),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[esynHooker] => Array ([0] => smarty_function_esynHooker,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 21,[3] => 1,[4] => 1),[print_categories] => Array ([0] => smarty_function_print_categories,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 25,[3] => 1,[4] => 1),[navigation] => Array ([0] => smarty_function_navigation,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 39,[3] => 1,[4] => 1),[include_file] => Array ([0] => smarty_function_include_file,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 75,[3] => 1,[4] => 1),[print_img] => Array ([0] => smarty_function_print_img,[1] => header.tpl,[2] => 116,[3] => 1,[4] => 1),[print_pagerank] => Array ([0] => smarty_function_print_pagerank,[1] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[2] => 21,[3] => 1,[4] => 1)),[block] => Array ([dynamic] => Array ([0] => smarty_block_dynamic,[1] => evaluated template,[2] => 3,[3] => 1,[4] => ,[5] => )),[compiler] => Array (),[prefilter] => Array (),[postfilter] => Array (),[outputfilter] => Array ([clearemptyblocks] => Array ([0] => smarty_outputfilter_clearemptyblocks,[1] => ,[2] => ,[3] => 1,[4] => 1)),[resource] => Array (),[insert] => Array ([dynamic] => Array ([0] => insert_dynamic,[1] => /home/director/public_html/esyndicat/templates/common/parse-blocks.tpl,[2] => 12,[3] => 1,[4] => ))),[_cache_serials] => Array ([] => b9535253d329d557cd867660580ab22c),[_cache_include] => ,[_cache_including] => ,[_cache_include_info] => )) called at [/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php:126] #7 include(/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #8 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #9 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php:28] #10 include(/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #11 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #12 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php:76] #13 include(/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1263] #14 Smarty->fetch(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, , 1) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1106] #15 Smarty->display(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, ) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:164] #16 esynSmarty->display(index.tpl, en|5|1|ascending|alphabetic) called at [/home/director/public_html/esyndicat/index.php:375]
    Database query error: Error: Table 'director_esynd.v2303_tags' doesn't existSELECT * FROM v2303_tags WHERE `id_listing`='7' Debug backtrace: #0 esynDatabase->query(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:259] #1 esynDatabase->getAll(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:671] #2 esynDatabase->get(all, *, `id_listing`='7', Array (), 0, ) called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:580] #3 esynDatabase->all(*, `id_listing`='7') called at [/home/director/public_html/esyndicat/plugins/tagcloud/display.php:27] #4 include(/home/director/public_html/esyndicat/plugins/tagcloud/display.php) called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php(63) : eval()'d code:1] #5 eval() called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php:63] #6 smarty_function_esynHooker(Array ([name] => listingDisplayLinksArea), esynSmarty Object ([mHooks] => Array ([bootstrap] => Array ([0] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $esynSmarty->assign('sponsored_listings', $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display'))); } $esynSmarty->assign('featured_listings', $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display'))); $esynSmarty->assign('partner_listings', $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')));,[file] => ,[plugin] => ),[1] => Array ([type] => php,[code] => global $category, $esynSmarty, $eSyndiCat; $eSyndiCat->loadPluginClass("Rss", 'rss', "esyn"); $esynRss = new esynRss(); $rss = $esynRss->getRss(); if (!empty($rss)) { foreach($rss as $value) { $content = esynUtil::getPageContent($value['url']); $esynRss->createParser($content); $rssContent = $esynRss->getRssContent(); $esynRss->clear(); if(count($rssContent) > $value['num']) { $rssContent = array_slice($rssContent, 0, $value['num']); } $esynSmarty->assign("rss_{$value['id']}", $rssContent); } },[file] => ,[plugin] => rss),[2] => Array ([type] => php,[code] => if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $num_total_articles = $eSyndiCat->one("COUNT(*)", "`status` = 'active'"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total_articles', $num_total_articles); $eSyndiCat->setTable("articles"); $latestArticles = $eSyndiCat->all("*", "`status`='active' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('num_new_articles')); $eSyndiCat->resetTable(); $esynSmarty->assign_by_ref('latestArticles', $latestArticles); },[file] => ,[plugin] => articles),[15] => Array ([type] => php,[code] => $eSyndiCat->setTable("listings"); $num_total['pending'] = $eSyndiCat->one("COUNT(*)", "`status` = 'approval'"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("listing_clicks"); $num_total['listing'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("category_clicks"); $num_total['category'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total', $num_total);,[file] => ,[plugin] => extrastats),[19] => Array ([type] => php,[code] => global $esynConfig, $esynSmarty; if ($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,`date`,`alias`, `body`", "`status` = 'active' AND `lang` = '".ESYN_LANGUAGE."' ORDER BY `date` DESC", $values = array(), 0, $esynConfig->getConfig('news_number')); $esynConfig->resetTable(); $esynSmarty->assign('news', $news); },[file] => ,[plugin] => news),[22] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty; $limit = (int)$esynConfig->getConfig('num_best_rated'); if($limit30) $limit = 1; $sql = "SELECT w.*, d.*, a.* FROM `".$eSyndiCat->mPrefix."reviews_rate` w, `".$eSyndiCat->mPrefix."listings` a LEFT JOIN `".$eSyndiCat->mPrefix."categories` d ON(d.`id` = a.`category_id`) WHERE a.`id` = w.listing_id ORDER BY w.`rate` DESC, w.last_change DESC LIMIT ".$limit; $reviews = $eSyndiCat->getAll($sql); if(!empty($reviews)) { foreach($reviews as $key=>$val) { $reviews[$key]['rate'] = $val['rate'] = number_format($val['rate'],3); $reviews[$key]['rate_perc'] = $val['rate']*100/5; } } $esynSmarty->assign('best_rated', $reviews); $stars = array(); for($i=1;$i$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i)); } $esynSmarty->assign('stars', $stars);,[file] => ,[plugin] => reviews),[26] => Array ([type] => php,[code] => global $eSyndiCat; $eSyndiCat->setTable("whoisonline"); $total_users = $eSyndiCat->one("COUNT(*) num", "`status` = 'active'"); $register_users = $eSyndiCat->one("COUNT(*) num", "`username` != '' AND `status` = 'active'"); $name_users = $eSyndiCat->all("`username`", "`username` != '' AND `status` = 'active'"); $num_visits_today = $eSyndiCat->one("COUNT(*) num","`date` + INTERVAL 1 DAY > NOW()"); $eSyndiCat->resetTable(); $esynSmarty->assign('total_users', (int)$total_users); $esynSmarty->assign('register_users', (int)$register_users); $esynSmarty->assign('guests_users', (int)$total_users - (int)$register_users); $esynSmarty->assign('name_users', $name_users); $esynSmarty->assign('num_visits_today', (int)$num_visits_today);,[file] => ,[plugin] => whoisonline),[29] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $esynAccountInfo; $eSyndiCat->factory("Listing"); $box_listings['new'] = $esynListing->getLatest(0, $esynConfig->getConfig('num_new_listings'), $esynAccountInfo['id']); $box_listings['random'] = $esynListing->getRandom($esynConfig->getConfig('num_random_listings'), $esynAccountInfo['id']); $box_listings['top'] = $esynListing->getTop(0, $esynConfig->getConfig('num_top_listings'), $esynAccountInfo['id']); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes),[31] => Array ([type] => php,[code] => $sql = "SELECT `pagerank`, COUNT(*) as `val`"; $sql .= "FROM `{$eSyndiCat->mPrefix}listings` "; $sql .= "WHERE `pagerank` != '-1' "; $sql .= "AND `status` = 'active' "; $sql .= "GROUP BY `pagerank`"; $sql .= "ORDER BY `pagerank` DESC"; $pageranks = $eSyndiCat->getAll($sql); $esynSmarty->assign('pageranks', $pageranks);,[file] => ,[plugin] => pageranks),[36] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $listings = $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } $esynSmarty->assign('sponsored_listings', $listings); } } } $listings = $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('featured_listings', $listings); } $listings = $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('partner_listings', $listings); },[file] => ,[plugin] => displayurl)),[adminIndexBeforeDisplay] => Array ([3] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("articles"); $articles['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $articles['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $articles['total'] = $articles['active'] + $articles['approval']; $esynSmarty->assign('articles', $articles);,[file] => ,[plugin] => articles),[20] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("reviews"); $reviews['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $reviews['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $reviews['total'] = $reviews['active'] + $reviews['approval']; $esynSmarty->assign('reviews', $reviews);,[file] => ,[plugin] => reviews)),[adminIndexStats2] => Array ([4] => Array ([type] => smarty,[code] => {$esynI18N.articles}   {$esynI18N.approval}: {$articles.approval} {$esynI18N.active}: {$articles.active} {$esynI18N.total}: {$articles.total} ,[file] => ,[plugin] => articles),[21] => Array ([type] => smarty,[code] => {$esynI18N.reviews}   {$esynI18N.approval}: {$reviews.approval} {$esynI18N.active}: {$reviews.active} {$esynI18N.total}: {$reviews.total} ,[file] => ,[plugin] => reviews)),[indexBeforeListings] => Array ([5] => Array ([type] => smarty,[code] => {include_file css=$smarty.const.ESYN_URL|cat:"plugins/articles/templates/css/style"} {include file=$smarty.const.ESYN_PLUGINS|cat:"articles/templates/block.tpl"},[file] => ,[plugin] => articles)),[statisticsBlock] => Array ([6] => Array ([type] => smarty,[code] => {if isset($num_total_articles)} {$lang.articles}: {$num_total_articles} {/if},[file] => ,[plugin] => articles),[16] => Array ([type] => smarty,[code] => {if isset($num_total.pending)} {$lang.pending_approval}: {$num_total.pending} {/if} {if isset($num_total.listing)} {$lang.total_listing_clicks}: {$num_total.listing} {/if} {if isset($num_total.category)} {$lang.total_category_clicks}: {$num_total.category} {/if},[file] => ,[plugin] => extrastats)),[GoogleSiteMapGeneratorHandler] => Array ([7] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; // Sitemap part for the article pages. if ($esynConfig->getConfig('article')) { global $feed, $GSM; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`,'active'", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ''.ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'; } else { $feed .= ''.ESYN_URL.'article/index.php?id='.$onearticle['id'].''; } $feed .= ''.$GSM['articlelinks']['changefreq'].''; $feed .= ''.$GSM['articlelinks']['priority'].''."\n"; } } },[file] => ,[plugin] => articles),[17] => Array ([type] => php,[code] => global $esynUtil, $feed, $GSM, $esynConfig; if($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,'active'", "`status` = 'active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr(array('string' => $onenew['title'])); $feed .= ''.ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'; } else { $feed .= ''.ESYN_URL.'controller.php?plugin=news&id='.$onenew['id'].''; } if (isset($GSM)) { $feed .= ''.$GSM['newslinks']['changefreq'].''; $feed .= ''.$GSM['newslinks']['priority'].''."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[YahooGeneratorHandler] => Array ([8] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; if ($esynConfig->getConfig('article')) { global $feed; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'article/index.php?id='.$onearticle['id']."\n"; } } } },[file] => ,[plugin] => articles),[18] => Array ([type] => php,[code] => global $esynConfig, $esynUtil, $feed; if($esynConfig->getConfig('news')) { $esynConfig->setTable('news'); $news = $esynConfig->all("`id`,`title`", "`status`='active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr($onenew['title']); $feed .= ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'controller.php?plugin=news&id='.$onenew['id']."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[beforeBlocksLoad] => Array ([9] => Array ([type] => php,[code] => global $category, $esynConfig, $eSyndiCat, $esynSmarty; if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $articles = $eSyndiCat->all("*", "`status`='active' AND `category_id` = '".$category['id']."' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); $esynSmarty->assign('articles', $articles); $eSyndiCat->setTable("blocks"); $status = (count($articles) > 0) ? 'active' : 'inactive'; $eSyndiCat->update(array('status' => $status), "`plugin` = 'article' AND `title` = 'Latest Articles'"); $eSyndiCat->resetTable(); },[file] => ,[plugin] => articles),[44] => Array ([type] => php,[code] => global $eSyndiCat, $esynSmarty, $esynConfig, $category, $esynAccountInfo; $eSyndiCat->loadPluginClass('Banner', 'banners', 'esyn'); $esynBanner = &new esynBanner(); $paid_positions = $esynBanner->get_blocks(); $temp = false; $bids = array(); $eSyndiCat->setTable('blocks'); $positions = $eSyndiCat->keyvalue('`id`,`position`', "`plugin` = 'banners'"); $eSyndiCat->resetTable(); foreach($positions as $bpos) { $temp = $esynBanner->getBanner($bpos, $category['id'], $esynConfig->getConfig("num_{$bpos}_banners")); if(!empty($temp)) { if(!file_exists(ESYN_PLUGINS."banners".ESYN_DS."templates".ESYN_DS."banner.tpl")) { $bannerError = "This file can not be found in template directory: banner.tpl"; $esynSmarty->assign_by_ref('bannerError', $bannerError); } else { $esynSmarty->assign($bpos.'_banner', $temp); } foreach($temp as $banner) { $bids[] = $banner['id']; } } $add_ads = $paid_positions && esynUtil::ArraySearchRecursive($bpos, $paid_positions) ? $bpos : false; $add_ads = !$esynConfig->getConfig('banner_guests_submit') && !$esynAccountInfo ? false : $add_ads; $esynSmarty->assign('add_ads_'.$bpos, $add_ads); } if(!empty($bids)) { // Just mini optimize :) to avoid IN() if(count($bids) > 1) { $wh = "`id` IN('".implode("','",$bids)."')"; } else { $wh = "`id`='".$bids[0]."'"; } // first parameters expects actual values // while third expects RDBMS functions, variables etc. like NOW(), UNIX_TIMESTAMP() // e.g first params will generate "showed='showed+1'" while third ("showed=showed+1") $esynBanner->query("UPDATE `$esynBanner->mTable` SET `showed` = `showed`+'1' WHERE $wh"); } unset($temp);,[file] => ,[plugin] => banners),[46] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'generate.php');,[file] => ,[plugin] => tagcloud)),[viewListingBeforeFooter] => Array ([10] => Array ([type] => smarty,[code] => {include_file js="plugins/claimlisting/js/frontend/index"},[file] => ,[plugin] => claimlisting),[23] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_PLUGINS|cat:"reviews/templates/reviews.tpl"},[file] => ,[plugin] => reviews),[39] => Array ([type] => smarty,[code] => {if isset($listing.display_url) && $listing.display_url neq 'http://'} {/if},[file] => ,[plugin] => displayurl)),[listingDisplayLinksArea] => Array ([11] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {$lang.claim_this_link} {/if},[file] => ,[plugin] => claimlisting),[52] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[viewListingAfterMainFieldsDisplay] => Array ([12] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {$lang.claim_this_link} {/if},[file] => ,[plugin] => claimlisting),[51] => Array ([type] => smarty,[code] => {$lang.tags}: {$listing.tag} ,[file] => ,[plugin] => tagcloud)),[beforeCloseTag] => Array ([13] => Array ([type] => smarty,[code] => {include_file js="plugins/contacts/js/frontend/contacts"},[file] => ,[plugin] => contacts),[33] => Array ([type] => smarty,[code] => {$config.google_analytics},[file] => ,[plugin] => googletools),[35] => Array ([type] => smarty,[code] => {if isset($listings)} {foreach from=$listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($featured_listings)} {foreach from=$featured_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($partner_listings)} {foreach from=$partner_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {include_file js="plugins/displayurl/js/frontend/display_url"},[file] => ,[plugin] => displayurl),[57] => Array ([type] => smarty,[code] => {literal} $(document).ready(function() { $("#searchTop").click(function() { $("#searchForm").attr("action", intelli.config.esyn_url + 'search.php').submit(); }); $("#SearchGoogle").click(function() { $("#searchForm").append(''); $("#searchForm").append(''); $("#search_input").attr("name", "q"); $("#searchForm").attr("action", "http://www.google.com/search").submit(); }); }); {/literal} var url = intelli.config.esyn_url.replace('http://', '').replace('/', ''); $("#searchTop").after(' '); ,[file] => ,[plugin] => googlesearch)),[tplFrontviewAccountsBeforeFooter] => Array ([14] => Array ([type] => smarty,[code] => {if isset($account)} {/if},[file] => ,[plugin] => contacts)),[viewListing] => Array ([24] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $listing; $limit = $esynConfig->getConfig('reviews_per_page'); $sql = "SELECT r.`title`, r.`body`, r.`status`, r.`date`, if(r.account_id > 0, a.username , r.author) as author "; $sql .= "FROM `{$eSyndiCat->mPrefix}reviews` r "; $sql .= "LEFT JOIN `{$eSyndiCat->mPrefix}accounts` a ON r.`listing_id` = a.`id` "; $sql .= "WHERE r.listing_id = '".$listing['id']."' AND r.`status` = 'active' ORDER BY r.date DESC" .($limit?" LIMIT $limit" : ''); $reviews = $eSyndiCat->getAll($sql); $esynSmarty->assign('reviews', $reviews); $eSyndiCat->setTable("reviews_rate"); $reviews = $eSyndiCat->all("*", "`listing_id` = :id", array('id' => $listing['id'])); $eSyndiCat->resetTable(); $stars = array(); for($i=1;$i$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i),'class'=>($i==1?'class="rate"':'')); } $esynSmarty->assign('stars', $stars); $esynSmarty->assign('rate_count', $reviews[0]['rate_count']); $esynSmarty->assign('rate', number_format($reviews[0]['rate'],3)); $esynSmarty->assign('rate_perc', number_format($reviews[0]['rate'],3)*100/5); $esynSmarty->assign('url', ESYN_URL.'controller.php?plugin=reviews&listing_id='.$listing['id']);,[file] => ,[plugin] => reviews),[40] => Array ([type] => php,[code] => global $listing; if (($listing['display_url'] != "http://") && ($listing['display_url'] != "")) { $listing['real_url'] = $listing['url']; $listing['url'] = $listing['display_url']; },[file] => ,[plugin] => displayurl)),[theVeryStart] => Array ([25] => Array ([type] => php,[code] => global $eSyndiCat; $id_session = session_id(); $date_time = date("Y-m-d H:i:s"); $eSyndiCat->setTable("whoisonline"); $num = $eSyndiCat->one("COUNT(*) num", "`id_session` = '{$id_session}'"); if($num > 0) { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->update(array("date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active'), "`id_session` = '{$id_session}'"); } else { $eSyndiCat->update(array("date" => $date_time, "status" => 'active'), "`id_session` = '{$id_session}'"); } } else { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active')); } else { $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "status" => 'active')); } } $eSyndiCat->update(array("status" => 'expired'), "`date` < NOW() - INTERVAL 20 MINUTE"); $eSyndiCat->delete("`date` < NOW() - INTERVAL 2 DAY"); $eSyndiCat->resetTable();,[file] => ,[plugin] => whoisonline)),[suggestListingDataValidation] => Array ([27] => Array ([type] => php,[code] => global $esynI18N, $error, $msg, $esynConfig; if($esynConfig->getConfig('terms_verification') && !isset($_POST['terms_check'])) { $error = true; $msg[] = $esynI18N['error_terms_verification']; },[file] => ,[plugin] => terms_verification),[32] => Array ([type] => php,[code] => global $listings, $fields, $esynConfig, $esynI18N, $msg, $error; if ($fields && $esynConfig->getConfig('bad_words_checking')) { $bad_words = explode(",",$esynConfig->getConfig('bad_words')); $words = ""; if ($esynConfig->getConfig('checking_type') == "exact") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; $ldescription = strtolower($field_value); $ldescription = ereg_replace("[^A-Za-z0-9]", " ", $ldescription); $ldescription = explode(" "," ".$ldescription); foreach ($bad_words as $word) { if (array_search(strtolower(trim($word)),$ldescription)) { $words[] = $word; } } } } $bad_msg = $esynI18N['exact_bad_words']; } elseif ($esynConfig->getConfig('checking_type') == "stemming") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; foreach ($bad_words as $word) { if (stristr($field_value,trim($word))) { $words[] = $word; } } } } $bad_msg = $esynI18N['stemming_bad_words']; } if(!empty($words)) { $error = true; $msg[] = $bad_msg.": ".implode(', ', $words); } },[file] => ,[plugin] => badwordsfilter),[47] => Array ([type] => php,[code] => global $listing, $esynI18N, $error, $msg; if(!empty($listing['tag'])) { if(!preg_match("/^[\w\s,]+$/i", $listing['tag'])) { $error =true; $msg[] = $esynI18N['tag_incorrect']; } },[file] => ,[plugin] => tagcloud)),[afterSuggestListingFields] => Array ([28] => Array ([type] => smarty,[code] => {if $config.terms_verification} {$lang.field_terms_of_suggesting}: {$config.terms_verification_text} {$lang.field_i_agree} {$lang.field_terms_of_suggesting} {/if},[file] => ,[plugin] => terms_verification)),[viewListingAfterGetListing] => Array ([30] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $listing; global $esynConfig; $eSyndiCat->factory("Listing"); global $esynListing; $box_listings['related'] = $esynListing->getListingsByCategory($listing['category_id'], 0, $esynConfig->getConfig('num_related_listings')); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes)),[headSection] => Array ([34] => Array ([type] => smarty,[code] => {$config.google_verification},[file] => ,[plugin] => googletools),[42] => Array ([type] => smarty,[code] => {include_file css="plugins/twitter/templates/css/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterGetListingList] => Array ([37] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[afterGetSearchResult] => Array ([38] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[viewListingAfterFieldsDisplay] => Array ([41] => Array ([type] => smarty,[code] => {include file="box-header.tpl" caption="Twitter News" style="fixed"} {include file="box-footer.tpl"},[file] => ,[plugin] => twitter),[53] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[footerBeforeIncludeJs] => Array ([43] => Array ([type] => smarty,[code] => {include_file js="plugins/twitter/js/frontend/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterFooterLinks] => Array ([45] => Array ([type] => php,[code] => global $esynConfig; $root = ESYN_URL; $path = $root."plugins".ESYN_DS."banners".ESYN_DS."js".ESYN_DS."banners.js"; echo ""; echo "var root = '{$root}';"; echo ""; echo "";,[file] => ,[plugin] => banners)),[beforeListingAdded] => Array ([48] => Array ([type] => php,[code] => global $listing, $eSyndiCat; if(!empty($listing['tag'])) { $info_table = $eSyndiCat->getAll("SHOW TABLE STATUS like '{$eSyndiCat->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ",",",$listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $eSyndiCat->setTable("dinamic_tags_clouds"); $eSyndiCat->insert($data); $eSyndiCat->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingInsert] => Array ([49] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { $info_table = $esynAdmin->getAll("SHOW TABLE STATUS like '{$esynAdmin->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingUpdate] => Array ([50] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $listing['id']; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[adminDatabaseConsistency] => Array ([54] => Array ([type] => smarty,[code] => {$esynI18N.manage_tag_cloud}: {$esynI18N.manage_tag_cloud|upper} ,[file] => ,[plugin] => tagcloud)),[phpAdminDatabaseConsistencyType] => Array ([55] => Array ([type] => php,[code] => if($_GET['type'] == 'recounttags') { include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'admin'.ESYN_DS.'index.php'); },[file] => ,[plugin] => tagcloud)),[tplAdminDatabaseBeforeFooter] => Array ([56] => Array ([type] => smarty,[code] => {if 'consistency' eq $smarty.get.page} {include file=$smarty.const.ESYN_PLUGINS|cat:"tagcloud"|cat:$smarty.const.ESYN_DS|cat:"admin"|cat:$smarty.const.ESYN_DS|cat:"templates"|cat:$smarty.const.ESYN_DS|cat:"index.tpl"} {include_file js="plugins/tagcloud/js/admin/index"} {/if},[file] => ,[plugin] => tagcloud)),[paymentButtons] => Array ([58] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal),[64] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal)),[afterSuggestListing] => Array ([59] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal),[65] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal)),[plansBeforeSubmitButton] => Array ([60] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal),[66] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal)),[plansAfterViewInclude] => Array ([61] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal),[67] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal)),[plansAfterJsInclude] => Array ([62] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal),[68] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal)),[adminPlanCommonFieldFilled] => Array ([63] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal),[69] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal))),[tmpl] => marangal,[printRegular] => regular-listing-display.tpl,[printSponsored] => sponsored-listing-display.tpl,[printFeatured] => featured-listing-display.tpl,[printPartner] => partner-listing-display.tpl,[template_dir] => /home/director/public_html/esyndicat/templates/marangal/,[compile_dir] => /home/director/public_html/esyndicat/tmp/marangal/,[config_dir] => configs/,[plugins_dir] => Array ([0] => plugins),[debugging] => ,[error_reporting] => ,[debug_tpl] => ,[debugging_ctrl] => NONE,[compile_check] => 1,[force_compile] => ,[caching] => ,[cache_dir] => /home/director/public_html/esyndicat/tmp/smartycache/,[cache_lifetime] => 3600,[cache_modified_check] => 1,[php_handling] => 0,[security] => ,[secure_dir] => Array (),[security_settings] => Array ([PHP_HANDLING] => ,[IF_FUNCS] => Array ([0] => array,[1] => list,[2] => isset,[3] => empty,[4] => count,[5] => sizeof,[6] => in_array,[7] => is_array,[8] => true,[9] => false,[10] => null),[INCLUDE_ANY] => ,[PHP_TAGS] => ,[MODIFIER_FUNCS] => Array ([0] => count),[ALLOW_CONSTANTS] => ,[ALLOW_SUPER_GLOBALS] => 1),[trusted_dir] => Array (),[left_delimiter] => {,[right_delimiter] => },[request_vars_order] => EGPCS,[request_use_auto_globals] => 1,[compile_id] => ,[use_sub_dirs] => ,[default_modifiers] => Array (),[default_resource_type] => file,[cache_handler_func] => ,[autoload_filters] => Array (),[config_overwrite] => 1,[config_booleanize] => 1,[config_read_hidden] => ,[config_fix_newlines] => 1,[default_template_handler_func] => ,[compiler_file] => Smarty_Compiler.class.php,[compiler_class] => Smarty_Compiler,[config_class] => Config_File,[_tpl_vars] => Array ([SCRIPT_NAME] => /esyndicat/automotive-esyndicat-directories/index.php,[config] => Array ([htaccessfile_0] => # Uncomment next line if you get 404 error on accounts page # Options -MultiViews # enable mod_rewrite RewriteEngine on ,[htaccessfile_1] => # SECTION 1 # correct urls for yahoo bot RewriteCond %{REQUEST_URI} !\..+$ RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) %{REQUEST_URI}/ [R=301,L] # mod_rewrite rules for plugins RewriteRule ^mod/(.*)/$ controller.php?plugin=$1 [QSA,L] RewriteRule ^mod/(.*)/(.*)/$ controller.php?plugin=$1&file=$2 [QSA,L] RewriteRule ^mod/(.*)/(.*).html$ controller.php?plugin=$1&file=$2 [QSA,L] # mod_rewrite rules for view account page RewriteRule ^accounts/$ accounts.php [QSA,L] RewriteRule ^accounts/(.*)/$ accounts.php?alpha=$1 [QSA,L] RewriteRule ^accounts/(.*).html$ view-account.php?account=$1 [QSA,L] RewriteRule ^articles/$ controller.php?plugin=articles [QSA,L] RewriteRule ^articles/([a-z]+).html$ controller.php?plugin=articles&file=$1 [QSA,L] RewriteRule ^articles/index([0-9]+).html$ controller.php?plugin=articles&page=$1 [QSA,L] RewriteRule ^articles/(.*)-a([0-9]+).html$ controller.php?plugin=articles&title=$1&id=$2 [QSA,L] #mod_rewrite rules for news plugin RewriteRule ^(.*)-n([0-9]+).html$ controller.php?plugin=news&title=$1&id=$2 [QSA,L] RewriteRule ^news.html$ controller.php?plugin=news [QSA,L] RewriteRule ^news([0-9]+).html$ controller.php?plugin=news&page=$1 [QSA,L] # mod_rewrite rules for tell friend pages RewriteRule ^tell-friend.html$ controller.php?plugin=tell_friend [QSA,L] RewriteRule ^sitemap.xml$ tmp/sitemap/google/sitemap.xml [QSA,L] RewriteRule ^sitemap([0-9]+).xml$ tmp/sitemap/google/sitemap$1.xml [QSA,L] RewriteRule ^sitemap_index.xml$ tmp/sitemap/google/sitemap_index.xml [QSA,L] RewriteRule ^urllist.txt$ tmp/sitemap/urllist.txt [QSA,L] # mod_rewrite rules for tag cloud RewriteRule ^tags/$ controller.php?plugin=tagcloud&view=all [QSA,L] RewriteRule ^tag/([\w\s]+)/$ controller.php?plugin=tagcloud&tag=$1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index.html$ controller.php?plugin=tagcloud&tag=$1&page=1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index([0-9]+).html$ controller.php?plugin=tagcloud&tag=$1&page=$2 [QSA,L] ,[htaccessfile_2] => # SECTION 2 # mod_rewrite rules for ROOT category RewriteRule ^index([0-9]+).html$ index.php?category=0&page=$1 [QSA,L] # mod_rewrite rule for pageranks listing page RewriteRule ^pagerank([0-9]+)-listings.html$ controller.php?plugin=pageranks&pr=$1 [QSA,L] RewriteRule ^pagerank([0-9]+)-listings([0-9]+).html$ controller.php?plugin=pageranks&pr=$1&page=$2 [QSA,L] ,[htaccessfile_3] => # SECTION 3 # mod_rewrite rules for categories pages with HTML path option disable RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L] RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] ,[htaccessfile_4] => # SECTION 4 # mod_rewrite rule for suggest listing page RewriteRule report-listing.php$ report-listing.php [QSA,L] ,[htaccessfile_5] => # SECTION 5 RewriteRule ^([a-z]+)-listings.html$ listings.php?view=$1 [QSA,L] RewriteRule ^([a-z]+)-listings([0-9]+).html$ listings.php?view=$1&page=$2 [QSA,L] ,[htaccessfile_6] => # SECTION 6 # mod_rewrite rules for view listing page RewriteRule ^([^/]+)-l([0-9]+).html$ view-listing.php?cat=&title=$1&id=$2 [QSA,L] RewriteRule ^(.*)/([^/]+)-l([0-9]+).html$ view-listing.php?cat=$1&title=$2&id=$3 [QSA,L] ,[htaccessfile_7] => # SECTION 7 # mod_rewrite rules for additional pages RewriteRule ^p/(.*).html$ page.php?name=$1 [QSA,L] RewriteRule ^p(.*).html$ page.php?name=$1 [QSA,L] ,[htaccessfile_8] => # SECTION 8 # mod_rewrite rules for error pages RewriteRule ^([0-9]+).htm$ error.php?error=$1 [QSA,L] ,[htaccessfile_9] => # SECTION 9 # mod_rewrite rules for suggest category page RewriteRule ^suggest-category-([0-9]+).html$ suggest-category.php?id=$1 [QSA,L] ,[htaccessfile_10] => # SECTION 10 RewriteRule ^LICENSE.htm$ LICENSE.htm [QSA,L] ,[htaccessfile_11] => # SECTION 11 # mod_rewrite rules for categories pages RewriteRule ^(.*)_([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] RewriteRule ^(.*).html?(.*)$ index.php?category=$1&$2 [QSA,L] RewriteRule ^(.*).html$ index.php?category=$1 [QSA,L] ,[htaccessfile_12] => # SECTION 12 ErrorDocument 500 500.htm ErrorDocument 404 404.htm ErrorDocument 403 403.htm ErrorDocument 401 401.htm,[accounts] => 0,[accounts_autoapproval] => 0,[accounts_registered] => 1,[admin_online_expiry_time] => 60,[display_news] => 1,[display_new_plugins] => 1,[check_updates] => 1,[captcha] => 1,[captcha_name] => kcaptcha,[captcha_preview] => ,[captcha_case_sensitive] => 1,[captcha_num_chars] => 5,[suggest_category] => 1,[use_html_path] => 0,[related] => 0,[neighbour] => 0,[show_children_listings] => 0,[categories_order] => title,[num_categories_cols] => 3,[num_listings_display] => 0,[subcats_display] => 0,[categories_tree_type] => tree,[categories_display_type] => horizontal,[categories_icon_width] => 32,[categories_icon_height] => 32,[cron_recip] => 0,[cron_broken] => 0,[cron_pagerank] => 0,[cron_num_listings] => 10,[cron_check_interval] => 1,[cron_report_job] => 0,[cron_report_job_extra] => 0,[cron_report_cycle] => 0,[cron_report_cycle_extra] => 0,[cron_backup] => 0,[cron_backup_archive] => 0,[cron_backup_interval] => 30,[cron_backup_last_time] => ,[sponsored_listings] => 1,[currency_symbol] => $,[sponsored_only] => 0,[num_sponsored_display] => 3,[payment_transactions] => 1,[mcross_functionality] => 0,[mcross_number_links] => 5,[mcross_only_sponsored] => 0,[version] => 2.3.05,[site] => eSyndiCat Directories,[site_logo] => site_logo_388bde6351.png,[site_watermark] => ,[site_watermark_position] => bottom_right,[site_main_content] => This is a source for all those great eSndicate Directories that can found check out our listings right away. To find out more visit their site eSyndiCat and the eSyndiCat Forum. ,[site_description] => This is a source for all those great eSndicate Directories that can found check out our listings right away.,[site_keywords] => eSndicate Directories,[backup] => backup/,[site_email] => directorys1@btinternet.com,[bugs_email] => directorys1@btinternet.com,[tmpl] => marangal,[admin_tmpl] => default,[lang] => en,[charset] => UTF-8,[date_format] => %b %e, %Y,[suffix] => :: Powered by eSyndiCat 2.3,[title_breadcrumb] => 0,[language_switch] => 0,[mod_rewrite] => 1,[lowercase_urls] => 1,[display_frontend] => 1,[underconstruction] => We are sorry. Our site is under construction.,[old_pages_urls] => 0,[esyndicat_news_url] => http://blog.intelliants.com/?view=rss,[esyndicat_new_plugins_url] => http://tools.esyndicat.com/new_plugins.php,[esyndicat_block_positions] => left,right,top,center,bottom,user1,user2,verybottom,verytop,topbanner,[ckeditor_color] => #F00,[esyndicat_menu_type] => inventory,main,bottom,account,[allow_listings_submission] => 1,[auto_approval] => 0,[new_window] => 1,[forward_to_listing_details] => 0,[pagerank] => 1,[thumbshot] => 1,[num_index_listings] => 20,[num_get_listings] => 20,[num_featured_display] => 20,[num_partner_display] => 20,[visitor_sorting] => 1,[listings_sorting] => alphabetic,[listings_sorting_type] => ascending,[num_cats_for_search] => 5,[expiration_period] => ,[expiration_action] => ,[broken_listings_report] => 1,[listing_check] => 0,[broken_visitors] => 1,[http_headers] => 301,302,200,[reciprocal_check] => 0,[reciprocal_required_only_for_free] => 0,[reciprocal_domain] => 1,[reciprocal_text] => http://directoriesbyscript.com/,[recip_featured] => 0,[reciprocal_visitors] => 1,[duplicate_checking] => 0,[duplicate_type] => domain,[duplicate_visitors] => 1,[reciprocal_label] => To validate the reciprocal link please include the following HTML code in the page at the URL specified above, before submitting this form:,[reciprocal_code] => ,[mail_function] => php mail,[mimetype] => html,[sendmail_path] => /usr/bin/sendmail,[smtp_secure_connection] => ,[smtp_server] => ,[smtp_user] => ,[smtp_password] => ,[listing_submit] => 1,[listing_submit_subject] => Listing was submitted to {own_site},[listing_submit_body_html] => Dear Sir/Madam, We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed within 24 hours. After approval and activation, your URL will be listed at: {dir_listing} Now, please add a link to {own_site} to any of your site's pages. Please use the code below: {own_site} OR use the following information TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_submit_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed as soon as possible. After approval and activation, your URL will be listed at: {dir_listing} Now, please add a link to {own_site} to any of your site's pages if you would like to as this is optional. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_approve] => 1,[listing_approve_subject] => Listing was approved in {own_site},[listing_approve_body_html] => Dear Sir/Madam, Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at: {dir_listing} If you have not placed reciprocal listing to {own_site} yet, please add a listing to {own_url} to any of your site's pages. Please use the code below: {own_site} OR use the following information TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_approve_body_plaintext] => Dear Sir/Madam, Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at {dir_listing}. All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[cron] => 1,[listing_disapprove] => 1,[listing_disapprove_subject] => Listing was disapproved in {own_site},[listing_disapprove_body_html] => Dear Sir/Madam, Your listing {your_site_url} has been disapproved in {own_site}. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_disapprove_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been disapproved in {own_site} Listings Directory. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_move] => 1,[listing_move_subject] => Listing was moved in {own_site},[listing_move_body_html] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was moved into another category. This is the new location of your listing: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_move_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was moved into another category. This is the new location of your listing: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_modify] => 1,[listing_modify_subject] => Listing was modified in {own_site},[listing_modify_body_html] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was modified. These are the new attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_modify_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was modified. These are the new attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_reject] => 1,[listing_reject_subject] => Listing was banned in {own_site},[listing_reject_body_html] => Dear Sir/Madam, Your listing to {your_site_url} has been banned in {own_site}. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_reject_body_plaintext] => Dear Sir/Madam, Listing to {your_site_url} in our directory has been banned. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_delete] => 1,[listing_delete_subject] => Listing was deleted from {own_site},[listing_delete_body_html] => Dear Sir/Madam, Your listing {your_site_url} has been deleted from {dir_listing} category, probably because you did not place reciprocal listing(s) to {own_site}. To see your listing again, please add a listing to our site and inform us. {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_delete_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been deleted from {dir_listing} category, To see your listing again, please add a listing to our site and inform us. {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_admin_add] => 1,[listing_admin_add_subject] => Listing was added to {own_site},[listing_admin_add_body_html] => Dear Sir/Madam, We are glad to inform you that a listing to {your_site_url} has been added to {own_site} ({own_dir_url}). These are the attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} You can view your listing here: {dir_listing} Now, please add a listing to {own_site} to any of your site's pages. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_admin_add_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a listing to {your_site_url} has been added to {own_site} Listings Directory ({own_dir_url}). These are the attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here {dir_listing} Now, please add a listing to {own_site} to any of your site's pages. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account] => 1,[register_account_subject] => Thanks for registration at {own_site},[register_account_body_html] => Dear Sir/Madam, Thanks for your registration at {own_site}. Here is information you should use in order to login: Your username: {account_username} Your password: {account_pwd} Your activation key: {key} To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm You may change your password later by editing your personal attributes in your account area. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[register_account_body_plaintext] => Dear Sir/Madam, Thanks for your registration at {own_site}. Here is information you should use in order to login: Your username: {account_username} Your password: {account_pwd} Your activation key: {key} To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm You may change your password later by editing your personal attributes in your account area. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[admin_notif_subject] => Listing was submitted to {own_site},[admin_notif_body_html] => Dear {admin_name}, Listing was submitted to {own_site}. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[admin_notif_body_plaintext] => Dear {admin_name}, Listing was submitted to {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listings_payment_subject] => Listing was made sponsored in {own_site},[listings_payment_body_html] => Dear {admin_name}, Listing was made sponsored in {own_site}. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Plan: {your_site_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listings_payment_body_plaintext] => Dear {admin_name}, Listing was made sponsored in {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Plan: {your_site_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_deleted] => 1,[account_deleted_subject] => Account deleted in {own_site},[account_deleted_body_html] => Dear {username}, Your account was removed from {own_site} Let us know if you have any questions. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_deleted_body_plaintext] => Dear {username}, Your account was removed from {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[password_change_subject] => Password change request at {own_site},[password_change_body_html] => Dear {username}, You requested a password change in {own_site}. Now you should use the following credentials to log in as account: username: {username} password: {password} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[password_change_body_plaintext] => Dear {username}, You requested a password change in {own_site}. Now you should use the following credentials to log in as account: username: {username} password: {password} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_approved] => 1,[account_approved_subject] => Account was approved at {own_site},[account_approved_body_html] => Dear {username}, Your account was approved in {own_site}. Now you can log in to the directory. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_approved_body_plaintext] => Dear {username}, Your account was approved in {own_site}. Now you can log in to the directory. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_disapproved] => 1,[account_disapproved_subject] => Account was disapproved at {own_site},[account_disapproved_body_html] => Dear {username}, Your account was disapproved in {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_disapproved_body_plaintext] => Dear {username}, Your account was disapproved in {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[payment_expiration] => 1,[payment_expiration_subject] => Payment is about to expire at {own_site},[payment_expiration_body_html] => Dear {username}, Hi, Your listing {your_site_title} will be expired in {days}. You can click here to extend the sponsorship: {upgrade_url} {action_expire} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[payment_expiration_body_plaintext] => Hi, Your listing - {your_site_title} - will be expired in {days}. You can click here to extend the sponsorship: {upgrade_url} {action_expire} Thanks in advance. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[broken_listing_report_subject] => Broken Listing Reported at {own_site},[broken_listing_report_body_html] => Dear {admin_name}, The following listing is reported as being broken: Listing ID: {id} Listing URL: {url} Listing Title: {title} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[broken_listing_report_body_plaintext] => Dear {admin_name}, The following listing is reported as being broken: Listing ID: {id} Listing URL: {url} Listing Title: {title} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[article] => 1,[article_number] => 20,[article_order] => date,[articles_registered] => 0,[article_auto_approval] => 0,[article_summary_max_chars] => 300,[article_allow_html] => 1,[num_new_articles] => 5,[contact_us_subject] => Contact us page ({subject}),[contact_us_body_plaintext] => Dear {admin_name}, You got contact requests with subject: {subject}, in {own_site} Directory. Please check it. Fullname: {fullname} Email address: {email} Reason: {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[contact_us_body_html] => Dear {admin_name}, You got contact requests with subject: {subject}, in {own_site} Directory. Please check it. Fullname: {fullname} Email address: {email} Reason: {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[news] => 1,[news_number] => 3,[news_max] => 200,[news_order] => date,[reviews_title] => 1,[review_accounts_only] => 0,[review_approval] => 0,[title_max_chars] => 150,[reviews_min_chars] => 10,[reviews_max_chars] => 1000,[reviews_per_page] => 5,[num_best_rated] => 5,[reviews_opt1] => I Would Not Recommend,[reviews_opt2] => Fair,[reviews_opt3] => Good,[reviews_opt4] => Very Good,[reviews_opt5] => Exceptional,[terms_verification] => 1,[terms_verification_text] => Only eSyndiCat directories will be accepted.,[tell_friend_subject] => {name} recommends eSyndiCat Directory,[tell_friend_body_plaintext] => Dear {friends_name}, The following website was recommended to you by {name}: {url} {message} _____________________eSyndiCat Directory,[tell_friend_body_html] => Dear {friends_name}, The following website was recommended to you by {name}: {url} {message} _____________________eSyndiCat Directory,[newsletter_confirm_subject] => Thanks for subscribing at {own_site},[newsletter_confirm_body_plain] => Greetings {realname},\r\n\r\n thanks for requesting the {own_site} newsletter.\r\n\r\n Before we begin sending it, we want to make sure we\r\n have your permission.\r\n\r\n Below are the confirmation instructions.\r\n\r\n -----------------------------------------------------------\r\n CONFIRM BY VISITING THE LINK BELOW:\r\n\r\n To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key}\r\n\r\n Click the link above to give us permission to send you\r\n information. It''s fast and easy! If you cannot click the\r\n full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to subscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_confirm_body_html] => Greetings {realname}, thanks for requesting the {own_site} newsletter. Before we begin sending it, we want to make sure we have your permission. Below are the confirmation instructions. ----------------------------------------------------------- CONFIRM BY VISITING THE LINK BELOW: To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key} Click the link above to give us permission to send you information. It''s fast and easy! If you cannot click the full URL above, please copy and paste it into your web browser. If you do not want to subscribe, simply ignore this message. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[newsletter_unsubscribe_subject] => Thanks for unsubscribing at {own_site},[newsletter_unsubscribe_body_plain] => Greetings {realname},\r\n\r\n To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key}\r\n\r\n If you cannot click the full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to unsubscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_unsubscribe_body_html] => Greetings {realname}, To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key} If you cannot click the full URL above, please copy and paste it into your web browser. If you do not want to unsubscribe, simply ignore this message. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[newsletter_autoapproval] => 1,[num_new_listings] => 20,[num_random_listings] => 20,[num_top_listings] => 5,[num_related_listings] => 5,[recaptcha_publickey] => ,[recaptcha_privatekey] => ,[bad_words_checking] => 1,[checking_type] => exact,[bad_words] => ,[google_analytics] => ,[google_verification] => ,[num_verytop_banners] => 1,[num_verybottom_banners] => 1,[num_center_banners] => 1,[num_topbanner_banners] => 1,[num_left_banners] => 1,[num_right_banners] => 1,[num_top_banners] => 1,[num_bottom_banners] => 1,[num_user1_banners] => 1,[num_user2_banners] => 1,[banner_guests_submit] => 1,[banner_prefix] => banner_,[banners_payment] => 1,[banners_payment_subject] => Banner was submitted to {own_site},[banners_payment_body_plaintext] => Dear {admin_name}, Banner was submitted to {own_site} Directory. Please check it. These are the attributes of a banner: Title: {item_title} URL: {item_url} Email: {item_email} Banner Plan: {item_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[banners_payment_body_html] => Dear {admin_name}, Banner was submitted to {own_site} Directory. Please check it. These are the attributes of a banner: Title: {item_title} URL: {item_url} Email: {item_email} Banner Plan: {item_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[tags_count] => 30,[tag_period_update] => 24,[tag_count_for_recount] => 30,[tag_clouds_last_modified] => 1337388916,[paypal_currency_code] => USD,[paypal_email] => ,[paypal_demo] => 0,[paypal_secret_word] => c680989de9cf61d0330b3bd18543eb14,[display_twitter] => 1,[config_keys] => recaptcha_publickey,recaptcha_privatekey,sendmail_path,smtp_secure_connection,smtp_server,smtp_user,smtp_password,[default_categories_icon] => templates/common/img/category_icons/category_icon.gif,[smtp_port] => 25,[account_register] => 1,[account_register_subject] => Account was registered to {own_site},[account_register_body_html] => Dear {admin_name}, Account was registered to {own_site}. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_register_body_plaintext] => Dear {admin_name}, Account was registered to {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirmed] => 1,[account_confirmed_subject] => Account was confirmed in {own_site},[account_confirmed_body_html] => Dear {admin_name}, Account was confirmed in {own_site}. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} Status: {account_status} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirmed_body_plaintext] => Dear {admin_name}, Account was confirmed in {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} Status: {account_status} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin] => 1,[register_account_admin_subject] => Thanks for registration at {own_site},[register_account_admin_body_plaintext] => Dear Sir/Madam, Your website {your_site_url} has been added to {own_site}. This is the information we have added: Title: {your_site_title} Description: {your_site_desc} URL: {your_site_url} Email: {your_site_email} You can find your listing at {dir_listing} If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information Your username: {account_username} Your password: {account_pwd} Login page: {own_site}/login.php ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin_body_html] => Dear Sir/Madam, Your website {your_site_url} has been added to {own_site} This is the information we have added: Title: {your_site_title} Description: {your_site_desc} URL: {your_site_url} Email: {your_site_email} You can find your listing at {dir_listing} If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information: Your username: {account_username} Your password: {account_pwd} Login page: {own_site}login.php ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[suggest_category_subject] => Category was submitted to {own_site},[suggest_category_body_html] => Dear {admin_name}, Category was submitted to {own_site}. Please check it. These are the attributes of a category: Title: {cat_title} Category path: {cat_path} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[suggest_category_body_plaintext] => Dear {admin_name}, Category was submitted to {own_site} Directory. Please check it. These are the attributes of a category: Title: {cat_title} Category path: {cat_path} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email] => 1,[account_confirm_email_subject] => Confirm email in {own_site},[account_confirm_email_body_plaintext] => Dear {username}, We have received new password request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=restore_password&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email_body_html] => Dear {username}, We have received new password request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_dir_url}confirm.php?action=restore_password&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_change_email] => 1,[account_change_email_subject] => Confirm change email in {own_site},[account_change_email_body_plaintext] => Dear {username}, We have received change email request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=change_email&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_change_email_body_html] => Dear {username}, We have received change email request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_dir_url}confirm.php?action=change_email&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[esyn_url] => http://directoriesbyscript.com/esyndicat/),[esynAccountInfo] => ,[lang] => Array ([login] => Login,[interface_language] => Interface Language,[password] => Password,[forgot_password] => Forgot your password?,[login_btn] => Login,[invalid_username] => Invalid username.,[invalid_password] => Invalid password.,[changes_saved] => Changes saved,[items_deleted] => Deleted.,[save_changes] => Save Changes,[home] => Home,[help] => Help,[error_name] => The name is empty,[plan_added] => Plan added.,[edit] => Edit,[delete] => Delete,[field_url] => Listing URL,[field_title] => Title,[field_description] => Description,[field_email] => Email,[field_reciprocal] => Reciprocal URL,[order] => Order,[description] => Description,[title] => Title,[add] => Add,[view_all] => View All,[search] => Search,[logout] => Logout,[date] => Date,[status] => Status,[go] => Go,[_select_] => -- select --,[reply] => Reply,[email_sent] => Email Sent,[body] => Body,[from] => From,[body_incorrect] => Body is incorrect.,[to] => To,[subject] => Subject,[author] => Author,[email] => Email,[categories] => Categories,[listings] => Listings,[sponsored] => Sponsored,[featured] => Featured,[partner] => Partner,[total] => Reviews total,[reciprocal] => Reciprocal,[comments] => Comments,[accounts] => Accounts,[move] => Move,[password_incorrect] => Password is incorrect.,[passwords_not_match] => Passwords do not match.,[account_added] => Account added.,[account] => Account,[browse_categories] => Browse Categories,[create] => Create,[browse] => Browse,[category] => Category,[listing] => Listing,[expand_all] => Expand All,[collapse_all] => Collapse All,[done] => Done,[all_categories] => All Categories,[all_listings] => All Listings,[title_incorrect] => Title incorrect.,[plan_assigned] => Sponsored plan assigned.,[meta_description] => Meta-description,[meta_keywords] => Meta-keywords,[yes] => Yes,[no] => No,[comment] => Comment,[partner_since] => Partner Since,[clicks] => Clicks,[rating] => Rating,[featured_since] => Featured Since,[ban] => Ban,[deleted] => Deleted.,[send] => Send,[disable] => Disable,[myfield] => myfield,[pagerank] => PageRank,[some] => some,[unknown_upload] => Unknown error during file upload.,[incorrect_filetype] => Incorrect file type.,[upload_correct_permission] => Couldn't copy uploaded image to the destination. Please make sure that the script has write permission.,[view] => View,[additional_fields] => Additional Fields,[rank] => Rank,[incorrect_email] => Please input correct email.,[username] => Username,[fullname] => Full Name,[payment_notif] => Payment Notification,[password_confirm] => Password Confirmation,[enabled] => Enabled,[disabled] => Disabled,[no_comments] => No Comments.,[page] => Page,[pages] => Pages,[page_content_sample] => Your page content should be here...,[url] => URL,[suggest_listing] => Suggest Listing,[listing_details] => Listing Details,[image_width] => Image Width,[remove] => Remove,[of] => of,[first_page] => First Page,[previous_page] => Previous Page,[next_page] => Next Page,[last_page] => Last Page,[no_listings] => No listings yet created. Click here to add new one.,[any_word] => any word,[all_words] => all words,[exact_match] => exact match,[language] => Language,[default] => Default,[set_default] => Set Default,[download] => Download,[about] => About Us,[account_created] => Account created! Thank you!,[advanced_search] => Advanced Search,[advertise] => Advertise Us,[approval_listings] => Waiting Approval,[ascending] => ascending,[author_email] => Author Email,[category_title] => Category title,[category_submitted] => Category was submitted for consideration!,[change_password] => Change Password,[characters_left] => characters left,[click_here] => Click here,[comment_added] => Comment added.,[comment_author] => Comment Author,[comment_rank] => Listing Rank: ,[company_info] => Company Info,[company_jobs] => Company Jobs,[company_policy] => Company Policy,[company_terms] => Terms Of Service,[complete_submission] => Complete submission,[confirmation_sent] => Confirmation for password change request sent.,[current_password] => Current Password,[description_empty] => Description is empty!,[descending] => descending,[edit_account] => Edit Account,[edit_info] => Edit Info,[edit_listing] => Edit Listing,[account_email_exists] => Account with this email already exists!,[account_listings] => My listings,[account_login] => Account Login,[account_no_listings] => You have not submitted any listings. Please choose correct category and make sure it fits your listing best. Then click SUGGEST LISTING, input requested information and submit it. Usually it takes about 24 hours for a listing to be reviewed by administrator.,[accounts_area] => Accounts Area,[error] => Error,[featured_listings] => Featured,[first] => First,[free] => Free,[friend_fullname] => Your friend's fullname,[friend_told] => Message has just been sent to your friend.,[forgot] => Forgot password?,[last] => Last,[leave_comment] => Leave Comment,[listing_added] => Listing added,[listing_changed] => Listing changed,[listing_rank] => Listing Rank,[listing_status] => Listing Status,[listing_submitted] => Thank you! Your listing was submitted for consideration,[listings_found] => Listings Found: ,[logged_out] => You have been logged out.,[my_categories] => My Categories,[my_listings] => My listings,[new_listings] => New listings,[new_password] => New Password,[new_password2] => New Password[confirm],[new_password_sent] => New password has just been sent to account email!,[neighbour_categories] => Neighbour Categories,[next] => Next,[no_results] => No results,[non_sponsored] => Non sponsored link,[not_found_listings] => No listings found. Please try to broaden your search criterias!,[not_available] => Not available,[no_approval_listings] => No listings waiting for approval in your categories,[not_rated] => This listing is not rated yet. Be the first who rates it!,[partner_listings] => Partner listings,[policy] => Privacy Policy,[previous] => Previous,[purchase] => purchase,[reason] => Reason,[related_categories] => Related Categories,[restore_password] => Restore password,[statistics] => Statistics,[sponsored_listings] => Sponsored,[sponsored_plan] => Sponsored Plan,[sponsored_plans] => Sponsored Plans,[submit] => Submit,[submission] => Submission,[suggest_category_top1] => You are going to suggest category here:,[suggest_listing_top1] => You are going to suggest your listing to the following category:,[suggest_listing_top2] => Please make sure your listing fits this category.,[purchase_successful] => Thank you. We received your payment.,[password_changed] => Password has been successfully changed.,[passwords_dont_match] => Passwords you entered do not match.,[password_empty] => You have not entered a new password.,[popular_listings] => Popular listings,[posted] => posted on ,[rate_listing] => Rate Listing,[report_broken_listing] => Report Broken Listing,[rating_num] => Number of Ratings:,[reciprocal_empty] => Reciprocal link is empty!,[register] => Register,[register_account] => Do not have an account?,[submission_confirmation] => Please verify if submitted information is correct.,[upgrade_listing] => Upgrade Listing,[url_empty] => url is empty!,[username_empty] => Make sure you entered valid username or your account is active.,[terms] => Terms of Use,[title_empty] => Title is empty!,[thanks] => Thank you.,[thank_text] => to get back to index page.,[thanks_for_vote] => Thanks for vote.,[top_listings] => Top listings,[total_num_categories] => Number of categories:,[total_num_listings] => Number of listings:,[transaction_failed] => Transaction failed! Please contact us!,[transaction_failed2] => Stop trying hack our site! Your ip is has been tracked!,[transaction_success_title] => Transaction successful!,[transaction_success] => Transaction successful! You will be sent an email within 24 hours!,[view_amazon] => View Amazon Info,[view_listing] => View Listing,[view_my_listings] => View My listings,[view_my_categories] => Categories To Edit,[your_email] => Your email,[your_listing_category] => Your listing category,[your_listing_url] => Your listing URL,[your_listing_title] => Your listing title,[your_listing_description] => Your listing description,[your_listing_reciprocal] => Listing reciprocal URL,[your_message] => Your message here,[your_password] => Your password,[your_password_confirm] => Confirm your password,[your_username] => Your username,[your_username_here] => Your username here:,[welcome] => Welcome,[choose_plan] => Choose a Plan,[change_plan] => Change plan,[wrong_image_type] => Only following image types are allowed ({types}) for `{name}` field,[sort_listings_by] => Sort listings by: ,[alphabetic] => Alphabetic,[error_already_voted] => You've already voted. Please try later.,[error_banned] => Listing was banned. Please do not try to add it again.,[error_broken_listing] => Listing seems to be broken. Please check it manually.,[error_captcha] => Make sure you entered valid captcha code.,[error_category_empty] => Please go into appropriate category and become account there.,[error_category_exists] => Category was already suggested before.,[error_category_locked] => This category is locked by administrator.,[error_contact_fullname] => Please fill in full name.,[error_directory_readonly] => Uploads directory is readonly. Please make it writable.,[error_email_incorrect] => Make sure you entered valid email.,[error_sponsored] => You should choose sponsored plan. Only sponsored listings are accepted.,[error_listing_present] => Your listing already exists in directory.,[error_file_upload] => Unknown error during file upload.,[error_max_description] => Your description length should be less than {num} symbols.,[error_min_description] => Your description length should be more than {num} symbols.,[error_comment] => Make sure you entered valid comment.,[error_comment_author] => Make sure you entered valid comment author.,[error_comment_email] => Make sure you entered valid author email.,[error_max_comment] => Your comment length should be less than {maxLength} symbols.,[error_min_comment] => Your comment length should be more than {minLength} symbols.,[error_no_account_email] => No accounts registered with this email.,[error_root_category] => You can not suggest in root category. Please choose an appropiate category and try again.,[error_suggest_logged] => You should be logged in to suggest listings.,[error_password_empty] => Please input correct password.,[error_password_match] => Passwords do not match.,[error_reciprocal_listing] => Please input correct reciprocal link.,[error_reciprocal_domain] => Please make sure you use a backlink from your domain.,[error_username_empty] => Please input correct username.,[error_username_exists] => Username already taken. Please input different username.,[error_account_incorrect] => Please fill in username.,[error_accountpsw_incorrect] => Please fill in password.,[200] => URL located, content follows (200),[301] => Object moved permanently (301),[302] => Object moved (302),[304] => Not modified (304),[400] => Bad request (400),[401] => Unauthorized(401),[403] => Forbidden (403),[404] => Requested URL not found (404),[500] => Unknown server error (500),[503] => Server capacity reached (503),[666] => Error occurred while paid listing submission. Please try to sugget a listing again.,[667] => Incorrect listing id during payment processing.,[668] => Incorrect plan id during payment processing.,[669] => You used demo transaction. Please stop cheating.,[670] => Accounts functionality disabled by administrator.,[671] => Permission denied. You don't have enough permission to modify that listing.,[672] => Suggest category functionality disabled by administrator.,[673] => Your IP-address was banned by administrator,[cancel] => Cancel,[click_here_to_edit] => Click here to edit.,[reset] => Reset,[key] => Key,[value] => Value,[filename] => Filename,[all_languages] => All Languages,[search_in] => Search in,[search_for_text] => Search for Text,[save] => Save,[no_backlink] => No backlink,[position] => Position,[other] => Other,[copy] => Copy,[field_is_empty] => "{field}" is empty.,[no_sponsored_plans] => No sponsored plans created.,[broken_report_sent] => A report has been sent to the site administrator.,[report] => Report,[close] => Close,[report_as_broken] => Report the link {lurl} as being broken.,[do_you_want_report_broken] => Do you want to report broken listing?,[ascii_required] => Only alphanumeric ASCII characters are allowed,[1] => Not available,[expire] => Expire,[vote] => Vote,[payment_done] => Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. Once the administrator approves your listing it will appear as sponsored in our listings.,[oops] => Oops!,[payment_canceled] => Since you canceled the payment your listing will not appear as sponsored.,[folder_incorrect_permissions] => Sorry, you have not set necessary permissions. Please set writable permissions for the following directory {name},[expire_date] => Expire date,[random_listings] => Random listings,[total_votes] => Total {num} votes,[suggest_category] => Suggest Category,[parent_category] => Parent category,[searchable] => Searchable,[file_types] => Allowed file types (comma separated values (don't include point), example: pdf, doc, odf, mov),[section] => Search section,[sections] => Search sections,[contains] => Contains,[where] => Where,[search_match] => Match,[relevance] => Relevance,[perpage] => Per page,[output_settings] => Output settings,[deep_links] => Deep links,[start_search] => Start search,[confirmation] => Confirmation,[na] => n/a,[loading] => Loading ...,[change] => change,[listing_category] => Listing category,[error_login] => Either login or password is invalid,[user_default] => User default,[exit] => Exit,[youre_in_manage_mode] => You're in manage mode,[code] => Code,[quick_links] => Quick links,[add_as_crossed_to_other_categories] => Add also to other categories as crossed,[suspend] => Suspend,[wrong_file_extension] => Wrong file extension for {field} field. Please use one of the following extensions {allowed},[go_back] => Go back,[ok] => Ok,[crossed_to] => Crossed to,[move_listing] => Move listing,[listing_returned] => Listing was returned back!,[listing_move_confirmation] => You are going to move listing to another category, please be sure you want do this. If listing has active status it will be disapproved.,[listing_fin_move_confirmation] => Are you sure you want to move this listing?,[rate_this] => Rate this {rate},[apply] => Apply,[favorites_added] => The Listing has been added to favorites.,[view_my_favorites] => View My favorites,[remove_from_favorites] => Remove from favorites,[favorites_removed] => The Listing has been removed from favorites.,[add_to_favorites] => Add To Favorites,[my_favorite_listings] => My favorite listings,[slogan] => For the besteSyndiCat directories!,[comment_approval] => Your comment is waiting for approval.,[error_url] => Please check the URL.,[vote_cast] => vote cast,[vote_casts] => vote casts,[search_criterias] => Search Criterias,[listings_legend] => listings waiting for administrator approval,[add_favorite] => Do you want to add the listing to favorites?,[remove_favorite] => Do you want to remove the listing from favorites?,[mcross_warning] => You can not cross one more link,[cross_warning] => You can not cross listing into main category,[page_title_index] => Home,[page_title_search] => Search,[page_title_new_listings] => New Listings,[page_title_top_listings] => Top Listings,[page_title_popular_listings] => Popular Listings,[page_title_random_listings] => Random Listings,[page_title_suggest_listing] => Suggest Listing,[page_title_suggest_category] => Suggest Category,[page_title_edit_account] => Edit Account,[page_title_favorites_listings] => Favorites,[page_title_account_listings] => My Listings,[page_title_about] => About Us,[page_title_terms] => Terms of Use,[page_title_help] => Help,[page_title_policy] => Privacy Policy,[page_title_advertise] => Advertise Us,[listings_submission_disabled] => Listings submission is disabled by adminstrator.,[error_email] => The email is not valid,[thankyou_tail] => Please read our letter with further instructions.,[thankyou_head] => Below is the information you submitted so far. You will be able to extend and edit this information via your member account.IMPORTANT! Your account password has been sent to the following email address:,[reg_confirmed] => Account confirmed. Please sign in.,[reg_confirm_err] => Error. You key not found.,[reg_confirmation] => Registration Confirmation,[confirm] => Confirm,[error_javascript] => You have to enable JavaScript in your browser.,[redraw_captcha] => Click on image to redraw.,[text_captcha] => Please input letters you see on the image.,[favorites_listings] => Favorite Listings,[error_min_textarea] => Your {field} length should be more than {num} symbols.,[error_max_textarea] => Your {field} length should be less than {num} symbols.,[characters_count] => Characters count,[plans] => Plans,[payment_gateway] => Payment gateways,[captcha] => Captcha,[fields] => Fields,[reg_confirmed_pending] => Account confirmed. Your account is still pending approval by the administrator.,[rememberme] => Remember Me,[error_username_incorrect] => Make sure you entered valid username.,[unconfirmed] => Unconfirmed,[auto_generate_password] => Auto generate password,[or] => OR,[and] => AND,[page_content_about] => About Us page content,[page_content_policy] => Privacy Policy page content,[page_content_terms] => Terms Of Use page content,[page_content_help] => Help page content,[page_content_advertise] => Advertise Us page content,[newly_added_listings] => Newly added listings,[most_popular_listings] => Most popular listings,[rss_feed] => RSS feed,[esyndicat_action_add_favorite] => Add Favorite,[esyndicat_action_remove_favorite] => Remove Favorite,[esyndicat_action_report_listing] => Report Listing,[esyndicat_action_visit_website] => Visit Website,[xml_syndication] => XML syndication,[enter_confirmation] => Please enter confirmation code below,[unknown] => Unknown,[confirm_not_valid] => Confirmations data is not valid. Please recheck the confirm link.,[check_listing_fields] => Please recheck your information.,[error_contents] => Contents field is a required.,[new] => New,[date_registration ] => Date Registration,[view_account_details] => View account details,[no_accounts] => There is no any accounts.,[no_account_listings] => Account does not have any listings yet.,[page_title_accounts] => Accounts,[page_title_account_login] => Account Login,[page_title_payment_complete] => Payment Complete,[page_title_account_register] => Account Register,[page_title_edit_listing] => Edit Listing,[page_title_account_logout] => Account Logout,[page_title_thank] => Thank,[page_title_account_password_forgot] => Account Password Forgot,[page_title_error] => Error,[page_title_payment_canceled] => Payment Canceled,[page_title_purchase_complete] => Purchase Complete,[page_title_view_listing] => View Listing,[page_title_report_broken_listing] => Report Broken Listing,[no_more_files] => You can not upload more files. Limit exceeded.,[page_title_index_browse] => Browse Categories,[youre_in_preview_mode] => You are in template preview mode.,[field_rss_feed] => RSS Feed,[article] => Article,[articles] => Articles,[account_articles] => My Articles,[no_article] => No articles created.,[view_article] => View Article,[view_all_article] => View All Articles,[suggest_article] => Suggest Article,[article_title] => Title of Article,[article_description] => Short Description,[article_text] => Article Text,[article_tags] => Article Tags,[login_to_article] => Please login to suggest an article,[article_submission_disabled] => Article Submission has been disabled, Please try again later,[owner_name] => Name,[owner_email] => Email,[owner_domain] => URL,[article_submitted] => Your Article has been submitted for approval.,[error_title] => Title is a required field.,[error_description] => Description is a required field.,[error_body] => Body is a required field.,[error_date_added] => Please check the Date Added.,[error_tags] => Tags is a required field.,[article_date_added] => Date Added,[article_date_modified] => Date Modified,[error_email_required] => Email is a required field. (will be hidden),[article_by] => By,[article_category] => Category,[page_title_article] => Articles,[page_title_suggest_article] => Add Article,[page_title_account_articles] => My Articles,[esyndicat_action_claim-listing] => Claim Listing,[validate_listing_owner] => Validate Listing Owner,[error_claim_code] => Error. Your code is not found.,[claim_this_link] => Claim Listing,[meta_validation] => Meta Validation Method,[file_validation] => File Validation Method,[claim_text] => To edit your listing you should add the following code to {url} as it's shown below: ,[claim_text2] => Create a text file called {domain}.txt containing: {owner_code} Upload it to {url} The full address is {url}/{domain}.txt. This file can be removed after verification.,[your] => Your,[full_name] => Full name,[get_back_to] => to get back to listing detail page.,[error_contact_body] => Please fill in contact reason.,[error_contact_subject] => Please fill in contact subject.,[contact_us] => Contact us,[contact_added] => Contact added.,[contact] => Contact,[contacts] => Contacts,[page_title_contacts] => Contact us,[esyndicat_action_contact_member] => Contact,[contact_account] => Contact account,[contact_listing_owner] => Contact listing owner,[page_title_contact_us] => Contact Us,[page_title_contact_member] => Contact Member,[page_title_contact_listing] => Contact Listing Owner,[pending_approval] => Pending Approval,[total_listing_clicks] => Total Listing Clicks,[total_category_clicks] => Total Category Clicks,[news] => News,[view_news] => View News,[view_all_news] => View all news,[no_news] => There is no any news.,[page_title_news] => News,[reviews] => Reviews,[manage_reviews] => Manage reviews,[edit_review] => Edit review,[review_author] => Author,[review_url] => Site,[review_title] => Title,[review_text] => Text,[reviews_read] => Reviews list,[reviews_rate] => Reviews rate,[review_add] => Add review,[review_rate_name] => Rating,[reviews_count] => Reviews count,[rate_it] => Post review for this listing.,[no_reviews] => No reviews to view.,[reviews_approval] => Your review is waiting for approval.,[error_review_logged] => Your must be authorized to post reviews.,[reviews_deleted] => All reviews deleted.,[review_deleted] => Review deleted.,[reviews_added] => Your review has been added. It will be available soon.,[reviews_error_already] => Your rate already record,[error_max_title] => Your title length should be less than {maxLength} symbols.,[error_min_reviews] => Your text length should be more than {minLength} symbols.,[error_max_reviews] => Your text length should be less than {maxLength} symbols.,[error_no_rate] => No rating number.,[error_no_auth] => You must be authorized.,[error_no_listing] => No listing id avaible.,[are_you_sure_to_delete_selected_reviews] => Are you sure to delete selected reviews?,[are_you_sure_to_delete_selected_review] => Are you sure to delete selected review?,[are_you_sure_to_delete_this_review] => Are you sure to delete this review?,[active_users] => Active Users,[guests] => Guests,[visits] => Visits last 24h,[field_terms_of_suggesting] => Terms of Submission,[field_i_agree] => I agree with,[error_terms_verification] => You may not suggest the link as you do not agree with the terms,[page_title_term_of_submission] => Terms of Submissions,[page_content_term_of_submission] => Please edit your terms of submissions using your Admin Panel -> Manage Pages,[tell_friend] => Tell Friend,[are_you_sure_to_delete_selected_subscribe] => Are you sure to delete selected subscribe?,[newsletter_unsubscribe_confirm_err] => Error. Your key not found.,[newsletter_unsubscribe_confirm] => Congratulations!You have successfully confirmed end of subscription.Best regards.,[newsletter_email_exists] => Email already exists,[newsletter_unsubscribe] => Thank You,We have just sent you a confirmation email. It should arrive into your inbox shortly.Please check your email inbox, find our confirmation email, read the instructions, and confirm.,[newsletter_confirm_err] => Error. Your key not found.,[newsletter_delete_err] => Your subscription has not been removed,[newsletter_subscribe] => Thank You, thank you for subscribing to our newsletter.Before we start sending you our newsletter we have to make sure we have your permission. We have just sent you a confirmation email. It should arrive into your inbox shortly.Please check your email inbox, find the our subscription confirmation email, read the instructions, and confirm your subscription.,[error_realname_empty] => Real name field is empty,[newsletter_confirmed] => Congratulations!You have successfully confirmed your subscription.We do appreciate your feedback so feel free to reply to our newsletter messages.Stay in touch!Best regards.,[manage_newsletters] => Manage Subscribe,[newsletter_deleted] => Your subscription has been removed,[email_tags_explan] => You can use following email tags,[error_email_exist] => Email already exist,[newsletters_added] => News letters added,[add_newsletters] => Add newsletters,[individ_receps] => Individual recipients,[no_newsletters] => no_newsletters,[manage_mailer] => Manage Mailer,[mass_mailer] => Mass mailer,[unsubscribe] => Unsubscribe,[newsletters] => Newsletters,[newsletter] => Newsletter,[subscribe] => Subscribe,[realname] => Real name,[cannot_create_folder] => Can't create folders for sitemap files.,[not_writable_folder] => Sitemap file's folder non writable.,[create_gy_sitemap] => Create Google Yahoo sitemap.,[processing] => Processing.,[finished] => Finished.,[progress] => Progress.,[start] => Start.,[check_link_status] => Check Listing Status,[listing_status_description] => Please input your listing URL to check what status it has now.,[check_link_status_url] => Link URL,[error_empty_link_status_url] => Please type correct link URL.,[error_not_found_link_status_url] => No listing found with this URL.,[approval_link_status_url] => Your listing is waiting for administrator approval. It was submitted on {date}.,[active_link_status_url] => This listing is active since {date}.,[suspended_link_status_url] => This listing was suspended on {date}. Please contact site administrator in case you have questions.,[banned_link_status_url] => This listing was banned on {date}. Please contact site adminisitrator if you have any questions.,[page_title_listingstatus] => Check Listing Status,[pagerank_listings] => Listings with PR,[no_pagerank_listings] => No listings with Pagerank yet.,[page_title_pagerank_listings] => Pagerank Listings,[exact_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[stemming_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[field_display_url] => Display URL,[field_twitter_username] => Twitter Username,[set_status_after_submit] => Set banner status after submit as,[banner_email_incorrect] => As you are not registered we need to know your correct email that informs you about any changes with your banner.,[cron_for_expiration_b] => Cron for changing banner after payment is expired,[page_title_my_banners] => My Banners,[banner_type_incorrect] => Banner type is incorrect.,[banner_title_is_empty] => Banner Title is empty.,[uploads_not_writable] => Uploads folder is not writable. Your customers will not be able submit Local(image,flash) bunners.,[remote_url_incorrect] => You must specify an URL to the remote banner.,[paypal_not_installed] => You need install paypal plugin before create a banners plan.,[banner_url_incorrect] => Banner URL is incorrect.,[click_to_add_banner] => Click here to add Your Banner,[manage_banner_plans] => Manage Banner Plans,[choose_file_upload] => Choose a file to upload,[image_keepratio] => Keep image ratio,[include_subcats] => include subcategories,[use_orig_params] => Use original parameters,[suggest_banner] => Suggest Banner,[banner_img_url] => Banner image URL,[banner_email] => Your e-mail,[banner_title] => Banner Title,[banner_added] => Banner added.,[image_height] => Image Height,[banner_type] => Banner Type,[edit_banner] => Edit Banner,[banner_alt] => Banner Alternative Text,[add_banner] => Add Banner,[verybottom] => Very Bottom,[banner_url] => Banner URL,[topbanner] => Top Banner,[image_fit] => Enlarge the image if it will be less than entered sizes,[verytop] => Very Top,[_parent] => Parent Frame,[content] => Content,[banners] => Banners,[center] => Center,[bottom] => Bottom,[target] => Target,[remote] => Remote,[banner] => Banner,[_blank] => New Window,[_self] => Current Window,[local] => Local (image or flash),[block] => Block,[shows] => Shows,[user1] => User1,[user2] => User2,[right] => Right,[_top] => Top Frame,[text] => Plain text,[left] => Left,[html] => HTML or JS,[top] => Top,[page_title_suggest_banner] => Suggest Banner,[view_all_tags] => View all tags,[tag_incorrect] => Incorrect tags key,[tag_cloud] => Tag Cloud,[view_tags] => View tags,[all_tags] => All Tags,[tags] => Tags,[page_title_tagcloud] => Tag Cloud,[field_tag] => Tags,[google_search] => Google Search,[page_title_Main] => Main,[more] => more...,[categories_found] => Categories found: ,[username_banned] => Your account has been banned by administrator.,[last_visited] => Last Visited,[instructions_restore_password_sent] => Email with instructions to restore password has been sent.,[instructions_change_email_sent] => Email with instructions to change email has been sent.,[change_email] => Change Email,[confirm_email] => Confirm Email,[account_successful_change_email] => You have successfully change your account email.,[field_meta_description] => Meta Description,[field_meta_keywords] => Meta Keywords,[error_deep_link_not_similar] => The domain of deep link ( {url} ) is not similar as listing URL.),[breadcrumb] => eSyndiCat Directories / Automotive eSyndiCat Directories,[msg] => ,[error] => ,[printregular] => regular-listing-display.tpl,[printsponsored] => sponsored-listing-display.tpl,[printfeatured] => featured-listing-display.tpl,[printpartner] => partner-listing-display.tpl,[templates] => http://directoriesbyscript.com/esyndicat/templates/marangal,[img] => http://directoriesbyscript.com/esyndicat/templates/marangal/img/,[menus] => Array ([inventory] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[2] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing)),[main] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Main,[order] => 1,[url] => http://directoriesbyscript.com,[nofollow] => 0,[name] => Main),[2] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[3] => Array ([title] => New Listings,[order] => 3,[url] => new-listings.html,[nofollow] => 0,[name] => new_listings),[4] => Array ([title] => Top Listings,[order] => 4,[url] => top-listings.html,[nofollow] => 0,[name] => top_listings),[5] => Array ([title] => Popular Listings,[order] => 5,[url] => popular-listings.html,[nofollow] => 0,[name] => popular_listings),[6] => Array ([title] => Random Listings,[order] => 6,[url] => random-listings.html,[nofollow] => 0,[name] => random_listings),[7] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing),[8] => Array ([title] => Suggest Category,[order] => 8,[url] => suggest-category.php?id=5,[nofollow] => 1,[name] => suggest_category),[9] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[10] => Array ([title] => Add Article,[order] => 18,[url] => articles/add.html?id=5,[nofollow] => 1,[name] => suggest_article),[11] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news)),[account] => Array ([0] => Array ([title] => My Listings,[order] => 9,[url] => account-listings.html,[nofollow] => 0,[name] => account_listings),[1] => Array ([title] => Favorites,[order] => 10,[url] => favorites-listings.html,[nofollow] => 0,[name] => favorites_listings),[2] => Array ([title] => Edit Account,[order] => 11,[url] => edit-account.php,[nofollow] => 1,[name] => edit_account),[3] => Array ([title] => My Articles,[order] => 19,[url] => articles/account.html,[nofollow] => 0,[name] => account_articles)),[bottom] => Array ([0] => Array ([title] => About Us,[order] => 12,[url] => about.html,[nofollow] => 0,[name] => about),[1] => Array ([title] => Privacy Policy,[order] => 13,[url] => policy.html,[nofollow] => 0,[name] => policy),[2] => Array ([title] => Terms of Use,[order] => 14,[url] => terms.html,[nofollow] => 0,[name] => terms),[3] => Array ([title] => Help,[order] => 15,[url] => help.html,[nofollow] => 0,[name] => help),[4] => Array ([title] => Advertise Us,[order] => 16,[url] => advertise.html,[nofollow] => 0,[name] => advertise),[5] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[6] => Array ([title] => Contact Us,[order] => 21,[url] => mod/contacts/?contact=us,[nofollow] => 0,[name] => contact_us),[7] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news),[8] => Array ([title] => ,[order] => 26,[url] => tell-friend.html,[nofollow] => 1,[name] => tell_friend),[9] => Array ([title] => Check Listing Status,[order] => 27,[url] => mod/listingstatus/,[nofollow] => 1,[name] => listingstatus),[10] => Array ([title] => Tag Cloud,[order] => 30,[url] => tags/,[nofollow] => 0,[name] => tagcloud))),[articles] => ,[add_ads_left] => ,[add_ads_right] => ,[add_ads_top] => ,[add_ads_bottom] => ,[add_ads_user1] => ,[add_ads_user2] => ,[add_ads_center] => ,[add_ads_verybottom] => ,[add_ads_verytop] => ,[add_ads_topbanner] => ,[bottomBlocks] => Array ([0] => Array ([id] => 9,[title] => New Articles,[contents] => {if isset($latestArticles)} {foreach from=$latestArticles item=one_article} {if $config.mod_rewrite} {$one_article.title} {else} {$one_article.title} {/if} {/foreach} {$lang.view_all_article} {/if},[order] => 6,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => articles,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[1] => Array ([id] => 22,[title] => Bottom Banners,[contents] => {if isset($bottom_banner)} {foreach from=$bottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_bottom"} {/dynamic} {/foreach} {elseif $add_ads_bottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_bottom"} {/if},[order] => 19,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 30,[title] => eSyndiCat,[contents] => {foreach from=$rss_1 item=one_rss}{$one_rss.title}{/foreach},[order] => 26,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => rss,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[centerBlocks] => Array ([0] => Array ([id] => 25,[title] => Center Banners,[contents] => {if isset($center_banner)} {foreach from=$center_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_center"} {/dynamic} {/foreach} {elseif $add_ads_center} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_center"} {/if},[order] => 22,[lang] => en,[position] => center,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[leftBlocks] => Array ([0] => Array ([id] => 2,[title] => Sponsored,[contents] => {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=sponsored_listing} {$sponsored_listing.title} {/foreach} {/if},[order] => 1,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 3,[title] => Featured,[contents] => {if isset($featured_listings)} {foreach from=$featured_listings item=featured_listing} {$featured_listing.title} {/foreach} {/if},[order] => 2,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[2] => Array ([id] => 14,[title] => New listings,[contents] => {if isset($box_listings.new) && !empty($box_listings.new)} {foreach from=$box_listings.new item=new_listing} {$new_listing.title} {/foreach} {/if},[order] => 6,[lang] => en,[position] => left,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[3] => Array ([id] => 10,[title] => Latest news,[contents] => {if isset($news) && !empty($news)} {foreach from=$news item=one_news} {if $smarty.const.ESYN_MOD_REWRITE} {$one_news.title} {else} {$one_news.title} {/if} {$one_news.body|truncate:$config.news_max:"..."} {$one_news.date|date_format:$config.date_format} {/foreach} {$lang.view_all_news} {/if},[order] => 7,[lang] => en,[position] => left,[type] => smarty,[plugin] => news,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[4] => Array ([id] => 19,[title] => Left Banners,[contents] => {if isset($left_banner)} {foreach from=$left_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_left"} {/dynamic} {/foreach} {elseif $add_ads_left} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_left"} {/if},[order] => 16,[lang] => en,[position] => left,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 31,[title] => Our Network,[contents] => African Directory Africas Directory Agricultural Directory Automotive Directory Building Services Directory Business Directory Business Directory UK Dating Directory Design Directory Directory of Directories Diretory of Directories Entrertainment Directory Forum Directory Gambling Directory General Directory Lingerie Directory Lingerie Directory Party Directory Shopping Directory South African Directory Travel Directory Zimbabwean Directory,[order] => 17,[lang] => en,[position] => left,[type] => html,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 13,[title] => Newsletter,[contents] => {$lang.realname}: {$lang.email}: {$lang.unsubscribe} {include_file js="plugins/mailer/js/frontend/index"},[order] => 18,[lang] => en,[position] => left,[type] => smarty,[plugin] => mailer,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 12,[title] => Whois Online,[contents] => {$lang.active_users}: {$total_users} {$lang.accounts}: {$register_users} {$lang.guests}: {$guests_users} {$lang.visits}: {$num_visits_today} {foreach name=users from=$name_users item=user} {$user.username}{if !$smarty.foreach.users.last},{/if} {/foreach} ,[order] => 20,[lang] => en,[position] => left,[type] => smarty,[plugin] => whoisonline,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[rightBlocks] => Array ([0] => Array ([id] => 6,[title] => Accounts area,[contents] => {if $config.accounts} {if $esynAccountInfo} {$lang.welcome}, {$esynAccountInfo.username}! {foreach from=$menus.account item=menu} {if $menu.name eq $smarty.const.ESYN_REALM} {$menu.title} {else} {$menu.title} {/if} {/foreach} {$lang.logout} {else} {$lang.username}: {$lang.password}: {$lang.forgot} {$lang.register} {/if} {/if},[order] => 1,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 11,[title] => Best Rated,[contents] => {if !empty($best_rated)} {include_file css="/plugins/reviews/templates/css/reviews"} {foreach from=$best_rated item=review name=reviews} {$review.title} {$lang.review_rate_name}: {$review.rate} of 5.000 ({$review.rate_count})   {$lang.review_url}: {$review.url} {$review.description|truncate:200} {/foreach} {/if},[order] => 2,[lang] => en,[position] => right,[type] => smarty,[plugin] => reviews,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 4,[title] => Partner,[contents] => {if isset($partner_listings)} {foreach from=$partner_listings item=partner_listing} {$partner_listing.title} {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[3] => Array ([id] => 7,[title] => Actions,[contents] => {if isset($esyndicat_actions) && !empty($esyndicat_actions)}{foreach from=$esyndicat_actions item=action} {assign var="action_key" value="esyndicat_action_"|cat:$action.name} {if $action.name eq 'action_favorite'} {if $esynAccountInfo} {if $esynAccountInfo.id neq $listing.account_id} {assign var="fav_array" value=','|explode:$listing.fav_accounts_set} {if !empty($fav_array) && in_array($esynAccountInfo.id, $fav_array)} {$lang.remove_from_favorites} {else} {$lang.add_to_favorites} {/if} {/if} {/if} {else} {$lang.$action_key} {/if} {/foreach}{/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[4] => Array ([id] => 15,[title] => Random listings,[contents] => {if isset($box_listings.random) && !empty($box_listings.random)} {foreach from=$box_listings.random item=random_listing} {$random_listing.title} {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 17,[title] => Related listings,[contents] => {if isset($box_listings.related) && !empty($box_listings.related)} {foreach from=$box_listings.related item=related_listing} {$related_listing.title} {/foreach} {/if},[order] => 14,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 29,[title] => Tags,[contents] => wholesale adult business sites australian health jewellery exporters General Directory Design Directory b2b bling bling Wholesa freebies online strnek dine tilbage Agriculture health zpis lingerie directory blogs internet quality Automotive websites Business Directory link looking View all tags,[order] => 16,[lang] => en,[position] => right,[type] => smarty,[plugin] => tagcloud,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 20,[title] => Right Banners,[contents] => {if isset($right_banner)} {foreach from=$right_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_right"} {/dynamic} {/foreach} {elseif $add_ads_right} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_right"} {/if},[order] => 17,[lang] => en,[position] => right,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[8] => Array ([id] => 18,[title] => PageRanks,[contents] => {if isset($pageranks)} {foreach from=$pageranks item=pagerank} {if $pagerank.pagerank > 0} {if $config.mod_rewrite} {print_pagerank pagerank=$pagerank.pagerank} {else} {print_pagerank pagerank=$pagerank.pagerank} {/if} {$pagerank.val} {/if} {/foreach} {else} {$lang.no_pagerank_listings} {/if},[order] => 18,[lang] => en,[position] => right,[type] => smarty,[plugin] => pageranks,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topBlocks] => Array ([0] => Array ([id] => 21,[title] => Top Banners,[contents] => {if isset($top_banner)} {foreach from=$top_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_top"} {/dynamic} {/foreach} {elseif $add_ads_top} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_top"} {/if},[order] => 18,[lang] => en,[position] => top,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topbannerBlocks] => Array ([0] => Array ([id] => 28,[title] => Top2 Banners,[contents] => {if isset($topbanner_banner)} {foreach from=$topbanner_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_topbanner"} {/dynamic} {/foreach} {elseif $add_ads_topbanner} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_topbanner"} {/if},[order] => 25,[lang] => en,[position] => topbanner,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user1Blocks] => Array ([0] => Array ([id] => 23,[title] => User1 Banners,[contents] => {if isset($user1_banner)} {foreach from=$user1_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user1"} {/dynamic} {/foreach} {elseif $add_ads_user1} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user1"} {/if},[order] => 20,[lang] => en,[position] => user1,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user2Blocks] => Array ([0] => Array ([id] => 24,[title] => User2 Banners,[contents] => {if isset($user2_banner)} {foreach from=$user2_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user2"} {/dynamic} {/foreach} {elseif $add_ads_user2} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user2"} {/if},[order] => 21,[lang] => en,[position] => user2,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verybottomBlocks] => Array ([0] => Array ([id] => 26,[title] => Very Bottom Banners,[contents] => {if isset($verybottom_banner)} {foreach from=$verybottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verybottom"} {/dynamic} {/foreach} {elseif $add_ads_verybottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verybottom"} {/if},[order] => 23,[lang] => en,[position] => verybottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verytopBlocks] => Array ([0] => Array ([id] => 27,[title] => Very Top Banners,[contents] => {if isset($verytop_banner)} {foreach from=$verytop_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verytop"} {/dynamic} {/foreach} {elseif $add_ads_verytop} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verytop"} {/if},[order] => 24,[lang] => en,[position] => verytop,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[sponsored_listings] => ,[featured_listings] => ,[partner_listings] => ,[rss_1] => Array ([1] => Array ([title] => Error 500.htm,[link] => goto=newpost)),[num_total_articles] => 0,[latestArticles] => ,[num_total] => Array ([pending] => 22,[listing] => 27,[category] => 63),[news] => ,[best_rated] => ,[stars] => Array ([0] => Array ([id] => 1,[name] => I Would Not Recommend),[1] => Array ([id] => 2,[name] => Fair),[2] => Array ([id] => 3,[name] => Good),[3] => Array ([id] => 4,[name] => Very Good),[4] => Array ([id] => 5,[name] => Exceptional)),[total_users] => 17,[register_users] => 0,[guests_users] => 17,[name_users] => ,[num_visits_today] => 77,[box_listings] => Array ([new] => Array ([0] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 54,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.online-businessdirectory.com,[url] => http://www.online-businessdirectory.com,[description] => We offer Premium Business Directory Listings to thousands of businesses in the uk. Free and Paid Listings are available for maximum exposure. ,[email] => info@webxl-international.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2011-03-03 04:56:19,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:39:01,[title] => Online Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://online-businessdirectory.com/feed.php?from=category&id=0,[display_url] => http://,[twitter_username] => OBDirectory,[tag] => business, directory,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 43,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.thefree4u.com,[url] => http://www.thefree4u.com/,[description] => Directory of the free stuff for you,Resource for freebies with over 60 categories,your one stop resource for freebies on the internet,Frequently updated. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:50:35,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:50:35,[title] => TheFree4u,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => freebies,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 42,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:45:26,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:45:26,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 40,[account_id] => 0,[category_id] => 22,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => fishing-in.com,[url] => http://fishing-in.com,[description] => The Fishing Directory is a meeting place for all enthusiasts of the fishing world. We list fishing destinations worldwide for you to visit or learn more about, fishing gear to buy, travel resorts, fishing games, and much more.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-12-04 03:29:06,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:29:06,[title] => The Fishing Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://fishing-in.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Fishing Directory,[path] => fishing-esyndicat-directories,[category_title] => Fishing eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[5] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[6] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[7] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[8] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[10] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[11] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[12] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[13] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[14] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[15] => Array ([id] => 20,[account_id] => 0,[category_id] => 14,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.kom-paa-forsiden.dk,[url] => http://www.kom-paa-forsiden.dk/,[description] => Kom På Forsiden er et seo venligt link katalog, der linker direkte tilbage til din hjemmeside, helt gratis. Så hvis De ønsker at forbedre dine indgående links og blive mere synlig på Internettet, kan du tilføje dine hjemmesider til link kataloget kom på forsiden. Det er ganske gratis at tilføje links hos link kataloget kom på forsiden, og vi forlanger ikke, at du skal linke tilbage til os. :-),[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:34:31,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:34:31,[title] => Tilføj link,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.kom-paa-forsiden.dk/feed.php?id=0,[display_url] => http://,[twitter_username] => ,[tag] => link,tilbage,dine,[path] => international-esyndicat-directories/denmark-esyndicat-directories,[category_title] => Denmark eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[16] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[17] => Array ([id] => 17,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.orchidtgp.com,[url] => http://www.orchidtgp.com,[description] => A adult TGP directory offering a selction of quality adult gallerys in many niche categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:09:52,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:09:52,[title] => Orchid TGP,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[18] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[19] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0)),[random] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[1] => Array ([id] => 8,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultdirectoryreview.com,[url] => http://www.adultdirectoryreview.com/directory/,[description] => If you are looking for quality sex and porn sites then you have come to the right place check out our large selection of easy to navigate categories for what you are looking for.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:09:16,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adult Directory Review,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => looking,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[2] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[3] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[4] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[5] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[6] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[7] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[8] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[10] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[11] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[12] => Array ([id] => 14,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => exclusiveadultblogs.com,[url] => http://exclusiveadultblogs.com/,[description] => A directory listing some of the best exclusive adult sex and porn blogs that can be found on the internet. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:34:41,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:34:41,[title] => Exclusive Adult Blogs,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[13] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[14] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[15] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[16] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[17] => Array ([id] => 11,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsdirectory.eu,[url] => http://www.adultsdirectory.eu,[description] => Adult Directory EU caters for adult and non adult websites. Only quality websites and blogs are listed in this quality link directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:18:38,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adults Directory EU,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,websites,quality,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[18] => Array ([id] => 10,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsbusinessdirectory.com,[url] => http://www.adultsbusinessdirectory.com,[description] => We are your one stop guide to all the great adult businesses that can be found online our categories and links are always increasing so be sure to check back regularly for new listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:14:29,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:14:29,[title] => Adults Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[19] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0)),[top] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 2,[account_id] => 0,[category_id] => 9,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.africasdirectory.com,[url] => http://www.africasdirectory.com/,[description] => This is an African Directory listing sites from all over Africa by country and in a large selection of categories so feel free to search our listings for what you are after.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:35:24,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Africa's Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.africasdirectory.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => African Directory,[path] => international-esyndicat-directories/africa-esyndicat-directories,[category_title] => Africa eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 3,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => icecreamforyoursoul.com,[url] => http://icecreamforyoursoul.com,[description] => A general world wide directory listing quality hand picked websites in a large selection of categories which are also broken down into regions.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 05:08:15,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Ice Cream For Your Soul Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://icecreamforyoursoul.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 4,[account_id] => 0,[category_id] => 10,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.ukdesignernetwork.com,[url] => http://www.ukdesignernetwork.com,[description] => A design directory for all types of design related websites and resources with a large selection of categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-08-14 06:23:02,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Design Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.ukdesignernetwork.com/directory/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => Design Directory,[path] => design-esyndicat-directories,[category_title] => Design eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0))),[pageranks] => Array ([0] => Array ([pagerank] => 4,[val] => 2),[1] => Array ([pagerank] => 3,[val] => 6),[2] => Array ([pagerank] => 2,[val] => 3),[3] => Array ([pagerank] => 1,[val] => 4),[4] => Array ([pagerank] => 0,[val] => 19)),[manageMode] => ,[instead_thumbnail] => ,[sortings] => Array ([0] => alphabetic,[1] => date,[2] => clicks,[3] => rank),[category] => Array ([id] => 5,[account_id] => 0,[parent_id] => 0,[title] => Automotive eSyndiCat Directories,[page_title] => Automotive eSyndiCat Directories,[icon] => ,[description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place. ,[status] => active,[meta_description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[meta_keywords] => Automotive eSyndiCat Directories,[path] => automotive-esyndicat-directories,[order] => 0,[locked] => 0,[hidden] => 0,[unique_tpl] => 0,[level] => 1,[num_cols] => 0,[num_neighbours] => 0,[num_listings] => 1,[num_all_listings] => 1,[clicks] => 3,[no_follow] => 0,[confirmation] => 0,[confirmation_text] => ),[description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[keywords] => Automotive eSyndiCat Directories,[title] => Automotive eSyndiCat Directories :: eSyndiCat Directories,[header] => Automotive eSyndiCat Directories,[categories] => ,[total_listings] => 1,[listings] => Array ([0] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[url] => http://directoriesbyscript.com/esyndicat/automotive-esyndicat-directories/index{page}.html,[num_listings] => 1,[num_categories] => 0,[view] => all,[confirm_key] => confirm_5,[type] => 2,[listing] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[_smarty_vars] => ,[_sections] => Array ([star] => Array ([name] => star,[loop] => 0,[show] => ,[max] => 0,[step] => 1,[start] => 0,[total] => 0)),[_foreach] => Array ([users] => Array ([total] => 0,[iteration] => 0)),[_tag_stack] => Array (),[_conf_obj] => ,[_config] => Array ([0] => Array ([vars] => Array (),[files] => Array ()),[1] => Array ([vars] => Array (),[files] => Array ()),[2] => Array ([vars] => Array (),[files] => Array ())),[_smarty_md5] => f8d698aea36fcbead2b9d5359ffca76f,[_version] => 2.6.26,[_inclusion_depth] => -27,[_compile_id] => ,[_smarty_debug_id] => SMARTY_DEBUG,[_smarty_debug_info] => Array (),[_cache_info] => Array (),[_file_perms] => 420,[_dir_perms] => 505,[_reg_objects] => Array (),[_plugins] => Array ([modifier] => Array ([cat] => Array ([0] => smarty_modifier_cat,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 5,[3] => 1,[4] => 1),[escape] => Array ([0] => smarty_modifier_escape,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 8,[3] => 1,[4] => 1),[default] => Array ([0] => smarty_modifier_default,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 30,[3] => 1,[4] => 1),[add_url_param] => Array ([0] => smarty_modifier_add_url_param,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 56,[3] => 1,[4] => 1),[truncate] => Array ([0] => smarty_modifier_truncate,[1] => evaluated template,[2] => 8,[3] => 1,[4] => 1),[date_format] => Array ([0] => smarty_modifier_date_format,[1] => evaluated template,[2] => 9,[3] => 1,[4] => 1)),[function] => Array ([convertStr] => Array ([0] => Array ([0] => esynUtil,[1] => convertStr),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[print_listing_url] => Array ([0] => Array ([0] => esynLayout,[1] => printListingUrl),[1] => evaluated template,[2] => 4,[3] => 1,[4] => 1,[5] => ),[print_category_url] => Array ([0] => Array ([0] => esynLayout,[1] => printCategoryUrl),[1] => /home/director/public_html/esyndicat/plugins/articles/templates/block.tpl,[2] => 17,[3] => 1,[4] => 1,[5] => ),[print_account_url] => Array ([0] => Array ([0] => esynLayout,[1] => printAccUrl),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[esynHooker] => Array ([0] => smarty_function_esynHooker,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 21,[3] => 1,[4] => 1),[print_categories] => Array ([0] => smarty_function_print_categories,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 25,[3] => 1,[4] => 1),[navigation] => Array ([0] => smarty_function_navigation,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 39,[3] => 1,[4] => 1),[include_file] => Array ([0] => smarty_function_include_file,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 75,[3] => 1,[4] => 1),[print_img] => Array ([0] => smarty_function_print_img,[1] => header.tpl,[2] => 116,[3] => 1,[4] => 1),[print_pagerank] => Array ([0] => smarty_function_print_pagerank,[1] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[2] => 21,[3] => 1,[4] => 1)),[block] => Array ([dynamic] => Array ([0] => smarty_block_dynamic,[1] => evaluated template,[2] => 3,[3] => 1,[4] => ,[5] => )),[compiler] => Array (),[prefilter] => Array (),[postfilter] => Array (),[outputfilter] => Array ([clearemptyblocks] => Array ([0] => smarty_outputfilter_clearemptyblocks,[1] => ,[2] => ,[3] => 1,[4] => 1)),[resource] => Array (),[insert] => Array ([dynamic] => Array ([0] => insert_dynamic,[1] => /home/director/public_html/esyndicat/templates/common/parse-blocks.tpl,[2] => 12,[3] => 1,[4] => ))),[_cache_serials] => Array ([] => b9535253d329d557cd867660580ab22c),[_cache_include] => ,[_cache_including] => ,[_cache_include_info] => )) called at [/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php:126] #7 include(/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #8 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #9 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php:28] #10 include(/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #11 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #12 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php:76] #13 include(/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1263] #14 Smarty->fetch(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, , 1) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1106] #15 Smarty->display(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, ) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:164] #16 esynSmarty->display(index.tpl, en|5|1|ascending|alphabetic) called at [/home/director/public_html/esyndicat/index.php:375] :: eSyndiCat Directory Software 2.3.05

    Database query error: Error: Table 'director_esynd.v2303_tags' doesn't existSELECT * FROM v2303_tags WHERE `id_listing`='7' Debug backtrace: #0 esynDatabase->query(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:259] #1 esynDatabase->getAll(SELECT * FROM v2303_tags WHERE `id_listing`='7') called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:671] #2 esynDatabase->get(all, *, `id_listing`='7', Array (), 0, ) called at [/home/director/public_html/esyndicat/includes/classes/esynDatabase.php:580] #3 esynDatabase->all(*, `id_listing`='7') called at [/home/director/public_html/esyndicat/plugins/tagcloud/display.php:27] #4 include(/home/director/public_html/esyndicat/plugins/tagcloud/display.php) called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php(63) : eval()'d code:1] #5 eval() called at [/home/director/public_html/esyndicat/includes/smarty/plugins/function.esynHooker.php:63] #6 smarty_function_esynHooker(Array ([name] => listingDisplayLinksArea), esynSmarty Object ([mHooks] => Array ([bootstrap] => Array ([0] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $esynSmarty->assign('sponsored_listings', $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display'))); } $esynSmarty->assign('featured_listings', $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display'))); $esynSmarty->assign('partner_listings', $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')));,[file] => ,[plugin] => ),[1] => Array ([type] => php,[code] => global $category, $esynSmarty, $eSyndiCat; $eSyndiCat->loadPluginClass("Rss", 'rss', "esyn"); $esynRss = new esynRss(); $rss = $esynRss->getRss(); if (!empty($rss)) { foreach($rss as $value) { $content = esynUtil::getPageContent($value['url']); $esynRss->createParser($content); $rssContent = $esynRss->getRssContent(); $esynRss->clear(); if(count($rssContent) > $value['num']) { $rssContent = array_slice($rssContent, 0, $value['num']); } $esynSmarty->assign("rss_{$value['id']}", $rssContent); } },[file] => ,[plugin] => rss),[2] => Array ([type] => php,[code] => if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $num_total_articles = $eSyndiCat->one("COUNT(*)", "`status` = 'active'"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total_articles', $num_total_articles); $eSyndiCat->setTable("articles"); $latestArticles = $eSyndiCat->all("*", "`status`='active' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('num_new_articles')); $eSyndiCat->resetTable(); $esynSmarty->assign_by_ref('latestArticles', $latestArticles); },[file] => ,[plugin] => articles),[15] => Array ([type] => php,[code] => $eSyndiCat->setTable("listings"); $num_total['pending'] = $eSyndiCat->one("COUNT(*)", "`status` = 'approval'"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("listing_clicks"); $num_total['listing'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $eSyndiCat->setTable("category_clicks"); $num_total['category'] = $eSyndiCat->one("COUNT(*)"); $eSyndiCat->resetTable(); $esynSmarty->assign('num_total', $num_total);,[file] => ,[plugin] => extrastats),[19] => Array ([type] => php,[code] => global $esynConfig, $esynSmarty; if ($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,`date`,`alias`, `body`", "`status` = 'active' AND `lang` = '".ESYN_LANGUAGE."' ORDER BY `date` DESC", $values = array(), 0, $esynConfig->getConfig('news_number')); $esynConfig->resetTable(); $esynSmarty->assign('news', $news); },[file] => ,[plugin] => news),[22] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty; $limit = (int)$esynConfig->getConfig('num_best_rated'); if($limit30) $limit = 1; $sql = "SELECT w.*, d.*, a.* FROM `".$eSyndiCat->mPrefix."reviews_rate` w, `".$eSyndiCat->mPrefix."listings` a LEFT JOIN `".$eSyndiCat->mPrefix."categories` d ON(d.`id` = a.`category_id`) WHERE a.`id` = w.listing_id ORDER BY w.`rate` DESC, w.last_change DESC LIMIT ".$limit; $reviews = $eSyndiCat->getAll($sql); if(!empty($reviews)) { foreach($reviews as $key=>$val) { $reviews[$key]['rate'] = $val['rate'] = number_format($val['rate'],3); $reviews[$key]['rate_perc'] = $val['rate']*100/5; } } $esynSmarty->assign('best_rated', $reviews); $stars = array(); for($i=1;$i$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i)); } $esynSmarty->assign('stars', $stars);,[file] => ,[plugin] => reviews),[26] => Array ([type] => php,[code] => global $eSyndiCat; $eSyndiCat->setTable("whoisonline"); $total_users = $eSyndiCat->one("COUNT(*) num", "`status` = 'active'"); $register_users = $eSyndiCat->one("COUNT(*) num", "`username` != '' AND `status` = 'active'"); $name_users = $eSyndiCat->all("`username`", "`username` != '' AND `status` = 'active'"); $num_visits_today = $eSyndiCat->one("COUNT(*) num","`date` + INTERVAL 1 DAY > NOW()"); $eSyndiCat->resetTable(); $esynSmarty->assign('total_users', (int)$total_users); $esynSmarty->assign('register_users', (int)$register_users); $esynSmarty->assign('guests_users', (int)$total_users - (int)$register_users); $esynSmarty->assign('name_users', $name_users); $esynSmarty->assign('num_visits_today', (int)$num_visits_today);,[file] => ,[plugin] => whoisonline),[29] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $esynAccountInfo; $eSyndiCat->factory("Listing"); $box_listings['new'] = $esynListing->getLatest(0, $esynConfig->getConfig('num_new_listings'), $esynAccountInfo['id']); $box_listings['random'] = $esynListing->getRandom($esynConfig->getConfig('num_random_listings'), $esynAccountInfo['id']); $box_listings['top'] = $esynListing->getTop(0, $esynConfig->getConfig('num_top_listings'), $esynAccountInfo['id']); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes),[31] => Array ([type] => php,[code] => $sql = "SELECT `pagerank`, COUNT(*) as `val`"; $sql .= "FROM `{$eSyndiCat->mPrefix}listings` "; $sql .= "WHERE `pagerank` != '-1' "; $sql .= "AND `status` = 'active' "; $sql .= "GROUP BY `pagerank`"; $sql .= "ORDER BY `pagerank` DESC"; $pageranks = $eSyndiCat->getAll($sql); $esynSmarty->assign('pageranks', $pageranks);,[file] => ,[plugin] => pageranks),[36] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $id; $eSyndiCat->factory("Listing"); global $esynListing; /** get sponsored listings **/ if ($esynConfig->getConfig('sponsored_listings')) { $listings = $esynListing->getSponsored($id, 0, $esynConfig->getConfig('num_sponsored_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } $esynSmarty->assign('sponsored_listings', $listings); } } } $listings = $esynListing->getFeatured($id, 0, $esynConfig->getConfig('num_featured_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('featured_listings', $listings); } $listings = $esynListing->getPartner($id, 0, $esynConfig->getConfig('num_partner_display')); if(!empty($listings)) { foreach ($listings as $key => $listing) { if (isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } $esynSmarty->assign('partner_listings', $listings); },[file] => ,[plugin] => displayurl)),[adminIndexBeforeDisplay] => Array ([3] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("articles"); $articles['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $articles['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $articles['total'] = $articles['active'] + $articles['approval']; $esynSmarty->assign('articles', $articles);,[file] => ,[plugin] => articles),[20] => Array ([type] => php,[code] => global $esynSmarty, $esynAdmin; $esynAdmin->setTable("reviews"); $reviews['approval'] = $esynAdmin->one("COUNT(*)", "`status` = 'approval'"); $reviews['active'] = $esynAdmin->one("COUNT(*)", "`status` = 'active'"); $esynAdmin->resetTable(); $reviews['total'] = $reviews['active'] + $reviews['approval']; $esynSmarty->assign('reviews', $reviews);,[file] => ,[plugin] => reviews)),[adminIndexStats2] => Array ([4] => Array ([type] => smarty,[code] => {$esynI18N.articles}   {$esynI18N.approval}: {$articles.approval} {$esynI18N.active}: {$articles.active} {$esynI18N.total}: {$articles.total} ,[file] => ,[plugin] => articles),[21] => Array ([type] => smarty,[code] => {$esynI18N.reviews}   {$esynI18N.approval}: {$reviews.approval} {$esynI18N.active}: {$reviews.active} {$esynI18N.total}: {$reviews.total} ,[file] => ,[plugin] => reviews)),[indexBeforeListings] => Array ([5] => Array ([type] => smarty,[code] => {include_file css=$smarty.const.ESYN_URL|cat:"plugins/articles/templates/css/style"} {include file=$smarty.const.ESYN_PLUGINS|cat:"articles/templates/block.tpl"},[file] => ,[plugin] => articles)),[statisticsBlock] => Array ([6] => Array ([type] => smarty,[code] => {if isset($num_total_articles)} {$lang.articles}: {$num_total_articles} {/if},[file] => ,[plugin] => articles),[16] => Array ([type] => smarty,[code] => {if isset($num_total.pending)} {$lang.pending_approval}: {$num_total.pending} {/if} {if isset($num_total.listing)} {$lang.total_listing_clicks}: {$num_total.listing} {/if} {if isset($num_total.category)} {$lang.total_category_clicks}: {$num_total.category} {/if},[file] => ,[plugin] => extrastats)),[GoogleSiteMapGeneratorHandler] => Array ([7] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; // Sitemap part for the article pages. if ($esynConfig->getConfig('article')) { global $feed, $GSM; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`,'active'", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ''.ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'; } else { $feed .= ''.ESYN_URL.'article/index.php?id='.$onearticle['id'].''; } $feed .= ''.$GSM['articlelinks']['changefreq'].''; $feed .= ''.$GSM['articlelinks']['priority'].''."\n"; } } },[file] => ,[plugin] => articles),[17] => Array ([type] => php,[code] => global $esynUtil, $feed, $GSM, $esynConfig; if($esynConfig->getConfig('news')) { $esynConfig->setTable("news"); $news = $esynConfig->all("`id`,`title`,'active'", "`status` = 'active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { $feed .= ''; if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr(array('string' => $onenew['title'])); $feed .= ''.ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'; } else { $feed .= ''.ESYN_URL.'controller.php?plugin=news&id='.$onenew['id'].''; } if (isset($GSM)) { $feed .= ''.$GSM['newslinks']['changefreq'].''; $feed .= ''.$GSM['newslinks']['priority'].''."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[YahooGeneratorHandler] => Array ([8] => Array ([type] => php,[code] => global $esynConfig, eSyndiCat; if ($esynConfig->getConfig('article')) { global $feed; $eSyndiCat->setTable("article"); $article = $eSyndiCat->all("`id`,`title`", "`status`='active' order by date_added desc", 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); if ($article) { foreach ($article as $onearticle) { if (ESYN_MOD_REWRITE) { $onearticle['title'] = esynUtil::convertStr($onearticle['title']); $feed .= ESYN_URL.'article/'.$onearticle['title'].'-a'.$onearticle['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'article/index.php?id='.$onearticle['id']."\n"; } } } },[file] => ,[plugin] => articles),[18] => Array ([type] => php,[code] => global $esynConfig, $esynUtil, $feed; if($esynConfig->getConfig('news')) { $esynConfig->setTable('news'); $news = $esynConfig->all("`id`,`title`", "`status`='active'", $values = array(), 0, $esynConfig->getConfig('news_number')); if(!empty($news)) { foreach($news as $onenew) { if (ESYN_MOD_REWRITE) { $onenew['title'] = esynUtil::convertStr($onenew['title']); $feed .= ESYN_URL.'news/'.$onenew['title'].'-n'.$onenew['id'].'.html'."\n"; } else { $feed .= ESYN_URL.'controller.php?plugin=news&id='.$onenew['id']."\n"; } } } $esynConfig->resetTable(); },[file] => ,[plugin] => news)),[beforeBlocksLoad] => Array ([9] => Array ([type] => php,[code] => global $category, $esynConfig, $eSyndiCat, $esynSmarty; if ($esynConfig->getConfig('article')) { $eSyndiCat->setTable("articles"); $articles = $eSyndiCat->all("*", "`status`='active' AND `category_id` = '".$category['id']."' ORDER BY `date_added` DESC", array(), 0, $esynConfig->getConfig('article_number')); $eSyndiCat->resetTable(); $esynSmarty->assign('articles', $articles); $eSyndiCat->setTable("blocks"); $status = (count($articles) > 0) ? 'active' : 'inactive'; $eSyndiCat->update(array('status' => $status), "`plugin` = 'article' AND `title` = 'Latest Articles'"); $eSyndiCat->resetTable(); },[file] => ,[plugin] => articles),[44] => Array ([type] => php,[code] => global $eSyndiCat, $esynSmarty, $esynConfig, $category, $esynAccountInfo; $eSyndiCat->loadPluginClass('Banner', 'banners', 'esyn'); $esynBanner = &new esynBanner(); $paid_positions = $esynBanner->get_blocks(); $temp = false; $bids = array(); $eSyndiCat->setTable('blocks'); $positions = $eSyndiCat->keyvalue('`id`,`position`', "`plugin` = 'banners'"); $eSyndiCat->resetTable(); foreach($positions as $bpos) { $temp = $esynBanner->getBanner($bpos, $category['id'], $esynConfig->getConfig("num_{$bpos}_banners")); if(!empty($temp)) { if(!file_exists(ESYN_PLUGINS."banners".ESYN_DS."templates".ESYN_DS."banner.tpl")) { $bannerError = "This file can not be found in template directory: banner.tpl"; $esynSmarty->assign_by_ref('bannerError', $bannerError); } else { $esynSmarty->assign($bpos.'_banner', $temp); } foreach($temp as $banner) { $bids[] = $banner['id']; } } $add_ads = $paid_positions && esynUtil::ArraySearchRecursive($bpos, $paid_positions) ? $bpos : false; $add_ads = !$esynConfig->getConfig('banner_guests_submit') && !$esynAccountInfo ? false : $add_ads; $esynSmarty->assign('add_ads_'.$bpos, $add_ads); } if(!empty($bids)) { // Just mini optimize :) to avoid IN() if(count($bids) > 1) { $wh = "`id` IN('".implode("','",$bids)."')"; } else { $wh = "`id`='".$bids[0]."'"; } // first parameters expects actual values // while third expects RDBMS functions, variables etc. like NOW(), UNIX_TIMESTAMP() // e.g first params will generate "showed='showed+1'" while third ("showed=showed+1") $esynBanner->query("UPDATE `$esynBanner->mTable` SET `showed` = `showed`+'1' WHERE $wh"); } unset($temp);,[file] => ,[plugin] => banners),[46] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'generate.php');,[file] => ,[plugin] => tagcloud)),[viewListingBeforeFooter] => Array ([10] => Array ([type] => smarty,[code] => {include_file js="plugins/claimlisting/js/frontend/index"},[file] => ,[plugin] => claimlisting),[23] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_PLUGINS|cat:"reviews/templates/reviews.tpl"},[file] => ,[plugin] => reviews),[39] => Array ([type] => smarty,[code] => {if isset($listing.display_url) && $listing.display_url neq 'http://'} {/if},[file] => ,[plugin] => displayurl)),[listingDisplayLinksArea] => Array ([11] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {$lang.claim_this_link} {/if},[file] => ,[plugin] => claimlisting),[52] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[viewListingAfterMainFieldsDisplay] => Array ([12] => Array ([type] => smarty,[code] => {if isset($esynAccountInfo) && $esynAccountInfo.id neq $listing.account_id} {$lang.claim_this_link} {/if},[file] => ,[plugin] => claimlisting),[51] => Array ([type] => smarty,[code] => {$lang.tags}: {$listing.tag} ,[file] => ,[plugin] => tagcloud)),[beforeCloseTag] => Array ([13] => Array ([type] => smarty,[code] => {include_file js="plugins/contacts/js/frontend/contacts"},[file] => ,[plugin] => contacts),[33] => Array ([type] => smarty,[code] => {$config.google_analytics},[file] => ,[plugin] => googletools),[35] => Array ([type] => smarty,[code] => {if isset($listings)} {foreach from=$listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($featured_listings)} {foreach from=$featured_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {if isset($partner_listings)} {foreach from=$partner_listings item=listing} {if isset($listing.display_url) && $listing.display_url neq 'http://' && $config.forward_to_listing_details eq '0'} {/if} {/foreach} {/if} {include_file js="plugins/displayurl/js/frontend/display_url"},[file] => ,[plugin] => displayurl),[57] => Array ([type] => smarty,[code] => {literal} $(document).ready(function() { $("#searchTop").click(function() { $("#searchForm").attr("action", intelli.config.esyn_url + 'search.php').submit(); }); $("#SearchGoogle").click(function() { $("#searchForm").append(''); $("#searchForm").append(''); $("#search_input").attr("name", "q"); $("#searchForm").attr("action", "http://www.google.com/search").submit(); }); }); {/literal} var url = intelli.config.esyn_url.replace('http://', '').replace('/', ''); $("#searchTop").after(' '); ,[file] => ,[plugin] => googlesearch)),[tplFrontviewAccountsBeforeFooter] => Array ([14] => Array ([type] => smarty,[code] => {if isset($account)} {/if},[file] => ,[plugin] => contacts)),[viewListing] => Array ([24] => Array ([type] => php,[code] => global $eSyndiCat, $esynConfig, $esynSmarty, $listing; $limit = $esynConfig->getConfig('reviews_per_page'); $sql = "SELECT r.`title`, r.`body`, r.`status`, r.`date`, if(r.account_id > 0, a.username , r.author) as author "; $sql .= "FROM `{$eSyndiCat->mPrefix}reviews` r "; $sql .= "LEFT JOIN `{$eSyndiCat->mPrefix}accounts` a ON r.`listing_id` = a.`id` "; $sql .= "WHERE r.listing_id = '".$listing['id']."' AND r.`status` = 'active' ORDER BY r.date DESC" .($limit?" LIMIT $limit" : ''); $reviews = $eSyndiCat->getAll($sql); $esynSmarty->assign('reviews', $reviews); $eSyndiCat->setTable("reviews_rate"); $reviews = $eSyndiCat->all("*", "`listing_id` = :id", array('id' => $listing['id'])); $eSyndiCat->resetTable(); $stars = array(); for($i=1;$i$i,'name'=>$esynConfig->getConfig('reviews_opt'.$i),'class'=>($i==1?'class="rate"':'')); } $esynSmarty->assign('stars', $stars); $esynSmarty->assign('rate_count', $reviews[0]['rate_count']); $esynSmarty->assign('rate', number_format($reviews[0]['rate'],3)); $esynSmarty->assign('rate_perc', number_format($reviews[0]['rate'],3)*100/5); $esynSmarty->assign('url', ESYN_URL.'controller.php?plugin=reviews&listing_id='.$listing['id']);,[file] => ,[plugin] => reviews),[40] => Array ([type] => php,[code] => global $listing; if (($listing['display_url'] != "http://") && ($listing['display_url'] != "")) { $listing['real_url'] = $listing['url']; $listing['url'] = $listing['display_url']; },[file] => ,[plugin] => displayurl)),[theVeryStart] => Array ([25] => Array ([type] => php,[code] => global $eSyndiCat; $id_session = session_id(); $date_time = date("Y-m-d H:i:s"); $eSyndiCat->setTable("whoisonline"); $num = $eSyndiCat->one("COUNT(*) num", "`id_session` = '{$id_session}'"); if($num > 0) { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->update(array("date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active'), "`id_session` = '{$id_session}'"); } else { $eSyndiCat->update(array("date" => $date_time, "status" => 'active'), "`id_session` = '{$id_session}'"); } } else { if(isset($_COOKIE['account_id'])) { $eSyndiCat->factory("Account"); $esynAccountInfo = $GLOBALS['esynAccount']->getInfo($_COOKIE['account_id']); $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "username" => $esynAccountInfo['username'], "status" => 'active')); } else { $eSyndiCat->insert(array("id_session" => $id_session, "date" => $date_time, "status" => 'active')); } } $eSyndiCat->update(array("status" => 'expired'), "`date` < NOW() - INTERVAL 20 MINUTE"); $eSyndiCat->delete("`date` < NOW() - INTERVAL 2 DAY"); $eSyndiCat->resetTable();,[file] => ,[plugin] => whoisonline)),[suggestListingDataValidation] => Array ([27] => Array ([type] => php,[code] => global $esynI18N, $error, $msg, $esynConfig; if($esynConfig->getConfig('terms_verification') && !isset($_POST['terms_check'])) { $error = true; $msg[] = $esynI18N['error_terms_verification']; },[file] => ,[plugin] => terms_verification),[32] => Array ([type] => php,[code] => global $listings, $fields, $esynConfig, $esynI18N, $msg, $error; if ($fields && $esynConfig->getConfig('bad_words_checking')) { $bad_words = explode(",",$esynConfig->getConfig('bad_words')); $words = ""; if ($esynConfig->getConfig('checking_type') == "exact") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; $ldescription = strtolower($field_value); $ldescription = ereg_replace("[^A-Za-z0-9]", " ", $ldescription); $ldescription = explode(" "," ".$ldescription); foreach ($bad_words as $word) { if (array_search(strtolower(trim($word)),$ldescription)) { $words[] = $word; } } } } $bad_msg = $esynI18N['exact_bad_words']; } elseif ($esynConfig->getConfig('checking_type') == "stemming") { foreach($fields as $key=>$value) { if (($value['type'] == 'text') || ($value['type'] == 'textarea')) { $field_name = $value['name']; $field_value = $_POST[$field_name]; foreach ($bad_words as $word) { if (stristr($field_value,trim($word))) { $words[] = $word; } } } } $bad_msg = $esynI18N['stemming_bad_words']; } if(!empty($words)) { $error = true; $msg[] = $bad_msg.": ".implode(', ', $words); } },[file] => ,[plugin] => badwordsfilter),[47] => Array ([type] => php,[code] => global $listing, $esynI18N, $error, $msg; if(!empty($listing['tag'])) { if(!preg_match("/^[\w\s,]+$/i", $listing['tag'])) { $error =true; $msg[] = $esynI18N['tag_incorrect']; } },[file] => ,[plugin] => tagcloud)),[afterSuggestListingFields] => Array ([28] => Array ([type] => smarty,[code] => {if $config.terms_verification} {$lang.field_terms_of_suggesting}: {$config.terms_verification_text} {$lang.field_i_agree} {$lang.field_terms_of_suggesting} {/if},[file] => ,[plugin] => terms_verification)),[viewListingAfterGetListing] => Array ([30] => Array ([type] => php,[code] => global $eSyndiCat; global $esynSmarty; global $listing; global $esynConfig; $eSyndiCat->factory("Listing"); global $esynListing; $box_listings['related'] = $esynListing->getListingsByCategory($listing['category_id'], 0, $esynConfig->getConfig('num_related_listings')); $esynSmarty->assign_by_ref('box_listings', $box_listings);,[file] => ,[plugin] => listings_boxes)),[headSection] => Array ([34] => Array ([type] => smarty,[code] => {$config.google_verification},[file] => ,[plugin] => googletools),[42] => Array ([type] => smarty,[code] => {include_file css="plugins/twitter/templates/css/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterGetListingList] => Array ([37] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[afterGetSearchResult] => Array ([38] => Array ([type] => php,[code] => global $listings; if(isset($listings) && !empty($listings)) { foreach($listings as $key => $listing) { if(isset($listing['display_url']) && 'http://' != $listing['display_url']) { $listings[$key]['real_url'] = $listing['url']; $listings[$key]['url'] = $listing['display_url']; } } },[file] => ,[plugin] => displayurl)),[viewListingAfterFieldsDisplay] => Array ([41] => Array ([type] => smarty,[code] => {include file="box-header.tpl" caption="Twitter News" style="fixed"} {include file="box-footer.tpl"},[file] => ,[plugin] => twitter),[53] => Array ([type] => php,[code] => include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'display.php');,[file] => ,[plugin] => tagcloud)),[footerBeforeIncludeJs] => Array ([43] => Array ([type] => smarty,[code] => {include_file js="plugins/twitter/js/frontend/jquery.tweet"},[file] => ,[plugin] => twitter)),[afterFooterLinks] => Array ([45] => Array ([type] => php,[code] => global $esynConfig; $root = ESYN_URL; $path = $root."plugins".ESYN_DS."banners".ESYN_DS."js".ESYN_DS."banners.js"; echo ""; echo "var root = '{$root}';"; echo ""; echo "";,[file] => ,[plugin] => banners)),[beforeListingAdded] => Array ([48] => Array ([type] => php,[code] => global $listing, $eSyndiCat; if(!empty($listing['tag'])) { $info_table = $eSyndiCat->getAll("SHOW TABLE STATUS like '{$eSyndiCat->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ",",",$listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $eSyndiCat->setTable("dinamic_tags_clouds"); $eSyndiCat->insert($data); $eSyndiCat->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingInsert] => Array ([49] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { $info_table = $esynAdmin->getAll("SHOW TABLE STATUS like '{$esynAdmin->mPrefix}listings'"); $future_id = $info_table[0]['Auto_increment']; //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $future_id; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[phpAdminSuggestListingBeforeListingUpdate] => Array ([50] => Array ([type] => php,[code] => global $listing, $esynAdmin; if(!empty($listing['tag'])) { //$tags = str_replace(" ", ",", $listing['tag']); $tags = explode(",", $listing['tag']); $data_temp = array(); for ($i=0; $i < count($tags); $i++) { if(!empty($tags[$i]) && !in_array($tags[$i],$data_temp)) { $tags[$i] = trim($tags[$i]); $data[$i]['id_listing'] = $listing['id']; $data[$i]['tag'] = $tags[$i]; $data_temp[] = $tags[$i]; } } $esynAdmin->setTable("dinamic_tags_clouds"); $esynAdmin->insert($data); $esynAdmin->resetTable(); },[file] => ,[plugin] => tagcloud)),[adminDatabaseConsistency] => Array ([54] => Array ([type] => smarty,[code] => {$esynI18N.manage_tag_cloud}: {$esynI18N.manage_tag_cloud|upper} ,[file] => ,[plugin] => tagcloud)),[phpAdminDatabaseConsistencyType] => Array ([55] => Array ([type] => php,[code] => if($_GET['type'] == 'recounttags') { include(ESYN_PLUGINS.'tagcloud'.ESYN_DS.'admin'.ESYN_DS.'index.php'); },[file] => ,[plugin] => tagcloud)),[tplAdminDatabaseBeforeFooter] => Array ([56] => Array ([type] => smarty,[code] => {if 'consistency' eq $smarty.get.page} {include file=$smarty.const.ESYN_PLUGINS|cat:"tagcloud"|cat:$smarty.const.ESYN_DS|cat:"admin"|cat:$smarty.const.ESYN_DS|cat:"templates"|cat:$smarty.const.ESYN_DS|cat:"index.tpl"} {include_file js="plugins/tagcloud/js/admin/index"} {/if},[file] => ,[plugin] => tagcloud)),[paymentButtons] => Array ([58] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal),[64] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/templates/payment_buttons.tpl"},[file] => ,[plugin] => paypal)),[afterSuggestListing] => Array ([59] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal),[65] => Array ([type] => php,[code] => if(isset($_POST['payment_type']) && 'paypal' == $_POST['payment_type']) { require_once(ESYN_HOME.'plugins'.ESYN_DS.'paypal'.ESYN_DS.'paypal.php'); },[file] => ,[plugin] => paypal)),[plansBeforeSubmitButton] => Array ([60] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal),[66] => Array ([type] => smarty,[code] => {include file=$smarty.const.ESYN_HOME|cat:"plugins/paypal/admin/templates/plans_before_submit_button.tpl"},[file] => ,[plugin] => paypal)),[plansAfterViewInclude] => Array ([61] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal),[67] => Array ([type] => php,[code] => global $esynSmarty; $units_duration = array('d' => 'Days', 'w' => 'Weeks', 'm' => 'Months', 'y' => 'Years'); $esynSmarty->assign('units_duration', $units_duration);,[file] => ,[plugin] => paypal)),[plansAfterJsInclude] => Array ([62] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal),[68] => Array ([type] => smarty,[code] => {include_file js="plugins/paypal/js/admin/paypal"},[file] => ,[plugin] => paypal)),[adminPlanCommonFieldFilled] => Array ([63] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal),[69] => Array ([type] => php,[code] => global $plan; if(isset($_POST['recurring'])) { $plan['recurring'] = (int)$_POST['recurring']; $plan['duration'] = $_POST['duration']; $plan['units_duration'] = $_POST['units_duration']; },[file] => ,[plugin] => paypal))),[tmpl] => marangal,[printRegular] => regular-listing-display.tpl,[printSponsored] => sponsored-listing-display.tpl,[printFeatured] => featured-listing-display.tpl,[printPartner] => partner-listing-display.tpl,[template_dir] => /home/director/public_html/esyndicat/templates/marangal/,[compile_dir] => /home/director/public_html/esyndicat/tmp/marangal/,[config_dir] => configs/,[plugins_dir] => Array ([0] => plugins),[debugging] => ,[error_reporting] => ,[debug_tpl] => ,[debugging_ctrl] => NONE,[compile_check] => 1,[force_compile] => ,[caching] => ,[cache_dir] => /home/director/public_html/esyndicat/tmp/smartycache/,[cache_lifetime] => 3600,[cache_modified_check] => 1,[php_handling] => 0,[security] => ,[secure_dir] => Array (),[security_settings] => Array ([PHP_HANDLING] => ,[IF_FUNCS] => Array ([0] => array,[1] => list,[2] => isset,[3] => empty,[4] => count,[5] => sizeof,[6] => in_array,[7] => is_array,[8] => true,[9] => false,[10] => null),[INCLUDE_ANY] => ,[PHP_TAGS] => ,[MODIFIER_FUNCS] => Array ([0] => count),[ALLOW_CONSTANTS] => ,[ALLOW_SUPER_GLOBALS] => 1),[trusted_dir] => Array (),[left_delimiter] => {,[right_delimiter] => },[request_vars_order] => EGPCS,[request_use_auto_globals] => 1,[compile_id] => ,[use_sub_dirs] => ,[default_modifiers] => Array (),[default_resource_type] => file,[cache_handler_func] => ,[autoload_filters] => Array (),[config_overwrite] => 1,[config_booleanize] => 1,[config_read_hidden] => ,[config_fix_newlines] => 1,[default_template_handler_func] => ,[compiler_file] => Smarty_Compiler.class.php,[compiler_class] => Smarty_Compiler,[config_class] => Config_File,[_tpl_vars] => Array ([SCRIPT_NAME] => /esyndicat/automotive-esyndicat-directories/index.php,[config] => Array ([htaccessfile_0] => # Uncomment next line if you get 404 error on accounts page # Options -MultiViews # enable mod_rewrite RewriteEngine on ,[htaccessfile_1] => # SECTION 1 # correct urls for yahoo bot RewriteCond %{REQUEST_URI} !\..+$ RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) %{REQUEST_URI}/ [R=301,L] # mod_rewrite rules for plugins RewriteRule ^mod/(.*)/$ controller.php?plugin=$1 [QSA,L] RewriteRule ^mod/(.*)/(.*)/$ controller.php?plugin=$1&file=$2 [QSA,L] RewriteRule ^mod/(.*)/(.*).html$ controller.php?plugin=$1&file=$2 [QSA,L] # mod_rewrite rules for view account page RewriteRule ^accounts/$ accounts.php [QSA,L] RewriteRule ^accounts/(.*)/$ accounts.php?alpha=$1 [QSA,L] RewriteRule ^accounts/(.*).html$ view-account.php?account=$1 [QSA,L] RewriteRule ^articles/$ controller.php?plugin=articles [QSA,L] RewriteRule ^articles/([a-z]+).html$ controller.php?plugin=articles&file=$1 [QSA,L] RewriteRule ^articles/index([0-9]+).html$ controller.php?plugin=articles&page=$1 [QSA,L] RewriteRule ^articles/(.*)-a([0-9]+).html$ controller.php?plugin=articles&title=$1&id=$2 [QSA,L] #mod_rewrite rules for news plugin RewriteRule ^(.*)-n([0-9]+).html$ controller.php?plugin=news&title=$1&id=$2 [QSA,L] RewriteRule ^news.html$ controller.php?plugin=news [QSA,L] RewriteRule ^news([0-9]+).html$ controller.php?plugin=news&page=$1 [QSA,L] # mod_rewrite rules for tell friend pages RewriteRule ^tell-friend.html$ controller.php?plugin=tell_friend [QSA,L] RewriteRule ^sitemap.xml$ tmp/sitemap/google/sitemap.xml [QSA,L] RewriteRule ^sitemap([0-9]+).xml$ tmp/sitemap/google/sitemap$1.xml [QSA,L] RewriteRule ^sitemap_index.xml$ tmp/sitemap/google/sitemap_index.xml [QSA,L] RewriteRule ^urllist.txt$ tmp/sitemap/urllist.txt [QSA,L] # mod_rewrite rules for tag cloud RewriteRule ^tags/$ controller.php?plugin=tagcloud&view=all [QSA,L] RewriteRule ^tag/([\w\s]+)/$ controller.php?plugin=tagcloud&tag=$1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index.html$ controller.php?plugin=tagcloud&tag=$1&page=1 [QSA,L] RewriteRule ^tag/([\w\s]+)/index([0-9]+).html$ controller.php?plugin=tagcloud&tag=$1&page=$2 [QSA,L] ,[htaccessfile_2] => # SECTION 2 # mod_rewrite rules for ROOT category RewriteRule ^index([0-9]+).html$ index.php?category=0&page=$1 [QSA,L] # mod_rewrite rule for pageranks listing page RewriteRule ^pagerank([0-9]+)-listings.html$ controller.php?plugin=pageranks&pr=$1 [QSA,L] RewriteRule ^pagerank([0-9]+)-listings([0-9]+).html$ controller.php?plugin=pageranks&pr=$1&page=$2 [QSA,L] ,[htaccessfile_3] => # SECTION 3 # mod_rewrite rules for categories pages with HTML path option disable RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L] RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] ,[htaccessfile_4] => # SECTION 4 # mod_rewrite rule for suggest listing page RewriteRule report-listing.php$ report-listing.php [QSA,L] ,[htaccessfile_5] => # SECTION 5 RewriteRule ^([a-z]+)-listings.html$ listings.php?view=$1 [QSA,L] RewriteRule ^([a-z]+)-listings([0-9]+).html$ listings.php?view=$1&page=$2 [QSA,L] ,[htaccessfile_6] => # SECTION 6 # mod_rewrite rules for view listing page RewriteRule ^([^/]+)-l([0-9]+).html$ view-listing.php?cat=&title=$1&id=$2 [QSA,L] RewriteRule ^(.*)/([^/]+)-l([0-9]+).html$ view-listing.php?cat=$1&title=$2&id=$3 [QSA,L] ,[htaccessfile_7] => # SECTION 7 # mod_rewrite rules for additional pages RewriteRule ^p/(.*).html$ page.php?name=$1 [QSA,L] RewriteRule ^p(.*).html$ page.php?name=$1 [QSA,L] ,[htaccessfile_8] => # SECTION 8 # mod_rewrite rules for error pages RewriteRule ^([0-9]+).htm$ error.php?error=$1 [QSA,L] ,[htaccessfile_9] => # SECTION 9 # mod_rewrite rules for suggest category page RewriteRule ^suggest-category-([0-9]+).html$ suggest-category.php?id=$1 [QSA,L] ,[htaccessfile_10] => # SECTION 10 RewriteRule ^LICENSE.htm$ LICENSE.htm [QSA,L] ,[htaccessfile_11] => # SECTION 11 # mod_rewrite rules for categories pages RewriteRule ^(.*)_([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L] RewriteRule ^(.*).html?(.*)$ index.php?category=$1&$2 [QSA,L] RewriteRule ^(.*).html$ index.php?category=$1 [QSA,L] ,[htaccessfile_12] => # SECTION 12 ErrorDocument 500 500.htm ErrorDocument 404 404.htm ErrorDocument 403 403.htm ErrorDocument 401 401.htm,[accounts] => 0,[accounts_autoapproval] => 0,[accounts_registered] => 1,[admin_online_expiry_time] => 60,[display_news] => 1,[display_new_plugins] => 1,[check_updates] => 1,[captcha] => 1,[captcha_name] => kcaptcha,[captcha_preview] => ,[captcha_case_sensitive] => 1,[captcha_num_chars] => 5,[suggest_category] => 1,[use_html_path] => 0,[related] => 0,[neighbour] => 0,[show_children_listings] => 0,[categories_order] => title,[num_categories_cols] => 3,[num_listings_display] => 0,[subcats_display] => 0,[categories_tree_type] => tree,[categories_display_type] => horizontal,[categories_icon_width] => 32,[categories_icon_height] => 32,[cron_recip] => 0,[cron_broken] => 0,[cron_pagerank] => 0,[cron_num_listings] => 10,[cron_check_interval] => 1,[cron_report_job] => 0,[cron_report_job_extra] => 0,[cron_report_cycle] => 0,[cron_report_cycle_extra] => 0,[cron_backup] => 0,[cron_backup_archive] => 0,[cron_backup_interval] => 30,[cron_backup_last_time] => ,[sponsored_listings] => 1,[currency_symbol] => $,[sponsored_only] => 0,[num_sponsored_display] => 3,[payment_transactions] => 1,[mcross_functionality] => 0,[mcross_number_links] => 5,[mcross_only_sponsored] => 0,[version] => 2.3.05,[site] => eSyndiCat Directories,[site_logo] => site_logo_388bde6351.png,[site_watermark] => ,[site_watermark_position] => bottom_right,[site_main_content] => This is a source for all those great eSndicate Directories that can found check out our listings right away. To find out more visit their site eSyndiCat and the eSyndiCat Forum. ,[site_description] => This is a source for all those great eSndicate Directories that can found check out our listings right away.,[site_keywords] => eSndicate Directories,[backup] => backup/,[site_email] => directorys1@btinternet.com,[bugs_email] => directorys1@btinternet.com,[tmpl] => marangal,[admin_tmpl] => default,[lang] => en,[charset] => UTF-8,[date_format] => %b %e, %Y,[suffix] => :: Powered by eSyndiCat 2.3,[title_breadcrumb] => 0,[language_switch] => 0,[mod_rewrite] => 1,[lowercase_urls] => 1,[display_frontend] => 1,[underconstruction] => We are sorry. Our site is under construction.,[old_pages_urls] => 0,[esyndicat_news_url] => http://blog.intelliants.com/?view=rss,[esyndicat_new_plugins_url] => http://tools.esyndicat.com/new_plugins.php,[esyndicat_block_positions] => left,right,top,center,bottom,user1,user2,verybottom,verytop,topbanner,[ckeditor_color] => #F00,[esyndicat_menu_type] => inventory,main,bottom,account,[allow_listings_submission] => 1,[auto_approval] => 0,[new_window] => 1,[forward_to_listing_details] => 0,[pagerank] => 1,[thumbshot] => 1,[num_index_listings] => 20,[num_get_listings] => 20,[num_featured_display] => 20,[num_partner_display] => 20,[visitor_sorting] => 1,[listings_sorting] => alphabetic,[listings_sorting_type] => ascending,[num_cats_for_search] => 5,[expiration_period] => ,[expiration_action] => ,[broken_listings_report] => 1,[listing_check] => 0,[broken_visitors] => 1,[http_headers] => 301,302,200,[reciprocal_check] => 0,[reciprocal_required_only_for_free] => 0,[reciprocal_domain] => 1,[reciprocal_text] => http://directoriesbyscript.com/,[recip_featured] => 0,[reciprocal_visitors] => 1,[duplicate_checking] => 0,[duplicate_type] => domain,[duplicate_visitors] => 1,[reciprocal_label] => To validate the reciprocal link please include the following HTML code in the page at the URL specified above, before submitting this form:,[reciprocal_code] => ,[mail_function] => php mail,[mimetype] => html,[sendmail_path] => /usr/bin/sendmail,[smtp_secure_connection] => ,[smtp_server] => ,[smtp_user] => ,[smtp_password] => ,[listing_submit] => 1,[listing_submit_subject] => Listing was submitted to {own_site},[listing_submit_body_html] => Dear Sir/Madam, We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed within 24 hours. After approval and activation, your URL will be listed at: {dir_listing} Now, please add a link to {own_site} to any of your site's pages. Please use the code below: {own_site} OR use the following information TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_submit_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a link to {your_site_url} has been submitted to {own_site} ({own_dir_url}). Your submission will be reviewed as soon as possible. After approval and activation, your URL will be listed at: {dir_listing} Now, please add a link to {own_site} to any of your site's pages if you would like to as this is optional. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_approve] => 1,[listing_approve_subject] => Listing was approved in {own_site},[listing_approve_body_html] => Dear Sir/Madam, Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at: {dir_listing} If you have not placed reciprocal listing to {own_site} yet, please add a listing to {own_url} to any of your site's pages. Please use the code below: {own_site} OR use the following information TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_approve_body_plaintext] => Dear Sir/Madam, Congratulations! Your listing {your_site_url} has been approved for {own_site}. You can view it at {dir_listing}. All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[cron] => 1,[listing_disapprove] => 1,[listing_disapprove_subject] => Listing was disapproved in {own_site},[listing_disapprove_body_html] => Dear Sir/Madam, Your listing {your_site_url} has been disapproved in {own_site}. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_disapprove_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been disapproved in {own_site} Listings Directory. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_move] => 1,[listing_move_subject] => Listing was moved in {own_site},[listing_move_body_html] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was moved into another category. This is the new location of your listing: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_move_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was moved into another category. This is the new location of your listing: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_modify] => 1,[listing_modify_subject] => Listing was modified in {own_site},[listing_modify_body_html] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was modified. These are the new attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_modify_body_plaintext] => Dear Sir/Madam, We are glad to inform you, that your listing to site {your_site_url} was modified. These are the new attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here: {dir_listing} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_reject] => 1,[listing_reject_subject] => Listing was banned in {own_site},[listing_reject_body_html] => Dear Sir/Madam, Your listing to {your_site_url} has been banned in {own_site}. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_reject_body_plaintext] => Dear Sir/Madam, Listing to {your_site_url} in our directory has been banned. If you have questions, please feel free to ask us. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_delete] => 1,[listing_delete_subject] => Listing was deleted from {own_site},[listing_delete_body_html] => Dear Sir/Madam, Your listing {your_site_url} has been deleted from {dir_listing} category, probably because you did not place reciprocal listing(s) to {own_site}. To see your listing again, please add a listing to our site and inform us. {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_delete_body_plaintext] => Dear Sir/Madam, Your listing {your_site_url} has been deleted from {dir_listing} category, To see your listing again, please add a listing to our site and inform us. {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listing_admin_add] => 1,[listing_admin_add_subject] => Listing was added to {own_site},[listing_admin_add_body_html] => Dear Sir/Madam, We are glad to inform you that a listing to {your_site_url} has been added to {own_site} ({own_dir_url}). These are the attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} You can view your listing here: {dir_listing} Now, please add a listing to {own_site} to any of your site's pages. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listing_admin_add_body_plaintext] => Dear Sir/Madam, We are glad to inform you that a listing to {your_site_url} has been added to {own_site} Listings Directory ({own_dir_url}). These are the attributes of your listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Rank: {your_site_rank} Status: {your_site_status} You can view your listing here {dir_listing} Now, please add a listing to {own_site} to any of your site's pages. Please use the code below: ------------------------------------ {own_site} ------------------------------------ OR use the following information ------------------------------------ TITLE: {own_site} URL: {own_url} DESCRIPTION: your site description All the listings in our directory are direct, so they will improve your listing popularity. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account] => 1,[register_account_subject] => Thanks for registration at {own_site},[register_account_body_html] => Dear Sir/Madam, Thanks for your registration at {own_site}. Here is information you should use in order to login: Your username: {account_username} Your password: {account_pwd} Your activation key: {key} To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm You may change your password later by editing your personal attributes in your account area. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[register_account_body_plaintext] => Dear Sir/Madam, Thanks for your registration at {own_site}. Here is information you should use in order to login: Your username: {account_username} Your password: {account_pwd} Your activation key: {key} To activate your account go to {own_site}register.php?user={account_username_url}&key={key}&action=confirm You may change your password later by editing your personal attributes in your account area. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[admin_notif_subject] => Listing was submitted to {own_site},[admin_notif_body_html] => Dear {admin_name}, Listing was submitted to {own_site}. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[admin_notif_body_plaintext] => Dear {admin_name}, Listing was submitted to {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[listings_payment_subject] => Listing was made sponsored in {own_site},[listings_payment_body_html] => Dear {admin_name}, Listing was made sponsored in {own_site}. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Plan: {your_site_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[listings_payment_body_plaintext] => Dear {admin_name}, Listing was made sponsored in {own_site} Directory. Please check it. These are the attributes of a listing: Title: {your_site_title} URL: {your_site_url} Description: {your_site_desc} Email: {your_site_email} Plan: {your_site_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_deleted] => 1,[account_deleted_subject] => Account deleted in {own_site},[account_deleted_body_html] => Dear {username}, Your account was removed from {own_site} Let us know if you have any questions. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_deleted_body_plaintext] => Dear {username}, Your account was removed from {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[password_change_subject] => Password change request at {own_site},[password_change_body_html] => Dear {username}, You requested a password change in {own_site}. Now you should use the following credentials to log in as account: username: {username} password: {password} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[password_change_body_plaintext] => Dear {username}, You requested a password change in {own_site}. Now you should use the following credentials to log in as account: username: {username} password: {password} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_approved] => 1,[account_approved_subject] => Account was approved at {own_site},[account_approved_body_html] => Dear {username}, Your account was approved in {own_site}. Now you can log in to the directory. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_approved_body_plaintext] => Dear {username}, Your account was approved in {own_site}. Now you can log in to the directory. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_disapproved] => 1,[account_disapproved_subject] => Account was disapproved at {own_site},[account_disapproved_body_html] => Dear {username}, Your account was disapproved in {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_disapproved_body_plaintext] => Dear {username}, Your account was disapproved in {own_site}. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[payment_expiration] => 1,[payment_expiration_subject] => Payment is about to expire at {own_site},[payment_expiration_body_html] => Dear {username}, Hi, Your listing {your_site_title} will be expired in {days}. You can click here to extend the sponsorship: {upgrade_url} {action_expire} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[payment_expiration_body_plaintext] => Hi, Your listing - {your_site_title} - will be expired in {days}. You can click here to extend the sponsorship: {upgrade_url} {action_expire} Thanks in advance. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[broken_listing_report_subject] => Broken Listing Reported at {own_site},[broken_listing_report_body_html] => Dear {admin_name}, The following listing is reported as being broken: Listing ID: {id} Listing URL: {url} Listing Title: {title} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[broken_listing_report_body_plaintext] => Dear {admin_name}, The following listing is reported as being broken: Listing ID: {id} Listing URL: {url} Listing Title: {title} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[article] => 1,[article_number] => 20,[article_order] => date,[articles_registered] => 0,[article_auto_approval] => 0,[article_summary_max_chars] => 300,[article_allow_html] => 1,[num_new_articles] => 5,[contact_us_subject] => Contact us page ({subject}),[contact_us_body_plaintext] => Dear {admin_name}, You got contact requests with subject: {subject}, in {own_site} Directory. Please check it. Fullname: {fullname} Email address: {email} Reason: {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[contact_us_body_html] => Dear {admin_name}, You got contact requests with subject: {subject}, in {own_site} Directory. Please check it. Fullname: {fullname} Email address: {email} Reason: {reason} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[news] => 1,[news_number] => 3,[news_max] => 200,[news_order] => date,[reviews_title] => 1,[review_accounts_only] => 0,[review_approval] => 0,[title_max_chars] => 150,[reviews_min_chars] => 10,[reviews_max_chars] => 1000,[reviews_per_page] => 5,[num_best_rated] => 5,[reviews_opt1] => I Would Not Recommend,[reviews_opt2] => Fair,[reviews_opt3] => Good,[reviews_opt4] => Very Good,[reviews_opt5] => Exceptional,[terms_verification] => 1,[terms_verification_text] => Only eSyndiCat directories will be accepted.,[tell_friend_subject] => {name} recommends eSyndiCat Directory,[tell_friend_body_plaintext] => Dear {friends_name}, The following website was recommended to you by {name}: {url} {message} _____________________eSyndiCat Directory,[tell_friend_body_html] => Dear {friends_name}, The following website was recommended to you by {name}: {url} {message} _____________________eSyndiCat Directory,[newsletter_confirm_subject] => Thanks for subscribing at {own_site},[newsletter_confirm_body_plain] => Greetings {realname},\r\n\r\n thanks for requesting the {own_site} newsletter.\r\n\r\n Before we begin sending it, we want to make sure we\r\n have your permission.\r\n\r\n Below are the confirmation instructions.\r\n\r\n -----------------------------------------------------------\r\n CONFIRM BY VISITING THE LINK BELOW:\r\n\r\n To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key}\r\n\r\n Click the link above to give us permission to send you\r\n information. It''s fast and easy! If you cannot click the\r\n full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to subscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_confirm_body_html] => Greetings {realname}, thanks for requesting the {own_site} newsletter. Before we begin sending it, we want to make sure we have your permission. Below are the confirmation instructions. ----------------------------------------------------------- CONFIRM BY VISITING THE LINK BELOW: To activate your subscription go to {own_url}controller.php?plugin=mailer&action=subscribe&key={key} Click the link above to give us permission to send you information. It''s fast and easy! If you cannot click the full URL above, please copy and paste it into your web browser. If you do not want to subscribe, simply ignore this message. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[newsletter_unsubscribe_subject] => Thanks for unsubscribing at {own_site},[newsletter_unsubscribe_body_plain] => Greetings {realname},\r\n\r\n To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key}\r\n\r\n If you cannot click the full URL above, please copy and paste it into your web\r\n browser.\r\n\r\n If you do not want to unsubscribe, simply ignore this message.\r\n ______________________________\r\n Thank you,\r\n {own_site} Administration Team\r\n {own_url}\r\n {own_email},[newsletter_unsubscribe_body_html] => Greetings {realname}, To unsubscribe go to {own_url}controller.php?plugin=mailer&action=unsubscribe&key={key} If you cannot click the full URL above, please copy and paste it into your web browser. If you do not want to unsubscribe, simply ignore this message. ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[newsletter_autoapproval] => 1,[num_new_listings] => 20,[num_random_listings] => 20,[num_top_listings] => 5,[num_related_listings] => 5,[recaptcha_publickey] => ,[recaptcha_privatekey] => ,[bad_words_checking] => 1,[checking_type] => exact,[bad_words] => ,[google_analytics] => ,[google_verification] => ,[num_verytop_banners] => 1,[num_verybottom_banners] => 1,[num_center_banners] => 1,[num_topbanner_banners] => 1,[num_left_banners] => 1,[num_right_banners] => 1,[num_top_banners] => 1,[num_bottom_banners] => 1,[num_user1_banners] => 1,[num_user2_banners] => 1,[banner_guests_submit] => 1,[banner_prefix] => banner_,[banners_payment] => 1,[banners_payment_subject] => Banner was submitted to {own_site},[banners_payment_body_plaintext] => Dear {admin_name}, Banner was submitted to {own_site} Directory. Please check it. These are the attributes of a banner: Title: {item_title} URL: {item_url} Email: {item_email} Banner Plan: {item_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[banners_payment_body_html] => Dear {admin_name}, Banner was submitted to {own_site} Directory. Please check it. These are the attributes of a banner: Title: {item_title} URL: {item_url} Email: {item_email} Banner Plan: {item_plan} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[tags_count] => 30,[tag_period_update] => 24,[tag_count_for_recount] => 30,[tag_clouds_last_modified] => 1337388916,[paypal_currency_code] => USD,[paypal_email] => ,[paypal_demo] => 0,[paypal_secret_word] => c680989de9cf61d0330b3bd18543eb14,[display_twitter] => 1,[config_keys] => recaptcha_publickey,recaptcha_privatekey,sendmail_path,smtp_secure_connection,smtp_server,smtp_user,smtp_password,[default_categories_icon] => templates/common/img/category_icons/category_icon.gif,[smtp_port] => 25,[account_register] => 1,[account_register_subject] => Account was registered to {own_site},[account_register_body_html] => Dear {admin_name}, Account was registered to {own_site}. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_register_body_plaintext] => Dear {admin_name}, Account was registered to {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirmed] => 1,[account_confirmed_subject] => Account was confirmed in {own_site},[account_confirmed_body_html] => Dear {admin_name}, Account was confirmed in {own_site}. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} Status: {account_status} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirmed_body_plaintext] => Dear {admin_name}, Account was confirmed in {own_site} Directory. Please check it. These are the attributes of the account: Username: {account_username} Email: {account_email} Status: {account_status} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin] => 1,[register_account_admin_subject] => Thanks for registration at {own_site},[register_account_admin_body_plaintext] => Dear Sir/Madam, Your website {your_site_url} has been added to {own_site}. This is the information we have added: Title: {your_site_title} Description: {your_site_desc} URL: {your_site_url} Email: {your_site_email} You can find your listing at {dir_listing} If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information Your username: {account_username} Your password: {account_pwd} Login page: {own_site}/login.php ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[register_account_admin_body_html] => Dear Sir/Madam, Your website {your_site_url} has been added to {own_site} This is the information we have added: Title: {your_site_title} Description: {your_site_desc} URL: {your_site_url} Email: {your_site_email} You can find your listing at {dir_listing} If you would like to update your listing information or provide more complete contact information, etc, you can login using the following information: Your username: {account_username} Your password: {account_pwd} Login page: {own_site}login.php ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[suggest_category_subject] => Category was submitted to {own_site},[suggest_category_body_html] => Dear {admin_name}, Category was submitted to {own_site}. Please check it. These are the attributes of a category: Title: {cat_title} Category path: {cat_path} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[suggest_category_body_plaintext] => Dear {admin_name}, Category was submitted to {own_site} Directory. Please check it. These are the attributes of a category: Title: {cat_title} Category path: {cat_path} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email] => 1,[account_confirm_email_subject] => Confirm email in {own_site},[account_confirm_email_body_plaintext] => Dear {username}, We have received new password request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=restore_password&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_confirm_email_body_html] => Dear {username}, We have received new password request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_dir_url}confirm.php?action=restore_password&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[account_change_email] => 1,[account_change_email_subject] => Confirm change email in {own_site},[account_change_email_body_plaintext] => Dear {username}, We have received change email request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_site}confirm.php?action=change_email&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email},[account_change_email_body_html] => Dear {username}, We have received change email request for your account ({username}) in {own_site}. If this request was initiated by you, please click on following link to confirm your email: {own_dir_url}confirm.php?action=change_email&account={account_id}&r={sec_key} ______________________________ Thank you, {own_site} Administration Team {own_url} {own_email} ,[esyn_url] => http://directoriesbyscript.com/esyndicat/),[esynAccountInfo] => ,[lang] => Array ([login] => Login,[interface_language] => Interface Language,[password] => Password,[forgot_password] => Forgot your password?,[login_btn] => Login,[invalid_username] => Invalid username.,[invalid_password] => Invalid password.,[changes_saved] => Changes saved,[items_deleted] => Deleted.,[save_changes] => Save Changes,[home] => Home,[help] => Help,[error_name] => The name is empty,[plan_added] => Plan added.,[edit] => Edit,[delete] => Delete,[field_url] => Listing URL,[field_title] => Title,[field_description] => Description,[field_email] => Email,[field_reciprocal] => Reciprocal URL,[order] => Order,[description] => Description,[title] => Title,[add] => Add,[view_all] => View All,[search] => Search,[logout] => Logout,[date] => Date,[status] => Status,[go] => Go,[_select_] => -- select --,[reply] => Reply,[email_sent] => Email Sent,[body] => Body,[from] => From,[body_incorrect] => Body is incorrect.,[to] => To,[subject] => Subject,[author] => Author,[email] => Email,[categories] => Categories,[listings] => Listings,[sponsored] => Sponsored,[featured] => Featured,[partner] => Partner,[total] => Reviews total,[reciprocal] => Reciprocal,[comments] => Comments,[accounts] => Accounts,[move] => Move,[password_incorrect] => Password is incorrect.,[passwords_not_match] => Passwords do not match.,[account_added] => Account added.,[account] => Account,[browse_categories] => Browse Categories,[create] => Create,[browse] => Browse,[category] => Category,[listing] => Listing,[expand_all] => Expand All,[collapse_all] => Collapse All,[done] => Done,[all_categories] => All Categories,[all_listings] => All Listings,[title_incorrect] => Title incorrect.,[plan_assigned] => Sponsored plan assigned.,[meta_description] => Meta-description,[meta_keywords] => Meta-keywords,[yes] => Yes,[no] => No,[comment] => Comment,[partner_since] => Partner Since,[clicks] => Clicks,[rating] => Rating,[featured_since] => Featured Since,[ban] => Ban,[deleted] => Deleted.,[send] => Send,[disable] => Disable,[myfield] => myfield,[pagerank] => PageRank,[some] => some,[unknown_upload] => Unknown error during file upload.,[incorrect_filetype] => Incorrect file type.,[upload_correct_permission] => Couldn't copy uploaded image to the destination. Please make sure that the script has write permission.,[view] => View,[additional_fields] => Additional Fields,[rank] => Rank,[incorrect_email] => Please input correct email.,[username] => Username,[fullname] => Full Name,[payment_notif] => Payment Notification,[password_confirm] => Password Confirmation,[enabled] => Enabled,[disabled] => Disabled,[no_comments] => No Comments.,[page] => Page,[pages] => Pages,[page_content_sample] => Your page content should be here...,[url] => URL,[suggest_listing] => Suggest Listing,[listing_details] => Listing Details,[image_width] => Image Width,[remove] => Remove,[of] => of,[first_page] => First Page,[previous_page] => Previous Page,[next_page] => Next Page,[last_page] => Last Page,[no_listings] => No listings yet created. Click here to add new one.,[any_word] => any word,[all_words] => all words,[exact_match] => exact match,[language] => Language,[default] => Default,[set_default] => Set Default,[download] => Download,[about] => About Us,[account_created] => Account created! Thank you!,[advanced_search] => Advanced Search,[advertise] => Advertise Us,[approval_listings] => Waiting Approval,[ascending] => ascending,[author_email] => Author Email,[category_title] => Category title,[category_submitted] => Category was submitted for consideration!,[change_password] => Change Password,[characters_left] => characters left,[click_here] => Click here,[comment_added] => Comment added.,[comment_author] => Comment Author,[comment_rank] => Listing Rank: ,[company_info] => Company Info,[company_jobs] => Company Jobs,[company_policy] => Company Policy,[company_terms] => Terms Of Service,[complete_submission] => Complete submission,[confirmation_sent] => Confirmation for password change request sent.,[current_password] => Current Password,[description_empty] => Description is empty!,[descending] => descending,[edit_account] => Edit Account,[edit_info] => Edit Info,[edit_listing] => Edit Listing,[account_email_exists] => Account with this email already exists!,[account_listings] => My listings,[account_login] => Account Login,[account_no_listings] => You have not submitted any listings. Please choose correct category and make sure it fits your listing best. Then click SUGGEST LISTING, input requested information and submit it. Usually it takes about 24 hours for a listing to be reviewed by administrator.,[accounts_area] => Accounts Area,[error] => Error,[featured_listings] => Featured,[first] => First,[free] => Free,[friend_fullname] => Your friend's fullname,[friend_told] => Message has just been sent to your friend.,[forgot] => Forgot password?,[last] => Last,[leave_comment] => Leave Comment,[listing_added] => Listing added,[listing_changed] => Listing changed,[listing_rank] => Listing Rank,[listing_status] => Listing Status,[listing_submitted] => Thank you! Your listing was submitted for consideration,[listings_found] => Listings Found: ,[logged_out] => You have been logged out.,[my_categories] => My Categories,[my_listings] => My listings,[new_listings] => New listings,[new_password] => New Password,[new_password2] => New Password[confirm],[new_password_sent] => New password has just been sent to account email!,[neighbour_categories] => Neighbour Categories,[next] => Next,[no_results] => No results,[non_sponsored] => Non sponsored link,[not_found_listings] => No listings found. Please try to broaden your search criterias!,[not_available] => Not available,[no_approval_listings] => No listings waiting for approval in your categories,[not_rated] => This listing is not rated yet. Be the first who rates it!,[partner_listings] => Partner listings,[policy] => Privacy Policy,[previous] => Previous,[purchase] => purchase,[reason] => Reason,[related_categories] => Related Categories,[restore_password] => Restore password,[statistics] => Statistics,[sponsored_listings] => Sponsored,[sponsored_plan] => Sponsored Plan,[sponsored_plans] => Sponsored Plans,[submit] => Submit,[submission] => Submission,[suggest_category_top1] => You are going to suggest category here:,[suggest_listing_top1] => You are going to suggest your listing to the following category:,[suggest_listing_top2] => Please make sure your listing fits this category.,[purchase_successful] => Thank you. We received your payment.,[password_changed] => Password has been successfully changed.,[passwords_dont_match] => Passwords you entered do not match.,[password_empty] => You have not entered a new password.,[popular_listings] => Popular listings,[posted] => posted on ,[rate_listing] => Rate Listing,[report_broken_listing] => Report Broken Listing,[rating_num] => Number of Ratings:,[reciprocal_empty] => Reciprocal link is empty!,[register] => Register,[register_account] => Do not have an account?,[submission_confirmation] => Please verify if submitted information is correct.,[upgrade_listing] => Upgrade Listing,[url_empty] => url is empty!,[username_empty] => Make sure you entered valid username or your account is active.,[terms] => Terms of Use,[title_empty] => Title is empty!,[thanks] => Thank you.,[thank_text] => to get back to index page.,[thanks_for_vote] => Thanks for vote.,[top_listings] => Top listings,[total_num_categories] => Number of categories:,[total_num_listings] => Number of listings:,[transaction_failed] => Transaction failed! Please contact us!,[transaction_failed2] => Stop trying hack our site! Your ip is has been tracked!,[transaction_success_title] => Transaction successful!,[transaction_success] => Transaction successful! You will be sent an email within 24 hours!,[view_amazon] => View Amazon Info,[view_listing] => View Listing,[view_my_listings] => View My listings,[view_my_categories] => Categories To Edit,[your_email] => Your email,[your_listing_category] => Your listing category,[your_listing_url] => Your listing URL,[your_listing_title] => Your listing title,[your_listing_description] => Your listing description,[your_listing_reciprocal] => Listing reciprocal URL,[your_message] => Your message here,[your_password] => Your password,[your_password_confirm] => Confirm your password,[your_username] => Your username,[your_username_here] => Your username here:,[welcome] => Welcome,[choose_plan] => Choose a Plan,[change_plan] => Change plan,[wrong_image_type] => Only following image types are allowed ({types}) for `{name}` field,[sort_listings_by] => Sort listings by: ,[alphabetic] => Alphabetic,[error_already_voted] => You've already voted. Please try later.,[error_banned] => Listing was banned. Please do not try to add it again.,[error_broken_listing] => Listing seems to be broken. Please check it manually.,[error_captcha] => Make sure you entered valid captcha code.,[error_category_empty] => Please go into appropriate category and become account there.,[error_category_exists] => Category was already suggested before.,[error_category_locked] => This category is locked by administrator.,[error_contact_fullname] => Please fill in full name.,[error_directory_readonly] => Uploads directory is readonly. Please make it writable.,[error_email_incorrect] => Make sure you entered valid email.,[error_sponsored] => You should choose sponsored plan. Only sponsored listings are accepted.,[error_listing_present] => Your listing already exists in directory.,[error_file_upload] => Unknown error during file upload.,[error_max_description] => Your description length should be less than {num} symbols.,[error_min_description] => Your description length should be more than {num} symbols.,[error_comment] => Make sure you entered valid comment.,[error_comment_author] => Make sure you entered valid comment author.,[error_comment_email] => Make sure you entered valid author email.,[error_max_comment] => Your comment length should be less than {maxLength} symbols.,[error_min_comment] => Your comment length should be more than {minLength} symbols.,[error_no_account_email] => No accounts registered with this email.,[error_root_category] => You can not suggest in root category. Please choose an appropiate category and try again.,[error_suggest_logged] => You should be logged in to suggest listings.,[error_password_empty] => Please input correct password.,[error_password_match] => Passwords do not match.,[error_reciprocal_listing] => Please input correct reciprocal link.,[error_reciprocal_domain] => Please make sure you use a backlink from your domain.,[error_username_empty] => Please input correct username.,[error_username_exists] => Username already taken. Please input different username.,[error_account_incorrect] => Please fill in username.,[error_accountpsw_incorrect] => Please fill in password.,[200] => URL located, content follows (200),[301] => Object moved permanently (301),[302] => Object moved (302),[304] => Not modified (304),[400] => Bad request (400),[401] => Unauthorized(401),[403] => Forbidden (403),[404] => Requested URL not found (404),[500] => Unknown server error (500),[503] => Server capacity reached (503),[666] => Error occurred while paid listing submission. Please try to sugget a listing again.,[667] => Incorrect listing id during payment processing.,[668] => Incorrect plan id during payment processing.,[669] => You used demo transaction. Please stop cheating.,[670] => Accounts functionality disabled by administrator.,[671] => Permission denied. You don't have enough permission to modify that listing.,[672] => Suggest category functionality disabled by administrator.,[673] => Your IP-address was banned by administrator,[cancel] => Cancel,[click_here_to_edit] => Click here to edit.,[reset] => Reset,[key] => Key,[value] => Value,[filename] => Filename,[all_languages] => All Languages,[search_in] => Search in,[search_for_text] => Search for Text,[save] => Save,[no_backlink] => No backlink,[position] => Position,[other] => Other,[copy] => Copy,[field_is_empty] => "{field}" is empty.,[no_sponsored_plans] => No sponsored plans created.,[broken_report_sent] => A report has been sent to the site administrator.,[report] => Report,[close] => Close,[report_as_broken] => Report the link {lurl} as being broken.,[do_you_want_report_broken] => Do you want to report broken listing?,[ascii_required] => Only alphanumeric ASCII characters are allowed,[1] => Not available,[expire] => Expire,[vote] => Vote,[payment_done] => Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. Once the administrator approves your listing it will appear as sponsored in our listings.,[oops] => Oops!,[payment_canceled] => Since you canceled the payment your listing will not appear as sponsored.,[folder_incorrect_permissions] => Sorry, you have not set necessary permissions. Please set writable permissions for the following directory {name},[expire_date] => Expire date,[random_listings] => Random listings,[total_votes] => Total {num} votes,[suggest_category] => Suggest Category,[parent_category] => Parent category,[searchable] => Searchable,[file_types] => Allowed file types (comma separated values (don't include point), example: pdf, doc, odf, mov),[section] => Search section,[sections] => Search sections,[contains] => Contains,[where] => Where,[search_match] => Match,[relevance] => Relevance,[perpage] => Per page,[output_settings] => Output settings,[deep_links] => Deep links,[start_search] => Start search,[confirmation] => Confirmation,[na] => n/a,[loading] => Loading ...,[change] => change,[listing_category] => Listing category,[error_login] => Either login or password is invalid,[user_default] => User default,[exit] => Exit,[youre_in_manage_mode] => You're in manage mode,[code] => Code,[quick_links] => Quick links,[add_as_crossed_to_other_categories] => Add also to other categories as crossed,[suspend] => Suspend,[wrong_file_extension] => Wrong file extension for {field} field. Please use one of the following extensions {allowed},[go_back] => Go back,[ok] => Ok,[crossed_to] => Crossed to,[move_listing] => Move listing,[listing_returned] => Listing was returned back!,[listing_move_confirmation] => You are going to move listing to another category, please be sure you want do this. If listing has active status it will be disapproved.,[listing_fin_move_confirmation] => Are you sure you want to move this listing?,[rate_this] => Rate this {rate},[apply] => Apply,[favorites_added] => The Listing has been added to favorites.,[view_my_favorites] => View My favorites,[remove_from_favorites] => Remove from favorites,[favorites_removed] => The Listing has been removed from favorites.,[add_to_favorites] => Add To Favorites,[my_favorite_listings] => My favorite listings,[slogan] => For the besteSyndiCat directories!,[comment_approval] => Your comment is waiting for approval.,[error_url] => Please check the URL.,[vote_cast] => vote cast,[vote_casts] => vote casts,[search_criterias] => Search Criterias,[listings_legend] => listings waiting for administrator approval,[add_favorite] => Do you want to add the listing to favorites?,[remove_favorite] => Do you want to remove the listing from favorites?,[mcross_warning] => You can not cross one more link,[cross_warning] => You can not cross listing into main category,[page_title_index] => Home,[page_title_search] => Search,[page_title_new_listings] => New Listings,[page_title_top_listings] => Top Listings,[page_title_popular_listings] => Popular Listings,[page_title_random_listings] => Random Listings,[page_title_suggest_listing] => Suggest Listing,[page_title_suggest_category] => Suggest Category,[page_title_edit_account] => Edit Account,[page_title_favorites_listings] => Favorites,[page_title_account_listings] => My Listings,[page_title_about] => About Us,[page_title_terms] => Terms of Use,[page_title_help] => Help,[page_title_policy] => Privacy Policy,[page_title_advertise] => Advertise Us,[listings_submission_disabled] => Listings submission is disabled by adminstrator.,[error_email] => The email is not valid,[thankyou_tail] => Please read our letter with further instructions.,[thankyou_head] => Below is the information you submitted so far. You will be able to extend and edit this information via your member account.IMPORTANT! Your account password has been sent to the following email address:,[reg_confirmed] => Account confirmed. Please sign in.,[reg_confirm_err] => Error. You key not found.,[reg_confirmation] => Registration Confirmation,[confirm] => Confirm,[error_javascript] => You have to enable JavaScript in your browser.,[redraw_captcha] => Click on image to redraw.,[text_captcha] => Please input letters you see on the image.,[favorites_listings] => Favorite Listings,[error_min_textarea] => Your {field} length should be more than {num} symbols.,[error_max_textarea] => Your {field} length should be less than {num} symbols.,[characters_count] => Characters count,[plans] => Plans,[payment_gateway] => Payment gateways,[captcha] => Captcha,[fields] => Fields,[reg_confirmed_pending] => Account confirmed. Your account is still pending approval by the administrator.,[rememberme] => Remember Me,[error_username_incorrect] => Make sure you entered valid username.,[unconfirmed] => Unconfirmed,[auto_generate_password] => Auto generate password,[or] => OR,[and] => AND,[page_content_about] => About Us page content,[page_content_policy] => Privacy Policy page content,[page_content_terms] => Terms Of Use page content,[page_content_help] => Help page content,[page_content_advertise] => Advertise Us page content,[newly_added_listings] => Newly added listings,[most_popular_listings] => Most popular listings,[rss_feed] => RSS feed,[esyndicat_action_add_favorite] => Add Favorite,[esyndicat_action_remove_favorite] => Remove Favorite,[esyndicat_action_report_listing] => Report Listing,[esyndicat_action_visit_website] => Visit Website,[xml_syndication] => XML syndication,[enter_confirmation] => Please enter confirmation code below,[unknown] => Unknown,[confirm_not_valid] => Confirmations data is not valid. Please recheck the confirm link.,[check_listing_fields] => Please recheck your information.,[error_contents] => Contents field is a required.,[new] => New,[date_registration ] => Date Registration,[view_account_details] => View account details,[no_accounts] => There is no any accounts.,[no_account_listings] => Account does not have any listings yet.,[page_title_accounts] => Accounts,[page_title_account_login] => Account Login,[page_title_payment_complete] => Payment Complete,[page_title_account_register] => Account Register,[page_title_edit_listing] => Edit Listing,[page_title_account_logout] => Account Logout,[page_title_thank] => Thank,[page_title_account_password_forgot] => Account Password Forgot,[page_title_error] => Error,[page_title_payment_canceled] => Payment Canceled,[page_title_purchase_complete] => Purchase Complete,[page_title_view_listing] => View Listing,[page_title_report_broken_listing] => Report Broken Listing,[no_more_files] => You can not upload more files. Limit exceeded.,[page_title_index_browse] => Browse Categories,[youre_in_preview_mode] => You are in template preview mode.,[field_rss_feed] => RSS Feed,[article] => Article,[articles] => Articles,[account_articles] => My Articles,[no_article] => No articles created.,[view_article] => View Article,[view_all_article] => View All Articles,[suggest_article] => Suggest Article,[article_title] => Title of Article,[article_description] => Short Description,[article_text] => Article Text,[article_tags] => Article Tags,[login_to_article] => Please login to suggest an article,[article_submission_disabled] => Article Submission has been disabled, Please try again later,[owner_name] => Name,[owner_email] => Email,[owner_domain] => URL,[article_submitted] => Your Article has been submitted for approval.,[error_title] => Title is a required field.,[error_description] => Description is a required field.,[error_body] => Body is a required field.,[error_date_added] => Please check the Date Added.,[error_tags] => Tags is a required field.,[article_date_added] => Date Added,[article_date_modified] => Date Modified,[error_email_required] => Email is a required field. (will be hidden),[article_by] => By,[article_category] => Category,[page_title_article] => Articles,[page_title_suggest_article] => Add Article,[page_title_account_articles] => My Articles,[esyndicat_action_claim-listing] => Claim Listing,[validate_listing_owner] => Validate Listing Owner,[error_claim_code] => Error. Your code is not found.,[claim_this_link] => Claim Listing,[meta_validation] => Meta Validation Method,[file_validation] => File Validation Method,[claim_text] => To edit your listing you should add the following code to {url} as it's shown below: ,[claim_text2] => Create a text file called {domain}.txt containing: {owner_code} Upload it to {url} The full address is {url}/{domain}.txt. This file can be removed after verification.,[your] => Your,[full_name] => Full name,[get_back_to] => to get back to listing detail page.,[error_contact_body] => Please fill in contact reason.,[error_contact_subject] => Please fill in contact subject.,[contact_us] => Contact us,[contact_added] => Contact added.,[contact] => Contact,[contacts] => Contacts,[page_title_contacts] => Contact us,[esyndicat_action_contact_member] => Contact,[contact_account] => Contact account,[contact_listing_owner] => Contact listing owner,[page_title_contact_us] => Contact Us,[page_title_contact_member] => Contact Member,[page_title_contact_listing] => Contact Listing Owner,[pending_approval] => Pending Approval,[total_listing_clicks] => Total Listing Clicks,[total_category_clicks] => Total Category Clicks,[news] => News,[view_news] => View News,[view_all_news] => View all news,[no_news] => There is no any news.,[page_title_news] => News,[reviews] => Reviews,[manage_reviews] => Manage reviews,[edit_review] => Edit review,[review_author] => Author,[review_url] => Site,[review_title] => Title,[review_text] => Text,[reviews_read] => Reviews list,[reviews_rate] => Reviews rate,[review_add] => Add review,[review_rate_name] => Rating,[reviews_count] => Reviews count,[rate_it] => Post review for this listing.,[no_reviews] => No reviews to view.,[reviews_approval] => Your review is waiting for approval.,[error_review_logged] => Your must be authorized to post reviews.,[reviews_deleted] => All reviews deleted.,[review_deleted] => Review deleted.,[reviews_added] => Your review has been added. It will be available soon.,[reviews_error_already] => Your rate already record,[error_max_title] => Your title length should be less than {maxLength} symbols.,[error_min_reviews] => Your text length should be more than {minLength} symbols.,[error_max_reviews] => Your text length should be less than {maxLength} symbols.,[error_no_rate] => No rating number.,[error_no_auth] => You must be authorized.,[error_no_listing] => No listing id avaible.,[are_you_sure_to_delete_selected_reviews] => Are you sure to delete selected reviews?,[are_you_sure_to_delete_selected_review] => Are you sure to delete selected review?,[are_you_sure_to_delete_this_review] => Are you sure to delete this review?,[active_users] => Active Users,[guests] => Guests,[visits] => Visits last 24h,[field_terms_of_suggesting] => Terms of Submission,[field_i_agree] => I agree with,[error_terms_verification] => You may not suggest the link as you do not agree with the terms,[page_title_term_of_submission] => Terms of Submissions,[page_content_term_of_submission] => Please edit your terms of submissions using your Admin Panel -> Manage Pages,[tell_friend] => Tell Friend,[are_you_sure_to_delete_selected_subscribe] => Are you sure to delete selected subscribe?,[newsletter_unsubscribe_confirm_err] => Error. Your key not found.,[newsletter_unsubscribe_confirm] => Congratulations!You have successfully confirmed end of subscription.Best regards.,[newsletter_email_exists] => Email already exists,[newsletter_unsubscribe] => Thank You,We have just sent you a confirmation email. It should arrive into your inbox shortly.Please check your email inbox, find our confirmation email, read the instructions, and confirm.,[newsletter_confirm_err] => Error. Your key not found.,[newsletter_delete_err] => Your subscription has not been removed,[newsletter_subscribe] => Thank You, thank you for subscribing to our newsletter.Before we start sending you our newsletter we have to make sure we have your permission. We have just sent you a confirmation email. It should arrive into your inbox shortly.Please check your email inbox, find the our subscription confirmation email, read the instructions, and confirm your subscription.,[error_realname_empty] => Real name field is empty,[newsletter_confirmed] => Congratulations!You have successfully confirmed your subscription.We do appreciate your feedback so feel free to reply to our newsletter messages.Stay in touch!Best regards.,[manage_newsletters] => Manage Subscribe,[newsletter_deleted] => Your subscription has been removed,[email_tags_explan] => You can use following email tags,[error_email_exist] => Email already exist,[newsletters_added] => News letters added,[add_newsletters] => Add newsletters,[individ_receps] => Individual recipients,[no_newsletters] => no_newsletters,[manage_mailer] => Manage Mailer,[mass_mailer] => Mass mailer,[unsubscribe] => Unsubscribe,[newsletters] => Newsletters,[newsletter] => Newsletter,[subscribe] => Subscribe,[realname] => Real name,[cannot_create_folder] => Can't create folders for sitemap files.,[not_writable_folder] => Sitemap file's folder non writable.,[create_gy_sitemap] => Create Google Yahoo sitemap.,[processing] => Processing.,[finished] => Finished.,[progress] => Progress.,[start] => Start.,[check_link_status] => Check Listing Status,[listing_status_description] => Please input your listing URL to check what status it has now.,[check_link_status_url] => Link URL,[error_empty_link_status_url] => Please type correct link URL.,[error_not_found_link_status_url] => No listing found with this URL.,[approval_link_status_url] => Your listing is waiting for administrator approval. It was submitted on {date}.,[active_link_status_url] => This listing is active since {date}.,[suspended_link_status_url] => This listing was suspended on {date}. Please contact site administrator in case you have questions.,[banned_link_status_url] => This listing was banned on {date}. Please contact site adminisitrator if you have any questions.,[page_title_listingstatus] => Check Listing Status,[pagerank_listings] => Listings with PR,[no_pagerank_listings] => No listings with Pagerank yet.,[page_title_pagerank_listings] => Pagerank Listings,[exact_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[stemming_bad_words] => These types of words are banned and will not be processed. Please replace them in the fields,[field_display_url] => Display URL,[field_twitter_username] => Twitter Username,[set_status_after_submit] => Set banner status after submit as,[banner_email_incorrect] => As you are not registered we need to know your correct email that informs you about any changes with your banner.,[cron_for_expiration_b] => Cron for changing banner after payment is expired,[page_title_my_banners] => My Banners,[banner_type_incorrect] => Banner type is incorrect.,[banner_title_is_empty] => Banner Title is empty.,[uploads_not_writable] => Uploads folder is not writable. Your customers will not be able submit Local(image,flash) bunners.,[remote_url_incorrect] => You must specify an URL to the remote banner.,[paypal_not_installed] => You need install paypal plugin before create a banners plan.,[banner_url_incorrect] => Banner URL is incorrect.,[click_to_add_banner] => Click here to add Your Banner,[manage_banner_plans] => Manage Banner Plans,[choose_file_upload] => Choose a file to upload,[image_keepratio] => Keep image ratio,[include_subcats] => include subcategories,[use_orig_params] => Use original parameters,[suggest_banner] => Suggest Banner,[banner_img_url] => Banner image URL,[banner_email] => Your e-mail,[banner_title] => Banner Title,[banner_added] => Banner added.,[image_height] => Image Height,[banner_type] => Banner Type,[edit_banner] => Edit Banner,[banner_alt] => Banner Alternative Text,[add_banner] => Add Banner,[verybottom] => Very Bottom,[banner_url] => Banner URL,[topbanner] => Top Banner,[image_fit] => Enlarge the image if it will be less than entered sizes,[verytop] => Very Top,[_parent] => Parent Frame,[content] => Content,[banners] => Banners,[center] => Center,[bottom] => Bottom,[target] => Target,[remote] => Remote,[banner] => Banner,[_blank] => New Window,[_self] => Current Window,[local] => Local (image or flash),[block] => Block,[shows] => Shows,[user1] => User1,[user2] => User2,[right] => Right,[_top] => Top Frame,[text] => Plain text,[left] => Left,[html] => HTML or JS,[top] => Top,[page_title_suggest_banner] => Suggest Banner,[view_all_tags] => View all tags,[tag_incorrect] => Incorrect tags key,[tag_cloud] => Tag Cloud,[view_tags] => View tags,[all_tags] => All Tags,[tags] => Tags,[page_title_tagcloud] => Tag Cloud,[field_tag] => Tags,[google_search] => Google Search,[page_title_Main] => Main,[more] => more...,[categories_found] => Categories found: ,[username_banned] => Your account has been banned by administrator.,[last_visited] => Last Visited,[instructions_restore_password_sent] => Email with instructions to restore password has been sent.,[instructions_change_email_sent] => Email with instructions to change email has been sent.,[change_email] => Change Email,[confirm_email] => Confirm Email,[account_successful_change_email] => You have successfully change your account email.,[field_meta_description] => Meta Description,[field_meta_keywords] => Meta Keywords,[error_deep_link_not_similar] => The domain of deep link ( {url} ) is not similar as listing URL.),[breadcrumb] => eSyndiCat Directories / Automotive eSyndiCat Directories,[msg] => ,[error] => ,[printregular] => regular-listing-display.tpl,[printsponsored] => sponsored-listing-display.tpl,[printfeatured] => featured-listing-display.tpl,[printpartner] => partner-listing-display.tpl,[templates] => http://directoriesbyscript.com/esyndicat/templates/marangal,[img] => http://directoriesbyscript.com/esyndicat/templates/marangal/img/,[menus] => Array ([inventory] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[2] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing)),[main] => Array ([0] => Array ([title] => Home,[order] => 1,[url] => index.php,[nofollow] => 0,[name] => index),[1] => Array ([title] => Main,[order] => 1,[url] => http://directoriesbyscript.com,[nofollow] => 0,[name] => Main),[2] => Array ([title] => Search,[order] => 2,[url] => search.php,[nofollow] => 0,[name] => search),[3] => Array ([title] => New Listings,[order] => 3,[url] => new-listings.html,[nofollow] => 0,[name] => new_listings),[4] => Array ([title] => Top Listings,[order] => 4,[url] => top-listings.html,[nofollow] => 0,[name] => top_listings),[5] => Array ([title] => Popular Listings,[order] => 5,[url] => popular-listings.html,[nofollow] => 0,[name] => popular_listings),[6] => Array ([title] => Random Listings,[order] => 6,[url] => random-listings.html,[nofollow] => 0,[name] => random_listings),[7] => Array ([title] => Suggest Listing,[order] => 7,[url] => suggest-listing.php?id=5,[nofollow] => 1,[name] => suggest_listing),[8] => Array ([title] => Suggest Category,[order] => 8,[url] => suggest-category.php?id=5,[nofollow] => 1,[name] => suggest_category),[9] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[10] => Array ([title] => Add Article,[order] => 18,[url] => articles/add.html?id=5,[nofollow] => 1,[name] => suggest_article),[11] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news)),[account] => Array ([0] => Array ([title] => My Listings,[order] => 9,[url] => account-listings.html,[nofollow] => 0,[name] => account_listings),[1] => Array ([title] => Favorites,[order] => 10,[url] => favorites-listings.html,[nofollow] => 0,[name] => favorites_listings),[2] => Array ([title] => Edit Account,[order] => 11,[url] => edit-account.php,[nofollow] => 1,[name] => edit_account),[3] => Array ([title] => My Articles,[order] => 19,[url] => articles/account.html,[nofollow] => 0,[name] => account_articles)),[bottom] => Array ([0] => Array ([title] => About Us,[order] => 12,[url] => about.html,[nofollow] => 0,[name] => about),[1] => Array ([title] => Privacy Policy,[order] => 13,[url] => policy.html,[nofollow] => 0,[name] => policy),[2] => Array ([title] => Terms of Use,[order] => 14,[url] => terms.html,[nofollow] => 0,[name] => terms),[3] => Array ([title] => Help,[order] => 15,[url] => help.html,[nofollow] => 0,[name] => help),[4] => Array ([title] => Advertise Us,[order] => 16,[url] => advertise.html,[nofollow] => 0,[name] => advertise),[5] => Array ([title] => Articles,[order] => 17,[url] => articles/,[nofollow] => 0,[name] => article),[6] => Array ([title] => Contact Us,[order] => 21,[url] => mod/contacts/?contact=us,[nofollow] => 0,[name] => contact_us),[7] => Array ([title] => News,[order] => 24,[url] => news.html,[nofollow] => 0,[name] => news),[8] => Array ([title] => ,[order] => 26,[url] => tell-friend.html,[nofollow] => 1,[name] => tell_friend),[9] => Array ([title] => Check Listing Status,[order] => 27,[url] => mod/listingstatus/,[nofollow] => 1,[name] => listingstatus),[10] => Array ([title] => Tag Cloud,[order] => 30,[url] => tags/,[nofollow] => 0,[name] => tagcloud))),[articles] => ,[add_ads_left] => ,[add_ads_right] => ,[add_ads_top] => ,[add_ads_bottom] => ,[add_ads_user1] => ,[add_ads_user2] => ,[add_ads_center] => ,[add_ads_verybottom] => ,[add_ads_verytop] => ,[add_ads_topbanner] => ,[bottomBlocks] => Array ([0] => Array ([id] => 9,[title] => New Articles,[contents] => {if isset($latestArticles)} {foreach from=$latestArticles item=one_article} {if $config.mod_rewrite} {$one_article.title} {else} {$one_article.title} {/if} {/foreach} {$lang.view_all_article} {/if},[order] => 6,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => articles,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[1] => Array ([id] => 22,[title] => Bottom Banners,[contents] => {if isset($bottom_banner)} {foreach from=$bottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_bottom"} {/dynamic} {/foreach} {elseif $add_ads_bottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_bottom"} {/if},[order] => 19,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 30,[title] => eSyndiCat,[contents] => {foreach from=$rss_1 item=one_rss}{$one_rss.title}{/foreach},[order] => 26,[lang] => en,[position] => bottom,[type] => smarty,[plugin] => rss,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[centerBlocks] => Array ([0] => Array ([id] => 25,[title] => Center Banners,[contents] => {if isset($center_banner)} {foreach from=$center_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_center"} {/dynamic} {/foreach} {elseif $add_ads_center} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_center"} {/if},[order] => 22,[lang] => en,[position] => center,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[leftBlocks] => Array ([0] => Array ([id] => 2,[title] => Sponsored,[contents] => {if isset($sponsored_listings)} {foreach from=$sponsored_listings item=sponsored_listing} {$sponsored_listing.title} {/foreach} {/if},[order] => 1,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 3,[title] => Featured,[contents] => {if isset($featured_listings)} {foreach from=$featured_listings item=featured_listing} {$featured_listing.title} {/foreach} {/if},[order] => 2,[lang] => en,[position] => left,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[2] => Array ([id] => 14,[title] => New listings,[contents] => {if isset($box_listings.new) && !empty($box_listings.new)} {foreach from=$box_listings.new item=new_listing} {$new_listing.title} {/foreach} {/if},[order] => 6,[lang] => en,[position] => left,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[3] => Array ([id] => 10,[title] => Latest news,[contents] => {if isset($news) && !empty($news)} {foreach from=$news item=one_news} {if $smarty.const.ESYN_MOD_REWRITE} {$one_news.title} {else} {$one_news.title} {/if} {$one_news.body|truncate:$config.news_max:"..."} {$one_news.date|date_format:$config.date_format} {/foreach} {$lang.view_all_news} {/if},[order] => 7,[lang] => en,[position] => left,[type] => smarty,[plugin] => news,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[4] => Array ([id] => 19,[title] => Left Banners,[contents] => {if isset($left_banner)} {foreach from=$left_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_left"} {/dynamic} {/foreach} {elseif $add_ads_left} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_left"} {/if},[order] => 16,[lang] => en,[position] => left,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 31,[title] => Our Network,[contents] => African Directory Africas Directory Agricultural Directory Automotive Directory Building Services Directory Business Directory Business Directory UK Dating Directory Design Directory Directory of Directories Diretory of Directories Entrertainment Directory Forum Directory Gambling Directory General Directory Lingerie Directory Lingerie Directory Party Directory Shopping Directory South African Directory Travel Directory Zimbabwean Directory,[order] => 17,[lang] => en,[position] => left,[type] => html,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 13,[title] => Newsletter,[contents] => {$lang.realname}: {$lang.email}: {$lang.unsubscribe} {include_file js="plugins/mailer/js/frontend/index"},[order] => 18,[lang] => en,[position] => left,[type] => smarty,[plugin] => mailer,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 12,[title] => Whois Online,[contents] => {$lang.active_users}: {$total_users} {$lang.accounts}: {$register_users} {$lang.guests}: {$guests_users} {$lang.visits}: {$num_visits_today} {foreach name=users from=$name_users item=user} {$user.username}{if !$smarty.foreach.users.last},{/if} {/foreach} ,[order] => 20,[lang] => en,[position] => left,[type] => smarty,[plugin] => whoisonline,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[rightBlocks] => Array ([0] => Array ([id] => 6,[title] => Accounts area,[contents] => {if $config.accounts} {if $esynAccountInfo} {$lang.welcome}, {$esynAccountInfo.username}! {foreach from=$menus.account item=menu} {if $menu.name eq $smarty.const.ESYN_REALM} {$menu.title} {else} {$menu.title} {/if} {/foreach} {$lang.logout} {else} {$lang.username}: {$lang.password}: {$lang.forgot} {$lang.register} {/if} {/if},[order] => 1,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[1] => Array ([id] => 11,[title] => Best Rated,[contents] => {if !empty($best_rated)} {include_file css="/plugins/reviews/templates/css/reviews"} {foreach from=$best_rated item=review name=reviews} {$review.title} {$lang.review_rate_name}: {$review.rate} of 5.000 ({$review.rate_count})   {$lang.review_url}: {$review.url} {$review.description|truncate:200} {/foreach} {/if},[order] => 2,[lang] => en,[position] => right,[type] => smarty,[plugin] => reviews,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[2] => Array ([id] => 4,[title] => Partner,[contents] => {if isset($partner_listings)} {foreach from=$partner_listings item=partner_listing} {$partner_listing.title} {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[3] => Array ([id] => 7,[title] => Actions,[contents] => {if isset($esyndicat_actions) && !empty($esyndicat_actions)}{foreach from=$esyndicat_actions item=action} {assign var="action_key" value="esyndicat_action_"|cat:$action.name} {if $action.name eq 'action_favorite'} {if $esynAccountInfo} {if $esynAccountInfo.id neq $listing.account_id} {assign var="fav_array" value=','|explode:$listing.fav_accounts_set} {if !empty($fav_array) && in_array($esynAccountInfo.id, $fav_array)} {$lang.remove_from_favorites} {else} {$lang.add_to_favorites} {/if} {/if} {/if} {else} {$lang.$action_key} {/if} {/foreach}{/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => ,[status] => active,[show_header] => 1,[collapsible] => 0,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => 0,[rss_id] => 0),[4] => Array ([id] => 15,[title] => Random listings,[contents] => {if isset($box_listings.random) && !empty($box_listings.random)} {foreach from=$box_listings.random item=random_listing} {$random_listing.title} {/foreach} {/if},[order] => 4,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[5] => Array ([id] => 17,[title] => Related listings,[contents] => {if isset($box_listings.related) && !empty($box_listings.related)} {foreach from=$box_listings.related item=related_listing} {$related_listing.title} {/foreach} {/if},[order] => 14,[lang] => en,[position] => right,[type] => smarty,[plugin] => listings_boxes,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[6] => Array ([id] => 29,[title] => Tags,[contents] => wholesale adult business sites australian health jewellery exporters General Directory Design Directory b2b bling bling Wholesa freebies online strnek dine tilbage Agriculture health zpis lingerie directory blogs internet quality Automotive websites Business Directory link looking View all tags,[order] => 16,[lang] => en,[position] => right,[type] => smarty,[plugin] => tagcloud,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 1,[multi_language] => 1,[rss] => ,[rss_id] => 0),[7] => Array ([id] => 20,[title] => Right Banners,[contents] => {if isset($right_banner)} {foreach from=$right_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_right"} {/dynamic} {/foreach} {elseif $add_ads_right} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_right"} {/if},[order] => 17,[lang] => en,[position] => right,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0),[8] => Array ([id] => 18,[title] => PageRanks,[contents] => {if isset($pageranks)} {foreach from=$pageranks item=pagerank} {if $pagerank.pagerank > 0} {if $config.mod_rewrite} {print_pagerank pagerank=$pagerank.pagerank} {else} {print_pagerank pagerank=$pagerank.pagerank} {/if} {$pagerank.val} {/if} {/foreach} {else} {$lang.no_pagerank_listings} {/if},[order] => 18,[lang] => en,[position] => right,[type] => smarty,[plugin] => pageranks,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topBlocks] => Array ([0] => Array ([id] => 21,[title] => Top Banners,[contents] => {if isset($top_banner)} {foreach from=$top_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_top"} {/dynamic} {/foreach} {elseif $add_ads_top} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_top"} {/if},[order] => 18,[lang] => en,[position] => top,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[topbannerBlocks] => Array ([0] => Array ([id] => 28,[title] => Top2 Banners,[contents] => {if isset($topbanner_banner)} {foreach from=$topbanner_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_topbanner"} {/dynamic} {/foreach} {elseif $add_ads_topbanner} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_topbanner"} {/if},[order] => 25,[lang] => en,[position] => topbanner,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user1Blocks] => Array ([0] => Array ([id] => 23,[title] => User1 Banners,[contents] => {if isset($user1_banner)} {foreach from=$user1_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user1"} {/dynamic} {/foreach} {elseif $add_ads_user1} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user1"} {/if},[order] => 20,[lang] => en,[position] => user1,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[user2Blocks] => Array ([0] => Array ([id] => 24,[title] => User2 Banners,[contents] => {if isset($user2_banner)} {foreach from=$user2_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_user2"} {/dynamic} {/foreach} {elseif $add_ads_user2} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_user2"} {/if},[order] => 21,[lang] => en,[position] => user2,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verybottomBlocks] => Array ([0] => Array ([id] => 26,[title] => Very Bottom Banners,[contents] => {if isset($verybottom_banner)} {foreach from=$verybottom_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verybottom"} {/dynamic} {/foreach} {elseif $add_ads_verybottom} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verybottom"} {/if},[order] => 23,[lang] => en,[position] => verybottom,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[verytopBlocks] => Array ([0] => Array ([id] => 27,[title] => Very Top Banners,[contents] => {if isset($verytop_banner)} {foreach from=$verytop_banner item=banner} {dynamic} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner=$banner banner_pos="$add_ads_verytop"} {/dynamic} {/foreach} {elseif $add_ads_verytop} {if isset($bannerError)}{$bannerError}{/if} {include file=$smarty.const.ESYN_PLUGINS|cat:"banners/templates/banner.tpl" banner="" banner_pos="$add_ads_verytop"} {/if},[order] => 24,[lang] => en,[position] => verytop,[type] => smarty,[plugin] => banners,[status] => active,[show_header] => 1,[collapsible] => 1,[collapsed] => 0,[sticky] => 0,[multi_language] => 1,[rss] => ,[rss_id] => 0)),[sponsored_listings] => ,[featured_listings] => ,[partner_listings] => ,[rss_1] => Array ([1] => Array ([title] => Error 500.htm,[link] => goto=newpost)),[num_total_articles] => 0,[latestArticles] => ,[num_total] => Array ([pending] => 22,[listing] => 27,[category] => 63),[news] => ,[best_rated] => ,[stars] => Array ([0] => Array ([id] => 1,[name] => I Would Not Recommend),[1] => Array ([id] => 2,[name] => Fair),[2] => Array ([id] => 3,[name] => Good),[3] => Array ([id] => 4,[name] => Very Good),[4] => Array ([id] => 5,[name] => Exceptional)),[total_users] => 17,[register_users] => 0,[guests_users] => 17,[name_users] => ,[num_visits_today] => 77,[box_listings] => Array ([new] => Array ([0] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 54,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.online-businessdirectory.com,[url] => http://www.online-businessdirectory.com,[description] => We offer Premium Business Directory Listings to thousands of businesses in the uk. Free and Paid Listings are available for maximum exposure. ,[email] => info@webxl-international.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2011-03-03 04:56:19,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:39:01,[title] => Online Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://online-businessdirectory.com/feed.php?from=category&id=0,[display_url] => http://,[twitter_username] => OBDirectory,[tag] => business, directory,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 43,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.thefree4u.com,[url] => http://www.thefree4u.com/,[description] => Directory of the free stuff for you,Resource for freebies with over 60 categories,your one stop resource for freebies on the internet,Frequently updated. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:50:35,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:50:35,[title] => TheFree4u,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => freebies,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 42,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.180.155.60,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-25 08:45:26,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-25 08:45:26,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 40,[account_id] => 0,[category_id] => 22,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => fishing-in.com,[url] => http://fishing-in.com,[description] => The Fishing Directory is a meeting place for all enthusiasts of the fishing world. We list fishing destinations worldwide for you to visit or learn more about, fishing gear to buy, travel resorts, fishing games, and much more.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-12-04 03:29:06,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:29:06,[title] => The Fishing Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://fishing-in.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Fishing Directory,[path] => fishing-esyndicat-directories,[category_title] => Fishing eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[5] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[6] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[7] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[8] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[10] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[11] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[12] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[13] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[14] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[15] => Array ([id] => 20,[account_id] => 0,[category_id] => 14,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.kom-paa-forsiden.dk,[url] => http://www.kom-paa-forsiden.dk/,[description] => Kom På Forsiden er et seo venligt link katalog, der linker direkte tilbage til din hjemmeside, helt gratis. Så hvis De ønsker at forbedre dine indgående links og blive mere synlig på Internettet, kan du tilføje dine hjemmesider til link kataloget kom på forsiden. Det er ganske gratis at tilføje links hos link kataloget kom på forsiden, og vi forlanger ikke, at du skal linke tilbage til os. :-),[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:34:31,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:34:31,[title] => Tilføj link,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.kom-paa-forsiden.dk/feed.php?id=0,[display_url] => http://,[twitter_username] => ,[tag] => link,tilbage,dine,[path] => international-esyndicat-directories/denmark-esyndicat-directories,[category_title] => Denmark eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[16] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[17] => Array ([id] => 17,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.orchidtgp.com,[url] => http://www.orchidtgp.com,[description] => A adult TGP directory offering a selction of quality adult gallerys in many niche categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:09:52,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:09:52,[title] => Orchid TGP,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[18] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[19] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0)),[random] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[1] => Array ([id] => 8,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultdirectoryreview.com,[url] => http://www.adultdirectoryreview.com/directory/,[description] => If you are looking for quality sex and porn sites then you have come to the right place check out our large selection of easy to navigate categories for what you are looking for.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:09:16,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adult Directory Review,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => looking,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[2] => Array ([id] => 23,[account_id] => 0,[category_id] => 16,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => clonet.eu,[url] => http://clonet.eu/,[description] => # Optimalizovaný a ručně tříděný katalog internetových stránek, článků a odkazů do více než 900 kategorií. # Zvyšte návštěvnost Vašich stránek - Registrace stránek do tohoto katalogu je ZDARMA. # Možnost sponzorských zápisů stránek - cena zahrnuje reklamní a webové služby pro Vaše stránky # Pokročilé vyhledávání, komentáře, hodnocení, zápis do Google maps, YouTube video, keywords # Analýza stránek - sada praktických nástrojů pro SEO analýzu a optimalizaci webových stránek,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-02 16:56:25,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:56:25,[title] => Evropský katalog webových stránek,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://clonet.eu/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => strnek,zpis,[path] => international-esyndicat-directories/czechoslovakia-esyndicat-directories,[category_title] => Czechoslovakia eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[3] => Array ([id] => 24,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.primefind.com,[url] => http://www.primefind.com/,[description] => Prime Find Search-International Listings Directory, Offers a single source to search the Web, images, audio, video, news from Google, Yahoo!, MSN, Ask and many more search engines. SEO friendly directory containing high quality website listings. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:00:22,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:00:22,[title] => Prime Find,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.primefind.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => search,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[4] => Array ([id] => 22,[account_id] => 0,[category_id] => 15,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.yourpartysuperstore.com,[url] => http://www.yourpartysuperstore.com/,[description] => Yourpartysuperstore is your best source to find the right suppliers for all your wedding, birthday, christening and other event needs in the Uk.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-02 16:49:13,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 16:49:13,[title] => Your Party Super Store,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => your,[path] => party-esyndicat-directories,[category_title] => Party eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[5] => Array ([id] => 29,[account_id] => 0,[category_id] => 18,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.bling.asia,[url] => http://www.bling.asia,[description] => Asian region Jewellery and bling directory. free listings for jewellery & Bling online shops, wholesalers and manufacturers & exporters.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-20 19:45:55,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:12:26,[title] => Asian Bling Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => bling bling,jewellery,jewellery exporters, online ,[path] => shopping-esyndicat-directories,[category_title] => Shopping eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[6] => Array ([id] => 21,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.free-seo-links.com,[url] => http://www.free-seo-links.com/,[description] => Free Submit allows you to promote sites through our free link directory. No reciprocal link required.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-09-02 16:40:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Free Seo Links,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.free-seo-links.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => link,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[7] => Array ([id] => 27,[account_id] => 0,[category_id] => 20,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.stockwholesalers.com,[url] => http://www.stockwholesalers.com,[description] => USA & North American wholesalers Directory. Free, Paid & Reciprocal listings as well as free articles.,[email] => pa@daintweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-09-20 19:17:03,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:18:29,[title] => American Wholesalers Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.stockwholesalers.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => wholesalers, wholesale, b2b, distributors,,[path] => wholesaler-esyndicat-directories,[category_title] => Wholesaler eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[8] => Array ([id] => 15,[account_id] => 0,[category_id] => 13,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => lingerie.directoriesltd.com,[url] => http://lingerie.directoriesltd.com/,[description] => This is a directory aimed at bringing you the best in lingerie and lingerie related websites. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:40:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Lingerie Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => lingerie,[path] => lingerie-esyndicat-directories,[category_title] => Lingerie eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[9] => Array ([id] => 26,[account_id] => 0,[category_id] => 19,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.alldirectorys.com,[url] => http://www.alldirectorys.com,[description] => Only lists directories. Paid or recip with associate (making it a 1way link),[email] => pa@daintweb.com.au,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-09-20 19:10:28,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 17:03:47,[title] => All Directorys,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => esyndicat-directories-of-directories,[category_title] => eSyndiCat Directories of Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[10] => Array ([id] => 16,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.muckydirectory.com,[url] => http://www.muckydirectory.com,[description] => Here at Mucky Directory we try to bring you only quality nude photos and links to Adult sites. We are continuously searching for quality sites and updating our directory regularly. Visit us often and click on the "Latest Links" button to view our latest Adult website listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:48:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Muckys Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => quality,Adult,sites,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[11] => Array ([id] => 39,[account_id] => 0,[category_id] => 21,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.blogwebdirectory.com,[url] => http://www.blogwebdirectory.com/,[description] => Blog Web Directory is a searchable directory of blogs hand selected by humans to ensure the highest quality possible with rating and review by users. Our intention is to offer an index of blogs that is attractive to bloggers, blog marketers and blog owners who wish to promote their services in this niche.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.178.156.184,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-12-04 03:18:23,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-12-04 03:18:23,[title] => Blog Web Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.blogwebdirectory.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => blogs,blog,[path] => blog-esyndicat-directories,[category_title] => Blog eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[12] => Array ([id] => 14,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => exclusiveadultblogs.com,[url] => http://exclusiveadultblogs.com/,[description] => A directory listing some of the best exclusive adult sex and porn blogs that can be found on the internet. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:34:41,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:34:41,[title] => Exclusive Adult Blogs,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[13] => Array ([id] => 18,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.pornsexsource.com,[url] => http://www.pornsexsource.com,[description] => Porn Sex Source Blog Directory is a large collection of well categorized adult blogs. All sites are hand indexed and edited for quality.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 1,[rank] => 0,[date] => 2010-08-15 08:18:46,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-15 08:18:46,[title] => Porn Sex Source,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[14] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[15] => Array ([id] => 25,[account_id] => 0,[category_id] => 7,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.addbus.com,[url] => http://www.addbus.com/,[description] => Addbus internet directory of web resources, organised by category and topic.Submit your web site to our manually edited internet Directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.182.157.206,[listing_header] => 200,[status] => active,[pagerank] => 3,[rank] => 0,[date] => 2010-09-02 17:03:34,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-02 17:03:34,[title] => Addbus,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.addbus.com/plugins/rss/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => internet,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[16] => Array ([id] => 28,[account_id] => 0,[category_id] => 17,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.health-clinic.com.au,[url] => http://www.health-clinic.com.au,[description] => Australian Health Directory accepting free listings for all health and medical related Australian sites.,[email] => pa@daintyweb.com,[reciprocal] => ,[recip_valid] => 0,[ip_address] => 86.181.153.0,[listing_header] => 200,[status] => active,[pagerank] => 4,[rank] => 0,[date] => 2010-09-20 19:40:05,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-09-21 14:22:49,[title] => Health Clinic,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => health,australian,australian health,,[path] => health-esyndicat-directories,[category_title] => Health eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[17] => Array ([id] => 11,[account_id] => 0,[category_id] => 3,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsdirectory.eu,[url] => http://www.adultsdirectory.eu,[description] => Adult Directory EU caters for adult and non adult websites. Only quality websites and blogs are listed in this quality link directory.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:18:38,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Adults Directory EU,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => adult,websites,quality,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[18] => Array ([id] => 10,[account_id] => 0,[category_id] => 3,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => www.adultsbusinessdirectory.com,[url] => http://www.adultsbusinessdirectory.com,[description] => We are your one stop guide to all the great adult businesses that can be found online our categories and links are always increasing so be sure to check back regularly for new listings.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:14:29,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2010-08-14 09:14:29,[title] => Adults Business Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => adult-esyndicat-directories,[category_title] => Adult eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0),[19] => Array ([id] => 57,[account_id] => 0,[category_id] => 6,[plan_id] => 3,[transaction_id] => 0,[moved_from] => -1,[domain] => premiumdirectory.com.ph,[url] => http://premiumdirectory.com.ph,[description] => Philippines premium wholesale and business Directory. Also accepts free link / banner exchange from all eSyndicat directories. ,[email] => admin@premiumdirectory.com.ph,[reciprocal] => http://premiumdirectory.com.ph/pLinks.html,[recip_valid] => 0,[ip_address] => 86.179.195.128,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2011-03-25 04:50:39,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 2011-07-30 06:36:31,[title] => Premium Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => ,[display_url] => http://,[twitter_username] => ,[tag] => Philippines Directory, Business Directory, Wholesa,[path] => business-esyndicat-directories,[category_title] => Business eSyndiCat Directories,[account_id_edit] => 0,[interval] => 0,[favorite] => 0)),[top] => Array ([0] => Array ([id] => 1,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.advertisingmarketplace.co.uk,[url] => http://www.advertisingmarketplace.co.uk/,[description] => This is a site where you can showcase or advertise your website to bring you more traffic.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:18:11,[last_modified] => 0000-00-00 00:00:00,[clicks] => 3,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Advertising Marketplace,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.advertisingmarketplace.co.uk/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => General Directory,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[1] => Array ([id] => 2,[account_id] => 0,[category_id] => 9,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.africasdirectory.com,[url] => http://www.africasdirectory.com/,[description] => This is an African Directory listing sites from all over Africa by country and in a large selection of categories so feel free to search our listings for what you are after.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-08 02:35:24,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Africa's Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.africasdirectory.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => African Directory,[path] => international-esyndicat-directories/africa-esyndicat-directories,[category_title] => Africa eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[2] => Array ([id] => 3,[account_id] => 0,[category_id] => 7,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => icecreamforyoursoul.com,[url] => http://icecreamforyoursoul.com,[description] => A general world wide directory listing quality hand picked websites in a large selection of categories which are also broken down into regions.,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 05:08:15,[last_modified] => 0000-00-00 00:00:00,[clicks] => 1,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Ice Cream For Your Soul Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://icecreamforyoursoul.com/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => ,[path] => general-esyndicat-directories,[category_title] => General eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[3] => Array ([id] => 4,[account_id] => 0,[category_id] => 10,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => www.ukdesignernetwork.com,[url] => http://www.ukdesignernetwork.com,[description] => A design directory for all types of design related websites and resources with a large selection of categories. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 2,[rank] => 0,[date] => 2010-08-14 06:23:02,[last_modified] => 0000-00-00 00:00:00,[clicks] => 2,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Design Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://www.ukdesignernetwork.com/directory/feed.php?from=new,[display_url] => http://,[twitter_username] => ,[tag] => Design Directory,[path] => design-esyndicat-directories,[category_title] => Design eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0),[4] => Array ([id] => 5,[account_id] => 0,[category_id] => 4,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => agricultural.directoriesltd.com,[url] => http://agricultural.directoriesltd.com/,[description] => The Agricultural Directory is categorized and edited to bring you the best in agricultural websites from around the world. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 08:55:57,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Agricultural Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://agricultural.directoriesltd.com/feed.php?list=new,[display_url] => http://,[twitter_username] => ,[tag] => Agriculture,[path] => agricultural-esyndicat-directories,[category_title] => Agricultural eSyndiCat Directories,[interval] => 0,[favorite] => 0,[account_id_edit] => 0))),[pageranks] => Array ([0] => Array ([pagerank] => 4,[val] => 2),[1] => Array ([pagerank] => 3,[val] => 6),[2] => Array ([pagerank] => 2,[val] => 3),[3] => Array ([pagerank] => 1,[val] => 4),[4] => Array ([pagerank] => 0,[val] => 19)),[manageMode] => ,[instead_thumbnail] => ,[sortings] => Array ([0] => alphabetic,[1] => date,[2] => clicks,[3] => rank),[category] => Array ([id] => 5,[account_id] => 0,[parent_id] => 0,[title] => Automotive eSyndiCat Directories,[page_title] => Automotive eSyndiCat Directories,[icon] => ,[description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place. ,[status] => active,[meta_description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[meta_keywords] => Automotive eSyndiCat Directories,[path] => automotive-esyndicat-directories,[order] => 0,[locked] => 0,[hidden] => 0,[unique_tpl] => 0,[level] => 1,[num_cols] => 0,[num_neighbours] => 0,[num_listings] => 1,[num_all_listings] => 1,[clicks] => 3,[no_follow] => 0,[confirmation] => 0,[confirmation_text] => ),[description] => Are you looking for Automotive eSyndiCat Directories? Then you have come to the right place.,[keywords] => Automotive eSyndiCat Directories,[title] => Automotive eSyndiCat Directories :: eSyndiCat Directories,[header] => Automotive eSyndiCat Directories,[categories] => ,[total_listings] => 1,[listings] => Array ([0] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[url] => http://directoriesbyscript.com/esyndicat/automotive-esyndicat-directories/index{page}.html,[num_listings] => 1,[num_categories] => 0,[view] => all,[confirm_key] => confirm_5,[type] => 2,[listing] => Array ([id] => 7,[account_id] => 0,[category_id] => 5,[plan_id] => 0,[transaction_id] => 0,[moved_from] => -1,[domain] => automotive.directoriesltd.com,[url] => http://automotive.directoriesltd.com/,[description] => Automotive Directory bringing you the best in websites about the automobile and automotive industry. ,[email] => ,[reciprocal] => http://,[recip_valid] => 0,[ip_address] => 86.176.12.116,[listing_header] => 200,[status] => active,[pagerank] => 0,[rank] => 0,[date] => 2010-08-14 09:06:40,[last_modified] => 0000-00-00 00:00:00,[clicks] => 0,[partner] => 0,[partner_start] => 0000-00-00 00:00:00,[featured] => 0,[featured_start] => 0000-00-00 00:00:00,[sponsored] => 0,[sponsored_start] => 0000-00-00 00:00:00,[title] => Automotive Directory,[expire] => 0,[action_expire] => ,[last_check_date] => 0000-00-00 00:00:00,[cron_cycle] => 0,[fav_accounts_set] => ,[meta_description] => ,[meta_keywords] => ,[rss_feed] => http://automotive.directoriesltd.com/new-listings.html,[display_url] => http://,[twitter_username] => ,[tag] => Automotive,[interval] => 0,[listing_type] => 0,[account_id_edit] => 0,[crossed] => 0,[favorite] => 0,[path] => automotive-esyndicat-directories,[category_title] => Automotive eSyndiCat Directories)),[_smarty_vars] => ,[_sections] => Array ([star] => Array ([name] => star,[loop] => 0,[show] => ,[max] => 0,[step] => 1,[start] => 0,[total] => 0)),[_foreach] => Array ([users] => Array ([total] => 0,[iteration] => 0)),[_tag_stack] => Array (),[_conf_obj] => ,[_config] => Array ([0] => Array ([vars] => Array (),[files] => Array ()),[1] => Array ([vars] => Array (),[files] => Array ()),[2] => Array ([vars] => Array (),[files] => Array ())),[_smarty_md5] => f8d698aea36fcbead2b9d5359ffca76f,[_version] => 2.6.26,[_inclusion_depth] => -27,[_compile_id] => ,[_smarty_debug_id] => SMARTY_DEBUG,[_smarty_debug_info] => Array (),[_cache_info] => Array (),[_file_perms] => 420,[_dir_perms] => 505,[_reg_objects] => Array (),[_plugins] => Array ([modifier] => Array ([cat] => Array ([0] => smarty_modifier_cat,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 5,[3] => 1,[4] => 1),[escape] => Array ([0] => smarty_modifier_escape,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 8,[3] => 1,[4] => 1),[default] => Array ([0] => smarty_modifier_default,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 30,[3] => 1,[4] => 1),[add_url_param] => Array ([0] => smarty_modifier_add_url_param,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 56,[3] => 1,[4] => 1),[truncate] => Array ([0] => smarty_modifier_truncate,[1] => evaluated template,[2] => 8,[3] => 1,[4] => 1),[date_format] => Array ([0] => smarty_modifier_date_format,[1] => evaluated template,[2] => 9,[3] => 1,[4] => 1)),[function] => Array ([convertStr] => Array ([0] => Array ([0] => esynUtil,[1] => convertStr),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[print_listing_url] => Array ([0] => Array ([0] => esynLayout,[1] => printListingUrl),[1] => evaluated template,[2] => 4,[3] => 1,[4] => 1,[5] => ),[print_category_url] => Array ([0] => Array ([0] => esynLayout,[1] => printCategoryUrl),[1] => /home/director/public_html/esyndicat/plugins/articles/templates/block.tpl,[2] => 17,[3] => 1,[4] => 1,[5] => ),[print_account_url] => Array ([0] => Array ([0] => esynLayout,[1] => printAccUrl),[1] => ,[2] => ,[3] => ,[4] => 1,[5] => ),[esynHooker] => Array ([0] => smarty_function_esynHooker,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 21,[3] => 1,[4] => 1),[print_categories] => Array ([0] => smarty_function_print_categories,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 25,[3] => 1,[4] => 1),[navigation] => Array ([0] => smarty_function_navigation,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 39,[3] => 1,[4] => 1),[include_file] => Array ([0] => smarty_function_include_file,[1] => /home/director/public_html/esyndicat/templates/common/index.tpl,[2] => 75,[3] => 1,[4] => 1),[print_img] => Array ([0] => smarty_function_print_img,[1] => header.tpl,[2] => 116,[3] => 1,[4] => 1),[print_pagerank] => Array ([0] => smarty_function_print_pagerank,[1] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[2] => 21,[3] => 1,[4] => 1)),[block] => Array ([dynamic] => Array ([0] => smarty_block_dynamic,[1] => evaluated template,[2] => 3,[3] => 1,[4] => ,[5] => )),[compiler] => Array (),[prefilter] => Array (),[postfilter] => Array (),[outputfilter] => Array ([clearemptyblocks] => Array ([0] => smarty_outputfilter_clearemptyblocks,[1] => ,[2] => ,[3] => 1,[4] => 1)),[resource] => Array (),[insert] => Array ([dynamic] => Array ([0] => insert_dynamic,[1] => /home/director/public_html/esyndicat/templates/common/parse-blocks.tpl,[2] => 12,[3] => 1,[4] => ))),[_cache_serials] => Array ([] => b9535253d329d557cd867660580ab22c),[_cache_include] => ,[_cache_including] => ,[_cache_include_info] => )) called at [/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php:126] #7 include(/home/director/public_html/esyndicat/tmp/marangal/%%EB^EB7^EB758E52%%regular-listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #8 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #9 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => regular-listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php:28] #10 include(/home/director/public_html/esyndicat/tmp/marangal/%%21^21B^21BD5EAF%%listing-display.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1869] #11 Smarty->_smarty_include(Array ([smarty_include_tpl_file] => /home/director/public_html/esyndicat/templates/common/listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:188] #12 esynSmarty->_smarty_include(Array ([smarty_include_tpl_file] => listing-display.tpl,[smarty_include_vars] => Array ())) called at [/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php:76] #13 include(/home/director/public_html/esyndicat/tmp/marangal/%%3F^3FE^3FE521C9%%index.tpl.php) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1263] #14 Smarty->fetch(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, , 1) called at [/home/director/public_html/esyndicat/includes/smarty/Smarty.class.php:1106] #15 Smarty->display(/home/director/public_html/esyndicat/templates/common/index.tpl, en|5|1|ascending|alphabetic, ) called at [/home/director/public_html/esyndicat/includes/classes/esynSmarty.php:164] #16 esynSmarty->display(index.tpl, en|5|1|ascending|alphabetic) called at [/home/director/public_html/esyndicat/index.php:375]

     

    If you are not sure what this error means you can always visit eSyndiCat Support Forums or try these solutions.