Gossamer Forum
Home : Products : Links 2.0 : Customization :

I am unabel to get yahoo like

Quote Reply
I am unabel to get yahoo like
I am unable to get yahoo like sub categories to my links page!!
Can you please explain me how can I do this It seems to be very simple.

(http://jsu7785.hypermart.net/links_mods/subcategories.html#)

And I tried what it says but unable to create clickable sub categories When the page building it says -

Building Category: Arts-&-Entertainment
Subcategories: 0
Links: 1
Directory: C:/XITAMI/cgi-bin/search/Arts-&-Entertainment
Filename : C:/XITAMI/cgi-bin/search/Arts-&-Entertainment/index.html

Done

Pages Built (0 s)!.

Can you tell me what's wrong with these files

==========================================================
Links.cfg
==========================================================

# -------------
# Links
# -------------
# Links Manager
#
# File: links.cfg
# Description: Contains all the setup variables.
# Author: Alex Krohn
# Email: alex@gossamer-threads.com
# Web: http://www.gossamer-threads.com/
# Version: 2.0
#
# (c) 1998 Gossamer Threads Inc.
#
# This script is not freeware! Please read the README for full details
# on registration and terms of use.
# =====================================================================

# Paths and URL's to Important Stuff
# --------------------------------------------------------
# PATH and URL of Admin CGI directory. No Trailing Slash.
$db_script_path = "C:/XITAMI/cgi-bin/admin";
$db_dir_url = "http://127.0.0.1/cgi-bin/admin";

# URL of User CGI directory. No Trailing Slash.
$db_cgi_url = "http://127.0.0.1/cgi-bin";

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "C:/XITAMI/cgi-bin/search";
$build_root_url = "http://127.0.0.1/cgi-bin/search";

# PATH and URL of What's New page. No Trailing slash.
$build_new_path = "$build_root_path/New";
$build_new_url = "$build_root_url/New";

# PATH and URL of What's Cool page. No Trailing slash.
$build_cool_path = "$build_root_path/Cool";
$build_cool_url = "$build_root_url/Cool";

# PATH and URL of What's Rating page. No Trailing slash.
$build_ratings_path = "$build_root_path/Ratings";
$build_ratings_url = "$build_root_url/Ratings";




# Database Options
# --------------------------------------------------------
# You really need to use flock(). However if your system doesn't support it (Win95),
# then turn this off at your own risk!
$db_use_flock = 0;
# Use Pragma: no-cache to stop browsers from caching output? (0 = cache, 1 = nocache)
$db_nocache = 1;
# Use IIS headers? Set this to 1 if your web server needs the full headers (HTTP/1.0 etc.)
$db_iis = 0;
# Field number of category in category.db
$db_main_category = 1;
# Referers -- which hosts are allowed to add to your database.
@db_referers = ();

# Email Options
# --------------------------------------------------------
# NOTE: Be sure to edit the text of the message. It can be found
# in the templates directory: email-add.txt, email-del.txt and
# email-mod.txt respectively.

# Set only ONE of either $db_mail_path which should go to a
# mail program like sendmail, or $db_smtp_server which will use
# a SMTP server. Do not set both at once!

# PATH of sendmail. # SMTP Server
$db_mail_path = '/usr/sbin/sendmail'; $db_smtp_server = '';

# Email address of the administrator. BE SURE TO SET!
$db_admin_email = 'oneruvan@usa.net';

# Notify visitors automatically when their links are validated?
$db_email_add = 1;

# Notify visitors automatically when their links are modified?
$db_email_modify = 1;

# Log all outgoing messages? Put the full path to a logfile and make sure it
# exists and is writeable (chmod 666 -rw-rw-rw-). This logfile can get pretty
# big!
$db_mailer_log = '';

# Build Options
# --------------------------------------------------------
# Setting for popular cutoff, can either be a percent (i.e. top 3%), or
# a fixed value (i.e. top 10). Enter 0.03 or 10 respectively.
$db_popular_cutoff = 0.03; # Top 3%
# Number of days a link is considered New.
$db_new_cutoff = 14; # 14 days old.
# Return search results bolded (1 = yes, 0 = no).
$search_bold = 1;
# The name of an index file.
$build_index = "index.html";
# The extension to use for non index files:
$build_extension = ".html";

# Should your add.cgi automatically select what category the user
# is adding his link into?
$db_single_category = 1;

# Directory Permissions. Do NOT put quotes around it. Set to 0777
# for world writeable. If you put this at 0755, you might need a
# script to remove any directories created as they will be owned
# by the web server or user nobody. Better solution might be to
# run the nph-build routine from the command shell.
$build_dir_per = 0777;

# The script can now break up category pages that have more then x
# number of links in it. It will also create next and previous links
# to help navigate. Set this to 1 if you want to break up pages or 0 if
# you want to have only one page per category.
# Setting this to one, will also break up the What's New pages into
# per day sections (not affected by number of links per page).
$build_span_pages = 1;

# Number of links per page.
$build_links_per_page = 10;

# Detailed View: The script can build a single html page per link. This is
# great if you have a review in your database. To enable, you must set
# the directory where all the pages will be stored, the url to that directory
# and set the enable option.
$build_detailed = 1;
$build_detail_path = "$build_root_path/Detailed";
$build_detail_url = "$build_root_url/Detailed";

# Use Templates: instead of editing site_html.pl, you can edit regular html pages
# encoded with special <%links_tags%>. It's not as flexible as site_html.pl, but it
# may be easier.
$build_use_templates = 1;

# Site Title, the default title to use. You should really spend some time customizing
# the directory though!
$build_site_title = 'Lak Search ';


# Subcategory Length, the maximum length of the subcategories added into Links.
$subcat_length = '30';


# Date Routines
# --------------------------------------------------------
# Your date format can be whatever you like, as long as the following
# two functions are defined &date_to_unix and &unix_to_date:
# The default is dd-mmm-yyyy.

sub date_to_unix {
# --------------------------------------------------------
# This routine must take your date format and return the time a la UNIX time().
# Some things to be careful about..
# timelocal does not like to be in array context, don't do my($time) = timelocal (..)
# int your values just in case to remove spaces, etc.
# catch the fatal error timelocal will generate if you have a bad date..
# don't forget that the month is indexed from 0!
#
my $date = shift; my $i;
my %months = map { $_ => $i++ } qw!Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec!;
my ($day, $mon, $year) = split(/-/, $date);

exists $months{$mon} or return undef;
$day = int($day); $year = $year - 1900;

require Time::Local;
my $time = 0;
eval {
$time = &Time::Local::timelocal(0,0,0, $day, $months{$mon}, $year);
};
if ($@) { die "invalid date format: $date - parsed as (day: $day, month: $months{$mon}, year: $year). Reason: $@"; }
return $time;
}

sub unix_to_date {
# --------------------------------------------------------
# This routine must take a unix time and return your date format
# A much simpler routine, just make sure your format isn't so complex that
# you can't get it back into unix time.
#
my $time = shift;
my ($sec, $min, $hour, $day, $mon, $year, $dweek, $dyear, $tz) = localtime $time;
my @months = qw!Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec!;
$year = $year + 1900;
return "$day-$months[$mon]-$year";
}

sub long_date {
# --------------------------------------------------------
# This routine is for printing a nicer date format on the what's new page. It should
# take in a date in your current format and return a new one.
my $time = shift;
$time = &date_to_unix ($time);
my ($sec, $min, $hour, $day, $mon, $year, $dweek, $dyear, $tz) = localtime $time;
my @months = qw!January February March April May June July August September October November December!;
my @days = qw!Sunday Monday Tuesday Wednesday Thursday Friday Saturday!;
$year = $year + 1900;
return "$days[$dweek], $months[$mon] $day $year";
}

# -------------------------------------------------------------
# Extra Paths -- unless you feel the need to rename files, you
# can leave this as is.
# -------------------------------------------------------------
$db_script_url = $db_dir_url . "/admin.cgi"; # Admin script.
$db_header_path = $db_script_path . "/header"; # Place to store header and footers.
$db_footer_path = $db_script_path . "/footer";
$build_search_url = $db_cgi_url . "/search.cgi"; # URL of search script.
$build_add_url = $db_cgi_url . "/add.cgi"; # URL of add script.
$build_modify_url = $db_cgi_url . "/modify.cgi"; # URL of modify script.
$build_jump_url = $db_cgi_url . "/jump.cgi"; # URL of jump script.
$build_email_url = $db_cgi_url . "/subscribe.cgi"; # URL of email update script.
$build_rate_url = $db_cgi_url . "/rate.cgi"; # URL of rate script.
$db_mail_url = $db_dir_url . "/nph-email.cgi"; # URL of admin mass mail script.
$build_css_url = $build_root_url . "/links.css"; # URL to your CSS file.
$db_sendlink_log = "$db_script_path/data/sendlinklog.txt";
$db_lib_path = $db_script_path; # PATH of library files.
$db_links_name = "$db_script_path/data/links.db"; # PATH to links database.
$db_category_name = "$db_script_path/data/categories.db"; # PATH to category database.
$db_valid_name = "$db_script_path/data/validate.db"; # PATH to validation database.
$db_modified_name = "$db_script_path/data/modified.db"; # PATH to modification database.
$db_url_name = "$db_script_path/data/url.db"; # PATH to URL lookup database.
$db_email_name = "$db_script_path/data/email.db"; # PATH to email database.
$db_links_id_file_name = "$db_script_path/data/linksid.txt"; # PATH to links counter file.
$db_category_id_file_name = "$db_script_path/data/categoryid.txt"; # PATH to category counter file.
$db_hits_path = "$db_script_path/data/hits"; # PATH to hits directory.
$db_template_path = "$db_script_path/templates"; # PATH to templates.
$db_rates_path = "$db_script_path/data/rates"; # PATH to ratings.
1;

============================================================
site_html_templates.pl
============================================================
# -------------
# Links
# -------------
# Links Manager
#
# File: site_html.pl
# Description: This library contains all the HTML that will be generated in
# the finished directory.
# Author: Alex Krohn
# Email: alex@gossamer-threads.com
# Web: http://www.gossamer-threads.com/
# Version: 2.0
#
# (c) 1998 Gossamer Threads Inc.
#
# This script is not freeware! Please read the README for full details
# on registration and terms of use.
# =====================================================================

# ----------------------------------------------------------------------
# The HTML in this file and the style sheet (links.css) have been authored
# by Chris Croome of webarchitects.
#
# Email: chris@atomism.demon.co.uk
# Web: http://www.webarchitects.co.uk/
# ----------------------------------------------------------------------

# You can put variables here that you would like to use in any
# of your templates.

require "$db_lib_path/templates.cfg";

%globals = (
date => &get_date,
time => &get_time,
db_cgi_url => $db_cgi_url,
build_root_url => $build_root_url,

site_title => $build_site_title,
color1 => $color1,
color2 => $color2,
color3 => $color3,
color4 => $color4,
color5 => $color5,
color6 => $color6,
color7 => $color7,

special1 => $special1,
special2 => $special2,
special3 => $special3,
special4 => $special4,
special_url1 => $special_url1,
special_url2 => $special_url2,
special_url3 => $special_url3,
special_url4 => $special_url4,

logob => $logob,
logos => $logos,

event => $event,
event_url => $event_url,
event_desc => $event_desc,

copyright => $copyright,

feature1 => $feature1,
feature2 => $feature2,
feature3 => $feature3,
feature4 => $feature4,
feature_desc1 => $feature_desc1,
feature_desc2 => $feature_desc2,
feature_desc3 => $feature_desc3,
feature_desc4 => $feature_desc4,
feature_url1 => $feature_url1,
feature_url2 => $feature_url2,
feature_url3 => $feature_url3,
feature_url4 => $feature_url4,
feature_more => $feature_more,
feature_more_url => $feature_more_url,

news1 => $news1,
news2 => $news2,
news3 => $news3,
news4 => $news4,
news_url1 => $news_url1,
news_url2 => $news_url2,
news_url3 => $news_url3,
news_url4 => $news_url4,
news_more => $news_more,
news_more_url => $news_more_url,

highlight1 => $highlight1,
highlight2 => $highlight2,
highlight_url1 => $highlight_url1,
highlight_url2 => $highlight_url2,
highlight_desc1=> $highlight_desc1,
highlight_desc2=> $highlight_desc2,

css => $build_css_url
);


sub site_html_link {
# --------------------------------------------------------
# This routine is used to display what a link should look
# like.

my %rec = @_;

# Set new and pop to either 1 or 0 for templates.
($rec{'isNew'} eq 'Yes') ? ($rec{'isNew'} = 1) : (delete $rec{'isNew'});
($rec{'isPopular'} eq 'Yes') ? ($rec{'isPopular'} = 1) : (delete $rec{'isPopular'});

return &load_template ('link.html', {
detailed_url => "$db_detailed_url/$rec{'ID'}$build_extension",
%rec,
%globals
});
}

sub site_html_home {
# --------------------------------------------------------
# This routine will build a home page. It is not meant to have any
# links on it, only subcategories.

return &load_template ('home.html', {
category => $category,
grand_total => $grand_total,
%globals
});
}

sub site_html_new {
# --------------------------------------------------------
# This routine will build a what's new page.

return &load_template ('new.html', {
total => $total,
grand_total => $grand_total,
link_results => $link_results,
title_linked => $title_linked,
%globals
} );
}

sub site_html_cool {
# --------------------------------------------------------
# This routine will build a what's new page.

return &load_template ('cool.html', {
total => $total,
grand_total => $grand_total,
percent => $percent,
link_results => $link_results,
title_linked => $title_linked,
%globals
} );
}

sub site_html_detailed {
# --------------------------------------------------------
# This routine will build a single page per link. It's only
# really useful if you have a long review for each link --
# or more information then can be displayed in a summary.
#
my %rec = @_;
return &load_template ('detailed.html', {
total => $total,
grand_total => $grand_total,
title_linked => $title_linked,
%rec,
%globals
} );
}

sub site_html_category {
# --------------------------------------------------------
# This rountine will build a page based for the current category.

return &load_template ( 'category.html', {
date => $date,
time => $time,
category => $category,
links => $links,
title_linked => $title_linked,
title => $title,
total => $total,
grand_total => $grand_total,
category_name => $category_name,
category_name_escaped => $category_name_escaped,
category_clean => $category_clean,
description => $description,
meta_name => $meta_name,
meta_keywords => $meta_keywords,
header => $header,
footer => $footer,
prev => $prev,
next => $next,
related => $related,
build_links_per_page => $build_links_per_page,
%globals
} );
}

sub site_html_ratings {
# --------------------------------------------------------
# This routine determines how the top rated page will look like.

return &load_template ( 'rate_top.html', {
top_rated => $top_rated,
top_votes => $top_votes,
%globals
});
}

########################################################################################
# THE FOLLOWING ARE CGI GENERATED PAGES AND THE TEMPLATE MUST BE PRINTED, NOT RETURNED!#
########################################################################################

sub site_html_add_form {
# --------------------------------------------------------
# This routine determines how the add form page will look like.
#
&html_print_headers;

my $category = shift;
$category ?
($category = qq~$category <input type=hidden name="Category" value="$category">~) :
($category = &build_select_field ("Category", "$in{'Category'}"));

print &load_template ('add.html', {
Category => $category,
%globals
});
}

sub site_html_add_success {
# --------------------------------------------------------
# This routine determines how the add success page will look like.

&html_print_headers;

print &load_template ('add_success.html', {
%in,
%globals
});
}

sub site_html_add_failure {
# --------------------------------------------------------
# This routine determines how the add failure page will look like.

my ($errormsg) = shift;
$in{'Category'} or ($in{'Category'} = &build_select_field ("Category"));

&html_print_headers;
print &load_template ('add_error.html', {
error => $errormsg,
%in,
%globals
});

}

sub site_html_modify_form {
# --------------------------------------------------------
# This routine determines how the modify form page will look like.

my $category = &build_select_field ("Category", "$in{'Category'}");

&html_print_headers;
print &load_template ('modify.html', {
Category => $category,
%globals
});
}

sub site_html_modify_success {
# --------------------------------------------------------
# This routine determines how the modify success page will look like.

&html_print_headers;
print &load_template ('modify_success.html', {
%in,
%globals
});
}

sub site_html_modify_failure {
# --------------------------------------------------------
# This routine determines how the modify failure page will look like.

my $errormsg = shift;
$in{'Category'} = &build_select_field ("Category", $in{'Category'});

&html_print_headers;
print &load_template ('modify_error.html', {
error => $errormsg,
%in,
%globals
});
}

sub site_html_search_results {
# --------------------------------------------------------
# This routine displays the search results.
#
my $term = &urlencode ($in{'query'});
&html_print_headers;
print &load_template ('search_results.html', {
term => $term,
link_results => $link_results,
category_results => $category_results,
next => $next,
cat_hits => $cat_hits,
link_hits => $link_hits,
%in,
%globals
});
}

sub site_html_search_failure {
# --------------------------------------------------------
# This routine displays a failed search page with error in $error.
#
my $error = shift;
my $term = &urlencode ($in{'query'});
&html_print_headers;

print &load_template ('search_error.html', {
term => $term,
error => $error,
%in,
%globals
});
}

sub site_html_search_form {
# --------------------------------------------------------
# This routine displays the search form.

&html_print_headers;
print &load_template ('search.html', {
term => $term,
error => $error,
%in,
%globals
});
}

sub site_html_mailing {
# --------------------------------------------------------
# This routine displays your mailing list subscribe/unsubscribe form.
#
my $action = shift;
my $message;
($action eq 'subscribe') and ($message = qq~You've been successfully subscribed to the mailing list!~);
($action eq 'unsubscribe') and ($message = qq~You've been successfully removed from the mailing list!~);

&html_print_headers;
print &load_template ('email.html', {
message => $message,
%in,
%globals
});
}

sub site_html_mailing_error {
# --------------------------------------------------------
# This routine is displayed if there was a problem subscribing.
#
my $error = shift;

&html_print_headers();
print &load_template ('email_error.html', {
error => $error,
%in,
%globals
});
}

sub site_html_rate_form {
# --------------------------------------------------------
# This routine determines how the rate form page will look like.
#
my %rec = @_;

&html_print_headers;
print &load_template ('rate.html', {
%rec,
%globals
});
}

sub site_html_rate_success {
# --------------------------------------------------------
# This routine determines how the rate success page will look like.

&html_print_headers;
print &load_template ('rate_success.html', {
%in,
%globals
});
}

sub site_html_rate_failure {
# --------------------------------------------------------
# This routine determines how the rate failure page will look like.

my ($errormsg) = shift;

&html_print_headers;
print &load_template ('rate_error.html', {
error => $errormsg,
%in,
%globals
});

}

########################################################################################
# THE FOLLOWING DETERMINES YOUR CATEGORY LISTING, IT'S NOT TEMPLATE BASED (YET)! #
########################################################################################

sub site_html_print_cat {
# --------------------------------------------------------
# This routine determines how the list of categories will look.
# We now use a table to split the category name up into two columns.
# For each category you can use the following variables:
#
# $url : The URL to go to that category
# $category_name : The category name with _ and / removed.
# $category_descriptions{$subcat}: The category description (if any).
# $numlinks : The number of links inside that category (and subcategories).
# $mod : The newest link inside of that category.
#

my (@subcat) = @_;
my ($url, $numlinks, $mod, $subcat, $category_name, $description, $output, $i);
my ($half) = int (($#subcat+2) / 2);

# Print Header.
$output = qq|<div class="margin"><table width="80%" border="0" cellspacing="0" cellpadding="0"><tr><td class="catlist" valign="top">\n|;

foreach $subcat (sort @subcat) {
($description) = @{$category{$subcat}}[2];

# First let's get the name, number of links, and last modified date...
$url = "$build_root_url/" . &urlencode($subcat) . "/";
if ($subcat =~ m,.*/([^/]+)$,) { $category_name = &build_clean($1); } else { $category_name = &build_clean($subcat); }
$numlinks = $stats{"$subcat"}[0];
$mod = $stats{"$subcat"}[1];

# We check to see if we are half way through, if so we stop this table cell
# and begin a new one (this lets us have category names in two columns).
if ($i == $half) {
$output .= qq|</td><td class="catlist" valign="top">\n|;
}
$i++;

# Then we print out the name linked, new if it's new, and popular if its popular.
$output .= qq|<dl><dt><strong><a class="link" href="$url">$category_name</a></strong> <small class="numlinks">($numlinks)</small> |;
$output .= qq|<small><sup class="new">new</sup></small>| if (&days_old($mod) < $db_new_cutoff);
$output .= qq|</dt>|;
if ($#{$subcategories{$subcat}} >= 0 && $description =~ /^SUB.*/) {
$v = 0;
$sub_length = "";
$output .= qq|<small>|;
foreach $subcatsub (sort @{$subcategories{$subcat}}) {
($nonenglish) = @{$category{$subcatsub}}[8];
$subcatsub2 = $nonenglish if ($nonenglish);
$suburl = "$build_root_url/" . &urlencode($subcatsub) . "/";
if ($subcatsub2 =~ m,.*/([^/]+)$,) { $subcategory_name = &build_last_title_mb($1); }
else { $subcategory_name = &build_last_title_mb($subcatsub2); }

$sub_length .= qq|, | if ($description =~ /1$/ && $v ne "0");
$sub_length .= qq|$subcategory_name| if ($description =~ /1$/);

if ($description =~ /1$/ && length($sub_length) > $subcat_length) {
$output .= qq|...|;
last;
}
else {
$output .= qq|, | if ($description =~ /1$/ && $v ne "0");
$output .= qq|
| if ($description =~ /2$/ || $v eq "0");
$output .= qq| | if ($description =~ /2$/);
$output .= qq|<a href="$suburl">$subcategory_name</a>|;
$v++;
}
}
$output .= qq|</small>|;
}
else {
$output .= qq|<dd><span class="descript">$description</span></dd>| if (!($description =~ /^[\s\n]*$/));
}

$output .= qq|</dl>|;
}

# Don't forget to end the unordered list..
$output .= "</td></tr></table></div>\n";
return $output;
}

1;



Quote Reply
Re: I am unabel to get yahoo like In reply to
Looking at the snippet of your "build report", it looks like you have NO subcategories created in your categories.db file and that it is why the Subcategories Like Yahoo Mod is not working.

Wink

Regards,

Eliot Lee
Quote Reply
Re: I am unabel to get yahoo like In reply to
How Can I create Subcategories? I don't understand there explanation.

I have tried that. But not creating any Subcategories? It will create description instead of Subcategories.
Please explain to me... how can I do this.

I have English MOD with enable none English characters for description (like ^spaces, I have used them to my main categories)

Quote Reply
Re: I am unabel to get yahoo like In reply to
HI!

for example, create the category music with add category,
call it "music"
Next, if you want subcategories called "concerts" and "artists", add category and called it :
"music/concerts" and "music/artists"!

(without "")

Ciao

Quote Reply
Re: I am unabel to get yahoo like In reply to
Thanks......... Now it's right But I want to get it under my main category page. suppose if I have a main category called "MUSIC" and I have added sub categories for that. The problem is now I have to click the main category to go to my subcategories. Now what I want is lists the sub categories under my main category (MUSIC) Like in the example (http://jsu7785.hypermart.net/links_mods/subcategories.html#) .Please tell me how can I do this.

Quote Reply
Re: I am unabel to get yahoo like In reply to
I don't understand...if you have added subcategories via the Category option in the admin.cgi and added the correct codes that Widgetz wrote, then it should work...

One suggestion...If you have long Subcategory Names, then you should increase the value for the $subcat_length variable to something like 100....

Code:

$subcat_length = 100;


in the links.cfg file.

Regards,

Eliot Lee
Quote Reply
Re: I am unabel to get yahoo like In reply to
Yas I have added subcategories via the Category option in the admin.cgi and added the correct codes

But I want is this

MUSIC--------------->this is the main category
western, Eastern----->this is the sub category (description aria will be my sub category aria) If want to go directly to (western) subcategory then I have do only click that link. That is what I want

What I have is this

MUSIC--------------->only the main category
If I want to go to sub categories then I have to click my main category (MUSIC) then it will bring me to my sub category aria this now happening.

What I want system is you can see www.altavista.com, www.yahoo.com

Arts & Entertainment
Movies, TV, Music...




Quote Reply
Re: I am unabel to get yahoo like In reply to
i am having the same problem. take a look at http://www.searchengineers.com/links/ and you'll see what we're talking about. i'm unclear on how to stop this staggering effect, with each additional category staggering below the previous one.

any help would be appreciated. hopefully this example can let you folks know what i (and i believe ruvan too) are seeing...

-brad

ps - which forums program is this running on?

Quote Reply
Re: I am unabel to get yahoo like In reply to
My problem is I am unable to get what you get </p>
<dl>
<dt><strong><a class="link" href="http://www.searchengineers.com/links/2000_Shows/">2000
Shows</a></strong> <small class="numlinks">(1)</small> <small><sup class="new">new</sup>

<a href="http://www.searchengineers.com/links/2000_Shows/1-Jan/">1-Jan</a>, <a href="http://www.searchengineers.com/links/2000_Shows/2-Feb/">2-Feb</a>,
<a href="http://www.searchengineers.com/links/2000_Shows/3-Mar/">3-Mar</a>, <a href="http://www.searchengineers.com/links/2000_Shows/4-Apr/">4-Apr</a>,
<a href="http://www.searchengineers.com/links/2000_Shows/5-May/">5-May</a>, <a href="http://www.searchengineers.com/links/2000_Shows/6-Jun/">6-Jun</a></small></dt>
</dl>

<p>Like this. I want to get my sub categories like above</p>
<p>what I have is </p>
<p><strong><a class="link" href="http://www.searchengineers.com/links/2000_Shows/">2000
Shows</a></strong> <small class="numlinks">(1)</small> <small><sup class="new">new</sup></small></p>
<p>Only this main category if I want to go to my sub categories then I have to
click the main category then I can see my subcategories.

Quote Reply
Re: I am unabel to get yahoo like In reply to
My problem is I am unable to get what you get

http://2000 Shows
http://1-Jan,http://2-Febhttp://3-Mar,http://4-Apr,http://5-May,http://,6-Jun

Like this. I want to get my sub categories like above
what I have is
http://2000 Shows

Only this main category if I want to go to my sub categories then I have to
click the main category then I can see my subcategories.

Quote Reply
Re: I am unabel to get yahoo like In reply to
HEllo

the url doesn't work.

But have U got put SUB1 (or SUB2) in the description of the main category???
U can't put the description of the main category if U wanted "yahoo like". But U can describe subcategories!

ciao



Quote Reply
Re: I am unabel to get yahoo like In reply to
Now I have put sub1 for my main category description aria and I have added sub category named "testsub" for that
but same thing

Test------>main category
sub1------>this type I get (like the description) (it is print sub1 not the my sub category)


But when I clicked to main category then it will go to another page and displayed My newly created sub category "testsub"

Do you think what's the problem for this?

Quote Reply
Re: I am unabel to get yahoo like In reply to
Do U put SUB1 or sub1?
i don't know if there is a difference... perhaps...

but i don't understand very well your problem,
Do U want use sub categories like yahoo mod for all categories? like this : www.percu.com/pages ?

ciao

ps : for example :
add category "test", use the description : SUB1
add subcategories, called them "test/yahoo1" and "test/yahoo2"!

It should be allright, but have U got use the good part of the mods? (with or without templates)

ciao

Quote Reply
Re: I am unabel to get yahoo like In reply to
 
http://General Internet (2)




Quote Reply
Re: I am unabel to get yahoo like In reply to
 
I am using templates
http://General Internet (2)


Dont U think iam using wrong MOD



Quote Reply
Re: I am unabel to get yahoo like In reply to
Your problem is that You don't want to see subcategories, when U cliked on the main category???
it's normal with this mod, could U see if I've got the same stuff at my page: www.percu.com/pages, if yes, I think U haven't problem, with this mod, and U should modify some .html.

ps: Maine's business like Maine in France?

ciao

Quote Reply
Re: I am unabel to get yahoo like In reply to
Your link is dead check it? http:// www.percu.com/pages

No ,No I want to see subcategories

Like yahoo, AltaVista The problem is they are not showing in my main category aria I have to go another page to see my subcategories. I want to print them with my main category in my category page. then user can directly click on the sub category link to go to that link list. Other wise he have to go to my main category page and after that sub category page and links.
I'm using Yahoo Style Subcategory Listings Mod by Widgetz.(SUBCATEGORIES LIKE YAHOO v2.1)


Quote Reply
Re: I am unabel to get yahoo like In reply to
Hi!

I've made an error, the correct url is : www.percu.com/links/pages

But on http://www.maine-business.com/links/
it seems it's allright!!! like restaurants, and subcategories italian, family...

Bye

Quote Reply
Re: I am unabel to get yahoo like In reply to
Yes that's what I need. But I am unabel to create like what you have done (I want main category,and subcategories like you have). Can you tell me what I have to do to get this right. I am using english language for category field
But with some edting for get special characters.
Thanks.

Quote Reply
Re: I am unabel to get yahoo like In reply to
Eliot said that it was few problem of compatibility with "yahoo subcategories mod" and "non english ..."
Perhaps it's why U've got problem.

I don't know if there is any issue...
Perhaps you should try to find post related of your problem of compatibility in the forum.

Ciao