Re: datatables

2019-07-17 Thread Eko Budiharto
dear Andy and all, while waiting for any respond from the group, I try to debug and get better understanding about it. I stripe everything and start with one column of data. I got a new understanding. The error was caused in the sql query statement. In the SQL query statement, there is "? mark

Re: datatables

2019-07-15 Thread Eko Budiharto
dear Andy and all, I opened and read the apache error log. it said there is an invalid character. And I think there is a unicode character. My question is also how to pass a unicode data from mysql to a browser through JSON. in the mysql connection, I already enable utf8mb4, but I do not know

datatables

2019-07-15 Thread Eko Budiharto
dear all, I have a question about datatables (jquery). I have been trying although with a simple file, it is not displaying in a browser (got 500 internal server error), but in CLI is working. here is the HTML side: #!/usr/bin/perl -w use URI::Escape; use strict; print "Content-type: te

Re: stupid question about to protect source code of perl web application scripting

2019-07-08 Thread Eko Budiharto
2. if someone has a problem, he does not want to try to find a way to solve the problem first, and then he asks your help and then problem solved, then he is blaming the person who already helped him and claimed, that is his work. what will you do? What do you mean? dear Shlomi, what I me

Re: stupid question about to protect source code of perl web application scripting

2019-07-07 Thread Eko Budiharto
in my university 19 years ago. regards, Eko Budiharto On 07/07/19 14.54, Kent Fredric wrote: On 7/6/19 11:21 PM, Eko Budiharto wrote: it is a web application but it is on premise. The user is not honest. That's why I am trying to find a way to protect the source code like in java w

Re: stupid question about to protect source code of perl web application scripting

2019-07-06 Thread Eko Budiharto
wrote: On 7/6/19 11:01 PM, Eko Budiharto wrote: dear all, I have a question. I have written a web application with perl, unfortunately everything written in perl, everyone can see all source codes I wrote. My question is is there anyway to protect those source codes? Compile or encrypt it? if

stupid question about to protect source code of perl web application scripting

2019-07-06 Thread Eko Budiharto
dear all, I have a question. I have written a web application with perl, unfortunately everything written in perl, everyone can see all source codes I wrote. My question is is there anyway to protect those source codes? Compile or encrypt it? I am looking forward to a favorable reply from y

captcha

2018-03-04 Thread Eko Budiharto
dear all, I am trying to put a captcha on my site. I already have public key and secret key from google. I already put the public key on my html and secret key on the server respond site. But when I ran it, I got an error, For security reasons, you must pass the remote ip to reCAPTCHA at resp

Re: newbie question for parsing incoming mails

2017-02-15 Thread Eko Budiharto
1:45, Jim Gibson wrote: > > >> On Feb 15, 2017, at 8:10 PM, Eko Budiharto wrote: >> >> dear Jim, >> I tried to add lines to read file like this: >> >> use Email::MIME; >> >> my $file = '/var/qmail/mailnames/> name>/support/Maildir

Re: newbie question for parsing incoming mails

2017-02-15 Thread Eko Budiharto
dear Jim, I tried to add lines to read file like this: use Email::MIME; my $file = '/var/qmail/mailnames//support/Maildir/cur/1487041394.M984019P23084V0803I00E03878.ABCD.NET,S=3987:2,'; open my $ifh, '<', $file or die "Cannot open '$file' for reading: $!"; local $/ = ''; my

Re: newbie question for parsing incoming mails

2017-02-15 Thread Eko Budiharto
Jim, if I want to extract all incoming emails from my qmail emails, how can specify the folder location and specify the file name since the file name always different? Thx. > On Feb 15, 2017, at 22:56, Jim Gibson wrote: > >> >> On Feb 14, 2017, at 10:38 PM, Eko Budiharto

newbie question for parsing incoming mails

2017-02-14 Thread Eko Budiharto
dear all, I have a question. If I would like to parse all incoming mails from my qmail, which perl module is easy to use? my qmail emails incoming is /var/qmail/mailnames//support. In this folder I already have preline in .qmail for piping emails to my perl script. And, my perl script what I alread

writing a value from a variable in PDF::API2

2012-08-27 Thread Eko Budiharto
dear members, I wrote a perl script to write a pdf file. I am stuck in writing a value from a variable. Please help. thanks in advance. Here is my script: #!/usr/local/bin/perl use CGI qw(:standard); use strict; use PDF::API2; my $endDate2 = $time{'dd-mm-', time + 86400 * 14}; my $startDat

[question] : array

2012-04-01 Thread Eko Budiharto
hi list, I would like to ask about 2 dimensional array my code: my $ref = $sth->fetchall_arrayref(); foreach my $row (@$ref) { ( $KODE_UNIT, $KODE_BAGIAN, $NIK, $TANGGAL ) = @$row; @row = @$row; push(@array_2d, @row ); print ""; print "width=>@array_2d[0][0]@array_2d[0][1]@array

[question] array

2012-03-30 Thread Eko Budiharto
hi list, I would like to ask about 2 dimensional array my code: my $ref = $sth->fetchall_arrayref(); foreach my $row (@$ref) { ( $KODE_UNIT, $KODE_BAGIAN, $NIK, $TANGGAL ) = @$row; @row = @$row; push(@array_2d, @row ); print ""; print "width=>@array_2d[0][0]@array_2d[0][1]@array

script produced no output

2012-03-16 Thread Eko Budiharto
dear list, I have a perl script that I would like to run from any browsers. I tried it on firefox and internet explorer, but both gave me, the same error message, "Content-type: text/html 'C:\HRMS\cgi-bin\cetakKuponMakanHarian.pl' script produced no output" I am using IIS under windows 7 32 b

[ask] oracle date

2012-03-09 Thread Eko Budiharto
dear list, I have a date data extracted from oracle, stored as this 1993-11-30 00:00:00. The datatype in the oracle is date. I would like to save into mysql (the datatype is also date), I got an error. When I do a small debug, I print the date directly, it comes out into 30-NOV-93. I am trying

Re: Seeking opinions about YAPCs

2011-06-14 Thread eko . budiharto
Dear all, Can someone tell me what the YAPC is? Thx. Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...! -Original Message- From: D Date: Tue, 14 Jun 2011 05:50:37 To: Subject: Seeking opinions about YAPCs Hello everyone, I just now realized that the next

Re: perl real life exercise

2010-10-15 Thread eko . budiharto
The best way to learn perl ini real life is the real case in the real life, so you will be much more familiar and gain more knowledge about perl. I think learning other programming language is the same. :) Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...! -Or

Re: perl or python

2010-10-10 Thread eko . budiharto
Perl is better. Sent from my BlackBerry® smartphone from Sinyal Bagus XL, Nyambung Teruuusss...! -Original Message- From: "Octavian Rasnita" Date: Sun, 10 Oct 2010 11:24:42 To: Subject: Re: perl or python On Tue, Oct 5, 2010 at 10:55 AM, Kaushal Shriyan wrote: > Hi > > Is it better t

Re: Automating Weblogic monitoring Using Perl Scripts.

2010-09-15 Thread Eko Budiharto
dear Prasad, you can buy a book or find e-book about perl. You might want to start with simple scripts. There is a site that you can download packages, http://www.cpan.org. I hope it helps. On 9/16/2010 6:24 AM, prasad.prabhak...@aps.com wrote: Hi, please can anyone suggest me a way how t

Re: CGI scripting

2009-06-09 Thread Eko Budiharto
Irfan, please read the readme or the user guide. I think you should modify to specify the virtual directory name on the apache. Irfan Sayed wrote: *From:* Eko Budiharto *To:* Irfan Sayed *Cc:* beginners@perl.org

Re: CGI scripting

2009-06-08 Thread Eko Budiharto
eb server you want to use, IIS or apache? If you will use apache, then you need to configure the apache. if you will use IIS, then you need to configure IIS. -- Regards, Eko Budiharto GMGWEB.NET/SANGATMURAH.NET Jl. Kalijudan Madya V/18 Surabaya 60114 Jawa Timur Telp: +623160214440, +62817509358

Re: perl on windows

2009-05-19 Thread Eko Budiharto
do) > > So you downloaded the exe and ran it? > > -- > Ruud > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Regards, Eko Budiharto GMGWEB.NET/SANGATMUR

Re: perl on windows

2009-05-15 Thread Eko Budiharto
suggestions on which one to use. > Also, my work requires some special modules like algorithm. How do I > handle that? > > Regards > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://le

Re: Connecting MS SQL from linux

2008-11-09 Thread Eko Budiharto
> > I'm currently connecting to MSSQL using > > use DBI; > > and the main package which does that magic is -> perl-DBD-Sybase-1.08 > > > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > http://

Re: Automation

2008-06-30 Thread Eko Budiharto
ED] > For additional commands, e-mail: [EMAIL PROTECTED] > http://learn.perl.org/ > > > -- Eko Budiharto

Re: perl 5.8.8 installation

2008-05-13 Thread Eko Budiharto
data > loss and how do I upgrade it i.e. from 5.6.1 to 5.8.8 ? what are the steps > for this upgradation procedure ??? > > Thanks & Regards in advance > Anirban Adhikary. > -- Eko Budiharto

Re: DATA Transfer from a remote machine :: which one is best SCP or VSFTPD

2008-03-26 Thread Eko Budiharto
is good > options can be used in this situation SCP or VSFTPD? I need a secure and > fast data transfer. > > Thanks & Regards in Advance > Anirban Adhikary. > -- Eko Budiharto

Re: Installing Date::Calc

2007-12-05 Thread Eko Budiharto
- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > http://learn.perl.org/ > > > -- Eko Budiharto

Re: calculating time difference with localtime

2007-08-08 Thread Eko Budiharto
> > > ** > > This message contains information that is confidential and proprietary > to FedEx Freight or its affiliates. It is intended only for the recipient > named and for the express purpose(s) described therein. Any other use is > prohibited. > > ** > > > > > > > > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > http://learn.perl.org/ > > > -- Eko Budiharto

Re: book on perl

2007-07-02 Thread Eko Budiharto
ayank Garg -- Eko Budiharto -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Free Perl Editor

2007-01-01 Thread Eko Budiharto
iyanto -- Eko Budiharto -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/