Tagged Questions
0
votes
0answers
63 views
Using multiple file input fields in an HTML form
Is there some trick to using multiple file input fields in an html form? I tried using 3 of them so that 3 files can be uploaded at once but on the page that the form POSTs to only the first input ...
2
votes
1answer
76 views
Cannot fetch sorted data from mysql database by perl
I am trying to create a cgi based on perl to display my album and now I am working on the sorting function on photos. I stored the information of each photo in mysql. To display all photos, I have to ...
0
votes
2answers
37 views
Sending operators to mysql statement
I've been stuck on this for about three hours and searched the web, all I need to happen is for a popup_menu to send an operator to a mysql statement, here is what I have so far.
...
1
vote
1answer
105 views
Running a Netbeans based compiled C++ program as CGI giving permission error
With the help of SO community I was successful to run my first MySQL based file in C++. Now y next step is to run on Apache as a CGI file. On Apache it's giving 500 Internal Server Error and in ...
0
votes
1answer
247 views
Using Python CGI and MySQL to save the user inputed from a form into MySQL table
I have two .cgi scripts as of right now. I am trying to have a user input a keyword on one website (the first cgi script) and then it will send that data to the next cgi script. It currently sends ...
0
votes
2answers
147 views
Perl: Handing $dbh off to module. Security and performance?
So I have a cgi script,
#!/usr/bin/perl -T
use strict;
use warnings;
use DBI;
use WebEngine;
my $dbh = DBI->connect('DBI:mysql:database', $username, $password)
|| die "Could not connect to ...
1
vote
1answer
265 views
Perl fetch without execute error - at end of execution
My current perl code is running through all of the rows of the database query and then throwing a
DBD::mysql::st fetchrow_hashref failed: fetch() without execute() at ./recieveTxn.cgi
line 168.
...
0
votes
1answer
198 views
MySQL-python not executing in CGI
I am working with MySQL-python package. I am able to execute MySQL dependent scripts from command line, however doing the same through browser (Apache CGI) yields the following error:
A problem ...
0
votes
0answers
116 views
installation of MySQLdb module in cpanel
I cannot successfully import MySQLdb module in my cpanel.
I open a file named test.py
and type.
#!/usr/bin/python
print "Content-Type: text/html;charset=utf-8\n\n"
print "Before import ...
0
votes
2answers
487 views
Execute python script with parameters in php
I have a php script which searches a mySQL database and returns all of its instances. I would like to use this instance data (string, string, string, list of lists of (string, string, string, string)) ...
0
votes
1answer
234 views
Modify DYLD_LIBRARY_PATH for Apache? Perl CGI script not working when connecting to MySQL
I have a Perl CGI script that works fine when I run it from the command line with ./roster_return.cgi StudentID=101095 but when I run it in MAMP ...
2
votes
2answers
118 views
Why does populating my table take so long?
I'm loading a csv file into my database via a web form.
The order of the raw data is consistent in each csv file, but it changes from file to file, depending on the source, so I have a preview form ...
0
votes
2answers
922 views
Connect to MySQL database using Perl CGI and XAMPP
I am using Perl CGI to access a MySQL database in XAMPP with the following code:
#!/xampp/perl/bin/perl -w
use DBI;
print "Content-type:text/html\r\n\r\n";
$database = "mydb";
$host = "localhost";
...
0
votes
1answer
483 views
How to limit insert data into mysql from a file using perl
I am relatively new to Perl.I have been trying to insert data to database from a text file using a CGI script.I have written code for it and it's working properly.but when i try to impose a limit on ...
1
vote
2answers
118 views
Perl: How to treat a certain MySQL table as utf8
Here is a system that handles everything in latin1, but I want this one particular table to be read as utf8, then properly encoded into JSON.
How do I switch the connection to utf8, then read it, ...
1
vote
1answer
47 views
How to synchronize table updates
I've single database table containing some financial information. Multiple users may be viewing and updating at the same time from a web form on their computers.
What I want is that anyone who does ...
0
votes
2answers
95 views
Interfacing MySQL and C
I have OSX Lion, which comes with Postgres, but I'd rather us MySQL. But either way, I'm pretty lost. How would I go about interfacing C with MySQL, so I can just #include "mysql.h" (or maybe some ...
-1
votes
1answer
74 views
mysql takes 50+ times longer to return 20% more records, why?
I am using a program that I downloaded and don't have all the details. This is a web app (Python CGI) that takes user input and queries the mysql database. What I do know is that when I limit the ...
4
votes
1answer
875 views
should I reuse the cursor in the python MySQLdb module
I'm writing a python CGI script that will query a MySQL database. I'm using the MySQLdb module. Since the database will be queryed repeatedly, I wrote this function....
def ...
1
vote
2answers
278 views
Convert CGI REMOTE_ADDR to network byte order for use with MySql INET_NTOA
I'm trying to log requests for a script and I want to store the client's IP Address in an int(4) column, using INET_NTOA() to return it in a readable function.
However, in my Perl CGI script, ...
0
votes
1answer
115 views
Alternative to Pythons SQLite3 module - maybe MySQL
We have a website that uses SQL (currently SQLite3) to store entrants into a competition & the server side language is python & uses the module sqlite3. It turns out that the webhost runs ...
3
votes
3answers
402 views
Why is Encode::decode('UTF-8', $var) still needed when everything is already in UTF-8?
In a Webapp I maintain I try to keep everything in UTF-8:
the Database (CHARSET=utf8)
the source files (use utf8; written in utf8)
the templates (for Template Toolkit, using ENCODING => utf8)
user ...
0
votes
1answer
730 views
Linking error in C and Mysql
Hi I'm developing CGI which is written in C and trying to use Mysql.
When I try to use it, I got those undefined reference errors for symbols that start with mysql_, such as those shown here:
...
0
votes
1answer
421 views
Error when linking CGI (C programming ) with Mysql
Hi
I'm using CGI which is written with C and MySql.
Here is my sample page.
// save user
void saveUser(char *name, char *pwd,char *role)
{
char query[500];
memset(query,0,500);
...
1
vote
1answer
339 views
perl CGI radio_group: populate values from DB query
Im trying to dynmically generate a table that has a radio button per row whose value is set to the ID field of a SQL table. Im not sure how I can reference this value using CGI radio_group. In my ...
1
vote
1answer
113 views
How can I add a search feature to a website that returns images?
I need to add a search feature to a website.
Not being adept at PERL or PHP, I was thinking of adding a remotely hosted search CGI (like freefind or fusionbot). Alternately, I might end up trying to ...
1
vote
2answers
135 views
How can I add file locations to a database after they are uploaded using a Perl CGI script?
I have a CGI program I have written using Perl. One of its functions is to upload pics to the server.
All of it is working well, including adding all kinds of info to a MySQL db. My question is: How ...
0
votes
1answer
5k views
Why does my Perl CGI complain “Can't locate Mysql.pm”?
I have two folders php and perl. They contain index.php and index.pl, respectively.
My Perl code looks like:
#!/usr/bin/perl
use Mysql;
print "Content-type: text/html\n\n";
print ...
3
votes
6answers
370 views
CGI language choice
Ok, I've asked a few related questions here and only ended up with more questions and I realized now it's because I don't have enough background info. So I'll make it more generic:
I need to make a ...
0
votes
2answers
454 views
C++ CGI and MySQL problem (mysql++)
I'm trying to use c++ in cgi programs and everything is ok if i don't use mysql. Without mysql my site is generated in about 1-2 ms, but if I add only one variable or function from mysql++ library, ...
2
votes
6answers
947 views
Can I display the output of MySQL using CGI?
HI,
I have written a program in Perl using the DBI module. Can I display the output of MySQL using CGI? If so please help me.
program:
#!/usr/bin/perl -w
use DBI;
print ...