Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#26 06-24-2004 13:18:11

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: Now Available: Products Index Module

I have a help request for a mod for this mod at

It's not clear where such a post belongs, but it didn't seem appropriate to clutter this thread.


Kevin Zaleski -  -

Offline

 

#27 06-24-2004 20:02:55

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: Now Available: Products Index Module

Twas a tad time consuming for a newbie like me to figure out how to get the title graphic to appear on the index pages, so here's the way...

* Admin -> HTML Pages & Elements -> Manage HTML Pages (User)
* update both the Products Index List Page and the Products Index A to Z pages...
* enter the Title Image Name ("title_store.gif" if you have not changed it) and set Use Title Image to Yes


Kevin Zaleski -  -

Offline

 

#28 07-13-2004 11:16:27

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: Now Available: Products Index Module

I have a large index and it takes considerable time to generate. I noticed that it was being regenerated each time a piece was accessed (e.g.,  -> "H to M" -> "A to G").

You can easily turn on caching for these pages and improve the perceived speed of your site.  This mod sets an expiration of 2 hours for the pages that comprise the two indicies. It fixed the problem for IE6, I have not tested it on other browsers.

Make a backup copy, then edit cgi-bin\library\common\display.pl

Change

print $q->header(-type=>"text/html",-cookie=>"$usr_cookie");

to

if (($fd_pg eq "ste_index_az") || ($fd_pg eq "ste_index_list")) {
    # include directive to cache the index pages for 2 hours
    print $q->header(-type=>"text/html",-expires=>'+2h',-cookie=>"$usr_cookie");
} else {
    # no caching for the rest of the pages
    print $q->header(-type=>"text/html",-cookie=>"$usr_cookie");
}

and change

Code:

print $q->header(-type=>"text/html");

to

if (($fd_pg eq "ste_index_az") || ($fd_pg eq "ste_index_list")) {
    # include directive to cache the index pages for 2 hours
    print $q->header(-type=>"text/html",-expires=>'+2h');
} else {
    # no caching for the rest of the pages
    print $q->header(-type=>"text/html");
}

Of course you can change "2h" to some expiration time other than 2 hours.


Kevin Zaleski -  -

Offline

 

#29 12-05-2004 12:42:27

thedon122
Member
Registered: 01-21-2004
Posts: 155

Re: Now Available: Products Index Module

HI,

does this mod index the htm(users) and other pages like customer account, store policies....etc pages also?


if not could this be done?

cheers
Charlie

Offline

 

#30 12-06-2004 21:59:59

ATS
Member
From: Near Chicago, Illinois
Registered: 12-20-2003
Posts: 183
Website

Re: Now Available: Products Index Module

Hi Charlie,

Thanks for the question.

The auto-generated part lists the product and category pages. You could always add some static HTML to the ste_index_listhead.txt element for other pages you wanted to list though.

Mark


ATS is an authorized provider of support and custom modifications to ClickCartPro software.

Offline

 

#31 12-06-2004 23:22:52

thedon122
Member
Registered: 01-21-2004
Posts: 155

Re: Now Available: Products Index Module

HI,
Mark,

thanks for the input,  i bought the mod the other day. must say it was easy to install - had it runinging and linked in my site in 10 mins - its great not ony for the customers but helps me find what products are in what categories really quickly so i can check them edit ect and so on.

your reply gave me some ideas.  I have both links the a to z and index under the category section on my site and i an going to create a user page (sitemap) that has links to the other pages on the site and 2 links to the mod.

anyway

i am looking into geting the SEO mod - how long does it take for you to install and i have the tiki uk version of ccp with lots of mods and hacks - will this be a problem?

all the best
Charlie

Offline

 

#32 01-28-2005 03:23:15

Shawn
Member
Registered: 09-24-2004
Posts: 216

Re: Now Available: Products Index Module

This is yet another great mod from Mark.  I recently added this mod to my site and I love it.  It's a nice clean layout and it works very fast to get to any of the product details of any of my items.  A really nice addition.  Shawn



Site is almost ready to go live.

Offline

 

#33 08-08-2007 03:21:08

plan9
Member
Registered: 03-05-2006
Posts: 6
Website

Re: Now Available: Products Index Module

Hi

I have foolishly deleted the .htaccess file and need to recreate to make the Products Index Module from ATS.

I currently have:

#ATS SEO Rules

#Options +FollowSymLinks

RewriteEngine On

RewriteRule ^cat--(.*)\.html /cgi-bin/cp-app.cgi?seo=cat--$1

RewriteRule ^item--(.*)\.html /cgi-bin/cp-app.cgi?seo=item--$1

RewriteRule ^page--(.*)\.html /cgi-bin/cp-app.cgi?seo=page--$1

RewriteRule ^store /cgi-bin/cp-app.cgi?pg=store

RewriteRule ^splash /cgi-bin/cp-app.cgi?pg=splash

RewriteRule ^sitemap.xml$ /cgi-bin/cp-app.cgi?pg=ste_sitemap_proc

RewriteRule ^$ /cgi-bin/cp-app.cgi

#End ATS SEO Rules


But need to incorporate:

http://www.alacook.co.uk/az-0-G


Has anyone got a copy they can send me.

Much help appreciated.



Steve

Offline

 

#34 08-08-2007 09:04:19

kelly518
Member
Registered: 01-10-2006
Posts: 274

Re: Now Available: Products Index Module

Hi,

I sent it to you in a PM.

Kelly

Offline

 

Board footer