2,977 Topics
![]() | |
Hello! I have finally installed a distribution of linux on my machine (redhat 9 lol). I have Mozilla, but when i open a website (DaniWeb especially) the browser seems to be focuses on the center of the page, and the scroll-bar is all the way to the left, so I … | |
PLEASE HELP ME!!! P E R L!!! I have a CGI (PERL) file namely 'test.cgi' and it has the correct permission (755) on the FTP [URL="http://forums.devshed.com/perl-programming-6/please-help-me-p-e-r-l-380358.html#"]server[/URL] and it is within the CGI path. I have the following code in it: =================================== 1: #!/usr/bin/perl 2: 3: $cr = '???'; 4: $decrypted … | |
Ive done several echo's and such to make sure info is in my variables before. When i do the first update on the page, i think the second one is running too. Either way, my record is being deleted for whatever reason... Aside from some help with the current setup, … | |
hello all, Now my question is - can i apply the code on the part of the board. In order to get a "Copy" of the board with category 17 and category 3 .... see here [URL="http://=http://www.nukeforums.com/forums/viewforum.php?f=17"]=http://www.nukeforums.com/forums/viewforum.php?f=17[/URL] [URL="http://=http://www.nukeforums.com/forums/viewforum.php?f=3"]=http://www.nukeforums.com/forums/viewforum.php?f=3[/URL] readers from here i look forward to hear from you [quote] Let's … | |
Hey everyone, I need a little snippet of code that I can use to call a google search. I know I can just use html to link to a google search with a predefined search string in the search box, but what I'd like to do is create a little … | |
Hey guys. I have a prewritten script for uploading images to my server. It already checks filesize which i need. But i also need to check the image width and height to make sure it does not go over a certain size. I am not sure how to accomplish this … | |
[LEFT]Hi, I am using a sendmail command in perl to send emial , I wonder how to get a message confirmation that mail has been sent to perticular user Vinay [/LEFT] | |
I'm using "sendmail" command in perl to send email If I send email using perl script and if I check /var/mail/root I can see a recent copy of mail that I sent using script Is ther any way so that I dont want copy of mail to appear in /var/mail/root … | |
Hi, What does this error means Can't locate TT/Flow_test.pm in @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.8.6/mach /usr/local/lib/perl5/site_perl/5.8.6 /usr/local/lib/perl5/site_perl/5.6.1 /usr/local/lib/perl5/site_perl/5.005 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.6/BSDPAN /usr/local/lib/perl5/5.8.6/mach /usr/local/lib/perl5/5.8.6 .) do I want to copy Flow_test.pm to some folder? If yes which folder ? currently I kept that package in TT folder Vinay | |
Hi, How to implement sleep function in perl Which package supporting that Vinay | |
Is there a way in Java to assign values en masse to an array? To give an idea of what I'm trying to achieve, in Perl, you can do: [inlinecode]@listofvalues = (1..$anynumber);[/inlinecode] to add (in this case) all digits between 1 and $anynumber to the array @listofvalues. Is there a … | |
I don't know how I can execute an event of Javascript into a link in a program in Perl. This event of JavaScript have executed a function that return a HTML page. Anybody know how I can it? Is it possible do it this?: $datos=$datos."<a href='" . $me . "?C=OFERTAS2&EMPRESA=".$empresa_param."&NREF=".$nref."' … | |
History of what is trying to be accomplished: Currently where I work, we receive a large number of excel documents which are used to manually change pl/sql scripts for updating oracle database's. From my research, I have found that oracle can not read excel documents, least not till 9.0, and … ![]() | |
the Perl syntax highlighter is mangling some perl code, for example, this line: [CODE]my(undef, undef, $ftype) = fileparse($file,qr{\..*});[/CODE] using the perl syntax highlighter (which I guess does not work in this forum) the backslash in [B]qr{\..*}[/B] is removed, and becomes [B]qr{..*}[/B] which is no longer the correct code for the … | |
Hello! I am using the following PERL code to display the contents of a sub-directory on my server: [code] sub doit { opendir(DIRHANDLE,"/home/username/public_html/$DirName"); @filenames = ( sort readdir(DIRHANDLE) ); foreach $dirfile (@filenames) { print "<b><a href='/$DirName/$dirfile' target='new'>$dirfile</a></b><br><br>"; } }[/code] That code simply opens a directory and spits out the contents … | |
hi everybody, i need to link this html pages if i click submit button.It should fetch the textbox value to another html page <html> <head> </head> <body> <form method=post action="g1.html"> <input type=text id="q" > <input type="submit" name="submit"> </form> </body> </html> <html> <head> </head> <body> <form method=post> <input type=text id="q" value=""> … | |
Hi, Please explain me how XML is useful . Please give me any Case study example. Vinay | |
At local machine, How to zip a file at remote location using scripting in batch file | |
I am going to write a log-in script to a MS SQL database where once the user is logged in, he or she will have certain capabilities given the roll assigned (student, admin, or volunteer), but not others. My question is how to make the login secure, to have timeouts, … | |
Hello fellow web designers. I used Dreamweaver to place a rollover image on one of my web pages. It uses Javascript. When I looked at the code it had written, it includes the following null hyperlink on the image: [HTML]<a href="#"><img src="rochfest-logo.gif" onmouseover="stuff" onmouseout="more stuff"></a>[/HTML] Is there any chance this … | |
Hi, Is there any perl script (Or any script) available so that I can get email ID when user clicked the link . example Suppose I send this similar sample link (Give below) to three person A,B and C [URL="http://www.example.com/cgi-bin/test.cgi"]http://www.example.com/cgi-bin/test.cgi[/URL] (No query_string) Then I should Get there email address Vinay | |
Ok guys, i'm newbie in perl si i've got one question. Look at that code [code] #!perl -w use Win32::API; $CreateProcess = new Win32::API('Kernel32', 'CreateProcess', 'PPSSIDIPSS', 'N'); if(not defined $CreateProcess) { die "Failed to load library CreateProcess: $!\n"; } my $strup = Win32::API::Struct->typedef('STARTUPINFO', qw( DWORD cb; LPTSTR lpReserved; LPTSTR lpDesktop; … | |
In unix there is a -p tag for the mkdir command. Is there a similar tag in Perl? | |
Hi! I am stuck with some unusual situation and am seeking urgent help. We have a backend server in C++ on Solaris 5.9 . The need is to intiate a sftp/scp to a remote location. We have the login and passwords set up. I know for non-interactive SFTP/SCP2 sessions we … | |
Hello, The title pretty much describes the problem I'm having. Right now, I've got a <table> with two <tbody>s in it; the first one is visible (display:inline) and the second one is invisible (display:none). The first one contains a button, the second one several form fields. Pressing the button hides … | |
Hi all, I'm pretty new to Perl and already I'm finding myself lost. I have created a form for my website that allows users to enter news articles (a textarea) and then my code saves the text entered ($Text) to the database. I have set the Text to longtext through … | |
dear All, Anyone know about OpenFTS(Full Text Search) engine. we want to integrate the concept with our own website. please reply soon... | |
Hello All, This post is releated to the help provided to heatherc3 (Suggestions for perl resources? Dealing with csv data.) Posted May 18th 2006 04:01 PM, and I could use the solutions posted there, if I could get to that as a starting point. I want to work on a … | |
Hello, I have a .shtml page that on it's own works with server side includes but when I call that page from a perl script which is called from a login .shtml page, they don't work. I am using Microsoft IIS and I don't know if it's an IIS settings … | |
I am invoking a perl program from the shell script. the shell script is named as sam.sh #!/usr/bin/sh perl check1.pl cr_incr08292005 n n //cr_incr08292005 is the directory under a directory where sam.sh,slp.pl and check1.pl are stored. The check1.pl is as below. The check1.pl inturn call another perl program slp.pl. #!/usr/local/bin/perl … | |
Hello there, I am working on a web site which google is not indexing properly at all. The site might have some adult content and I am assuming that could be the problem. Apparently even google ads aren't related to anything in my pages. My site is basically the same … | |
Hello, I have a Windows XP Home, Apache/2.0.49 (Win32), PHP/5.1.4 mod_perl/2.0.2, Perl/v5.8.3, MySQL 5.0 platform at my home. I've been doing Perl work with mod_perl on the Apache for some time with no problems. I've worked with PHP and MySQL at other places, but have just recently installed them in … ![]() | |
Hello all, I need some help from you all..... I have datagrid which shown some list of data such as books..... And before each of these data i have "get details" hyperlink button in datagrid and when i click the i want to show detail of that book..... [code]<Columns> <asp:HyperLinkColumn … | |
[COLOR=#000000]SENIOR SOFTWARE ENGINEER NEEDED!!![/COLOR] [COLOR=#000000]Location: Bay Area, CA[/COLOR] [COLOR=#000000]Start Date: IMMEDIATELY[/COLOR] [COLOR=#000000]DURATION: 7 Months[/COLOR] [COLOR=#000000]Required Experience:[/COLOR] [COLOR=#000000]Client has Release process in their engineering department. The scope of the work is to technically contribute in the development / Support of their applications.[/COLOR] [COLOR=#000000]Required Skills:[/COLOR] [COLOR=#000000]1. PERL - 9 (in the scale … | |
Hello, I'm inheriting a half-built web-site that has runs on IIS over an MS SQL database. The web pages are written in ASP and they are mostly a mess. Is it possible to use Perl scripts in an MS SQL and IIS environment? Thanks for any input or feedback. Silentiopk4 | |
I am trying to work through an example from CGI101 (Jaqueline Hamilton's book) and my head is getting turned around. I have two files: env.cgi which looks like [code]#!C:/Perl/bin/perl -wT use strict; use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use CGI::Pretty; print header; print start_html("Environment"); foreach my $key (sort(keys(%ENV))) { … | |
I'm having a problem with Windows XP booting. I get past the splash screen. the screen turns blue and I see a banner staing "Please wait, windows is loading." The operating system stops at this point. It's not freezing becuase I have control of my mouse. I've tried to start … | |
Can anyone help? I have uploaded a formmail.cgi permission are set to 755 All appears to be working fine, even gives confirmation mail is sent. Never arrives though! Any ideas? I am gutted, I've spent days trying to sort it and no luck. I am trying to do some research … | |
I have a DB which have three types of users: students, admins, and volunteers. I am trying to use SQL Server Enterprise Manager 8.0 to set up those roles such that students can (where appropriate) select, insert, update, or delete from given tables/rows; similarly for admins and for volunteers. (The … | |
I am looking for a search engine in PERL. Is there any open source version? | |
what i am going to ask help friend in here is not about coding but it is about installation of z39.50 client ...now i only install perl and i do not remember other application for make z39.50 client works. anyone pls if you know some sufficient information please mail to … | |
hello, i'm trying to run a progrm written in perl this is the code i wrote perl aramorph.pl <infile> outfile where aramorph is a notpad file with my code saved in c:\perlscripts infile is the file that should be read from outfile ................................wirte the output to. both saved in c:\perlscripts … | |
Hi, Im Bala from Tamilnadu(India). I have completed my Enineering B.Tech(Information Technology). Im new to this forum. I think you all will help regarding issues. Im working in private concern coimbatore as linux webserver administrator. I have to shift my job as developer. The languages known are Vb, c, perl, … | |
Hello All: I want this perl script to run in Linux, solaris and windowXP. How to modify this script and make it running in different OS. Hope some Perl senior help me. Thanks!!!! #!/usr/bin/perl -w use Win32:: DriveInfo; if ( $^O =~ /^(MS)?Win/ ) { $TotalNumberOfFreeBytes = (Win32:: DriveInfo:: DriveSpace('c:'))[6]; … | |
Hi, I understand the advantages of using perl over other shell programming techniques like sh,ksh,bash etc. I understand that perl is very powerful and advanced. But, here, i want to know, if there is any situation, where in, we prefer to use the usual shell programming over perl? Any performance … | |
I have been writing some CGI scripts in C++, and I was wondering if anyone else has done the same? I have built a pretty decent sized library of functions I use a lot for formatting form inputs and such. The reason I chose C++ is because I'm so familiar … | |
The question is simple... Can Perls LWP::UserAgent handle proxies that require authentication. I have UserAgent running well, but the documentation doesn't mention authenticated proxies. Any help would be great. Thanks | |
I think I might have unplugged the laptop while it was on (the battery is dead, so I always have to have it plugged in). Now, every time I boot it and a window is open, the on-screen image is very small (about 2 inches by 4 inches and the … | |
I can run processes with system or exec, but when i try to start a GUI, the process starts but doesnt show. If i test this on comandline it shows but not on server (am using Apache,) | |
well i have had this problem for a few weeks and i cant get any thing to work. i have nod32 installed and its finding nothing, spybot sd also is getting no results. thnx in advance. Logfile of HijackThis v1.99.1 Scan saved at 12:41:22 PM, on 5/29/2006 Platform: Windows 2003 … |
The End.