Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

cool and rating pages

Quote Reply
cool and rating pages
 
Is it possible to stop these pages being written?

Thanks
Rennie
Quote Reply
Re: cool and rating pages In reply to
in nph-build.cgi you can just find these 2 lines

Code:
&build_cool_page();
&build_rate_page();

and change them to this

Code:
# &build_cool_page();
# &build_rate_page();

uncomment them if you want to build them again in the future..

Code:
($page =~ /^$cool_match/o) and do { &generate_cool_page ($in); last CASE; };
($page =~ /^$rate_match/o) and do { &generate_rate_page ($in); last CASE; };

to

Code:
# ($page =~ /^$cool_match/o) and do { &generate_cool_page ($in); last CASE; };
# ($page =~ /^$rate_match/o) and do { &generate_rate_page ($in); last CASE; };

in page.cgi so no one can access on "accident"

jerry
Quote Reply
Re: cool and rating pages In reply to
Thanks!

Rennie