Re: Generic database access?

2003-09-29 Thread Sam Harris
search google for "Webmon".
also check out phpadmin.

good luck

Sam Harris, 
Systems Administrator
Franklin University
201 S. Grant Avenue
Columbus, Ohio  43215-5399
Work: (614)-744-8322
Toll free: 1-877-341-6300 ext. 8322
[EMAIL PROTECTED]
http://www.franklin.edu/
>>> [EMAIL PROTECTED] 09/29/03 09:56 AM >>>
Greetings!

Is there a Perl module --

"Don't be silly!", I hear you reply.  "There's a Perl module for
everything!"

OK, let me rephrase that.  I would like a program, probably but not
necessarily in Perl, that can run on a Perl-equipped Unix server that
will give me remote access through the Internet to a database system in
a way similar to how Microsoft Access provides a GUI for creating and
editing databases.  What would you recommend?

Thanks!

Rob

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



very novice "date" question

2003-02-11 Thread Sam Harris
I am trying to extract last month's date from today's date as in "Jan" or "Feb"is 
there a switch to enable that ?

Thanks

Sam Harris, 
Internet Services
Franklin University
201 S. Grant Avenue
Columbus, Ohio  43215-5399
Work: (614)-744-8322
Toll free: 1-877-341-6300 ext. 8322
[EMAIL PROTECTED]
http://www.franklin.edu/

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: error with external command..

2002-12-12 Thread Sam Harris
The way how it is in my code is on one line, the slash at the end has to
be there on unix command line for it to work !!???
so the line is :
 system"find . -ctime -1 -exec cp {}
/opt/WWW/web_stats/logs/daily/newfiles \";


Sam Harris, 
Internet Services
Franklin University
201 S. Grant Avenue
Columbus, Ohio  43215-5399
Work: (614)-744-8322
Toll free: 1-877-341-6300 ext. 8322
[EMAIL PROTECTED]
http://www.franklin.edu/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




error with external command

2002-12-12 Thread Sam Harris
I am having hard time figuring out why one of my lines is not working:

system"find . -ctime -1 -exec cp {}
/opt/WWW/web_stats/logs/daily/newfiles \";

the error is that :
Unquoted string "opt" may clash with future reserved word at
./process_web_log_files.pl line 25.

thanks for your help in advance.


Sam Harris, 
Internet Services
Franklin University
201 S. Grant Avenue
Columbus, Ohio  43215-5399
Work: (614)-744-8322
Toll free: 1-877-341-6300 ext. 8322
[EMAIL PROTECTED]
http://www.franklin.edu/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




< a very novice > file location

2002-12-05 Thread Sam Harris
I m very new to perl, please notice the errors I am including and tell
me how simple it is to correct them :)



 I have MD5.pm and Std.pm to be used in a directory above the one where
perl is, my script gives me an error that says 

# ./net_watch
../net_watch[2]: use:  not found
../net_watch[3]: use:  not found
../net_watch[4]: syntax error at line 4 : `(' unexpected

how do I solve the path requirement issue for perl for the error 1 -2,
then why is the third error is there from the following:

#/usr/perl5/5.00503/bin/perl
use Getopt::Std;
use Digest::MD5;
qw(md5);


again thank you for your help :)




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




need help with a bug

2002-11-19 Thread Sam Harris
I hve the follwing lines which are ginving error on line 1, please help
, thanks

use Digest::MD5 qw(md5);
$md5 = new Digest::MD5;
open(PASSWD,"/etc/passwd") or die "Unable to open passwd:$!\n";
# these two lines called also be rolled into one:
#   print Digest::MD5->new->addfile(PASSWD)->hexdigest,"\n";
$md5->addfile(PASSWD);
print $md5->hexdigest."\n";

close(PASSWD);


Sam Harris, 
Internet Services
Franklin University
201 S. Grant Avenue
Columbus, Ohio  43215-5399
Work: (614)-744-8322
Toll free: 1-877-341-6300 ext. 8322
[EMAIL PROTECTED]
http://www.franklin.edu/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]