I just ran into this twice tonight uploading and testing my application. The one usual place I run into it, but then this peculair app does some interesting processing. Which caused me to revisit this in another section of code because like my app doesn't work now.
So I really ran this under...
I ran into a surprising last minute problem here. Not sure if there is anything Perl/CGI can do for me or if I should be looking on the MySQL side of things.
You guessed it I've got a Perl/CGI script adding, updating a MySQL database.
My adds are fine I use a join thing and push data into a...
What a way to spend a Friday afternoon.
Access 2000 format DB runing fine on several XP machines continuing to run fine on all but 1. This user seems to have better monitor than the other 3 - but I don't think this is a display font issue. The problem is combo box will not show items (items are...
I'm looking for a little information about these Auto Loader files - if I have the term correct? I'm not seeing this notion discussed in any of the hard documents I have on Perl. I'm guessing there's not much to know. So call it a curiosity. TT seems a little scarce on the subject too.
I have 2...
I'd like to have a "brief" discussion as to options for putting secret and hidden data on a web page. As I near the end of my first significant web application using a MySQL server and serveral Perl/CGI routines I feel compelled to add some "extra" things which may come in handy in the future...
I came across this I've been doing some experimenting trying to stay away from the absolute positioning that I've grown so accustomed too.
I checked out a 3 column CSS style lay out and it seemed to be what I wanted. I cut and pasted from an old CSS file to keep the names I already had setup. By...
This little gem has been kicking my butt for the last couple of days. I'm a little fustrated so making a posting is helping me to vent. This is the older versions of stuff the only thing keeping my sanity is that maybe newer works ok. I'm not sure exactly why but the thought is giving me a...
Ok so I tackled the uploading concept.
Finally settled on this after all my research
my $upload = $cgi->upload ("targetfilename");
my $binary = '';
while (<$upload>)
{
$binary .= $_;
}
open (OUT, ">$file");
binmode OUT;
print OUT $binary;
close (OUT);
Ok seems a little short, but...
Hey folks, Anybody have any luck with running OpenSSL with Perl? lately.
There appears to some dated stuff nothing recent.
I think I want to do button encryption with a PayPal account. I've downloaded the windows version of openssl and made my private key and public certificate no problem. Then...
I’m struggling on a fundamental level. My skills in using Databases are merging with my Perl/CGI skills for the first time in my initial stab at some Web Applications accessing on-line databases. I don’t know about you but I’m excited. I’ve got a fair amount of database experience starting all...
I've got a cgi file in cgi-bin. This needs to run get some data from the database and post in a table. I'm revisiting my javascript-ing days and as the user interacts with this data in table form little bits of script run. Actually I've got a few things that really jazz things up - so doing...
I got a slick little interface working. I got a list of names in a listbox running along the left hand side, and when user clicks on a name detailed information appears on the right in a tabbed control(i.e., stuff like address tab, telephone tab, etc.) – all is well…..except.
You guessed it...
This is going to start to sound like a previous post I just made but I need
to provide some background information for you folks that might've missed it
before I move on to the focus of this particular thread.
Background:
I create a new table with 2 fields a text field(defaults used and not...
My scenario is that I have a form which is has button Done which the user is clicking to signal they have either made an Edit or Add - I do know which.
I would like for my Form_BeforeUpdate routine to run so the click event just does a Me.Refresh. I have also tried a variety of other "things"...
I've got a good amount of VB knowledge mainly started with VB 4, alot of work with VB 5, a
little with 6.
As I work with Access 2002, I see alot that is the same from VB and alot
that is different; hence the name VBA.
I checked out some previous posts on scoping and I came up with Global...
I've been charged with migrating a 16 bit VB 4 App to VB 6. The 16 bit stuff was never present on the machine that I now use so I'm reasonably sure there is no left over 16 bit contamination. The application allows the user to either view a report in a Crystal Report Window or print the report...
I have this code fragment which is giving me fits under 6.0, and apparently worked fine under 4.0.
Dim myWS As Workspace
Dim myDB As Database
Dim myRecordset As Recordset
SET myDB = Workspaces(0).OpenDatabase(strDbName_Path)
SET myRecordset = myDB.OpenRecordset("Select * from...
I'm looking for a random access file, something under 1 Meg, along with something that tells me whats in the file(and where). This is for some independent verification of some routines I've written. This is actually part of a VB application running on a PC platform so a compatible file to that...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.