Re: Apache showing Perl code

2003-03-06 Thread Huili_Liu
It seams to be your configuration problem on your apache. Make sure this on your httpd.conf: Options FollowSymLinks +ExecCGI AddHandler cgi-script cgi pl AllowOverride None Willy

Re: mod_perl books (Was: RE: Trouble with sysread in modperl)

2003-03-04 Thread Huili_Liu
Hi Hui Liu You can start from http://perl.apache.org/docs/2.0/user/intro/start_fast.pdf instead of reading the very thick books. You can google to find out example codes as well. Gook Luck, Huili Liu

Re: Server side programming PHP Vs CGI Vs modPerl

2003-02-13 Thread Huili_Liu
Devi, There are many reasons for you to select one of them such as - if you are looking for an easy way to present your contents, try PHP. - if you are an expert on Perl/CGI, of course, you would like use Perl/CGI - if you are put more attention on traffic/speed, you can try Mod_perl. - Aga

Re: mysql question

2003-01-23 Thread Huili_Liu
Theoretically, It is not. See 4.3.1 GRANT and REVOKE Syntax GRANT priv_type [(column_list)] [, priv_type [(column_list)] ...] ON {tbl_name | * | *.* | db_name.*} TO user_name [IDENTIFIED BY 'password'] [, user_name [IDENTIFIED BY 'password'] ...] [WITH GRANT OPTION] Willy

Re: Identifying memory leaks

2002-11-27 Thread Huili_Liu
check Apache::leak that will help you to track mod_perl memory leak. Willy "Charles"

Re: Server Parsed .shtml files...

2002-11-14 Thread Huili_Liu
Better choice is add .shtml to server-parsed. See below: # # To use server-parsed HTML files # AddType text/html .shtml .html .htm AddHandler server-parsed .shtml .html .htm Willy