problem running a python script using apache,mod_python on linux
hi,
i m trying to integrate python with apache on linux.For this i m using
mod_python.
I dont see any problem with the versions of python,apache and
mod_python i m using.
the versions i m using are
apache version2.
mod_python v3.1.14
python2.4
The problem is,when i m running my python script,after starting apache
,it is showing me the code it has.
My error_log is showing the following message
[Tue Oct 18 19:01:06 2005] [notice] Apache/2.0.55 (Unix)
mod_python/3.1.4 Python/2.4.2 configured -- resuming normal operations
[Tue Oct 18 19:01:06 2005] [info] Server built: Oct 17 2005 13:07:52
[Tue Oct 18 19:01:06 2005] [debug] prefork.c(956): AcceptMutex: sysvsem
(default: sysvsem)
the access_log is showing this message:
127.0.0.1 - - [18/Oct/2005:19:01:14 +0530] "GET /apache_pb.gif
HTTP/1.1" 200 2326
127.0.0.1 - - [18/Oct/2005:19:01:19 +0530] "GET /test/mptest.py
HTTP/1.1" 200 110
from the python script,i m returning an apache.OK ,so i think it goin
on fine,as i m getting 200i.e the hhtp processing is goin on fine.
I have made the required changes to the httpd.conf file
***
LoadModule python_module /home/ngupta/Apache2/modules/mod_python.so
DocumentRoot "/home/ngupta/Apache2/htdocs"
AllowOverride FileInfo
***
I m using a .htaccess file placed under Apache2/htdocs/test/
The .htaccess file has the following code
**
AddHandler mod_python .py
PythonHandler mptest
PythonDebug On
**
where mptest is python script and is as follows
**
from mod_python import apache
def handler(req):
req.send_http_header()
req.write("Hello")
return apache.OK
**
so if anyone knows where the problem lies ,please tell me.
thanks.
Neha gupta
--
http://mail.python.org/mailman/listinfo/python-list
SSL certificate issue
Hi, I am facing SSL certificate issue working with python. Can you help me on this. Thanks, Neha DXC Technology India Private Limited - Unit 13, Block 2, SDF Buildings, MEPZ SEZ, Tambaram, Chennai 600 045, Tamil Nadu. Registered in India, CIN: U72900TN2015FTC102489. DXC Technology Company -- This message is transmitted to you by or on behalf of DXC Technology Company or one of its affiliates. It is intended exclusively for the addressee. The substance of this message, along with any attachments, may contain proprietary, confidential or privileged information or information that is otherwise legally exempt from disclosure. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient of this message, you are not authorized to read, print, retain, copy or disseminate any part of this message. If you have received this message in error, please destroy and delete all copies and notify the sender by return e-mail. Regardless of content, this e-mail shall not operate to bind DXC Technology Company or any of its affiliates to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose. -- https://mail.python.org/mailman/listinfo/python-list
Re: mentor training python Romania with certification
On Tuesday, August 16, 2016 at 6:45:04 PM UTC+5:30, blue wrote: > Hi. > > I'm from Romania. > I need to update my skils under python. > I need to find one mentor ( class, training ) to obtain one certified under > python language. > > Cătălin George Feștilă Hi, You might find Python course offered by edureka to be useful http://www.edureka.co/python Check it out! Regards Neha -- https://mail.python.org/mailman/listinfo/python-list
Re: mentor training python Romania with certification
On Monday, September 5, 2016 at 3:33:55 PM UTC+5:30, [email protected] wrote: > On Tuesday, August 16, 2016 at 6:45:04 PM UTC+5:30, blue wrote: > > Hi. > > > > I'm from Romania. > > I need to update my skils under python. > > I need to find one mentor ( class, training ) to obtain one certified under > > python language. > > > > Cătălin George Feștilă > > Hi, > > You might find Python course offered by edureka to be useful > http://www.edureka.co/python > > Check it out! > > Regards > Neha Hi, Please check out the below link for a demo on Edureka's Python course http://unbouncepages.com/python-training-3/ Regards Neha -- https://mail.python.org/mailman/listinfo/python-list
psycopg2 weirdness
Hey,
I only have little experience with web.py and psycopg2 and am running
into a weird problem, I'd appreciate any help I can get with debugging
it.
I wrote a simple program that works and I don't see any crash:
import psycopg2
try:
database_conn = psycopg2.connect("dbname='dbname' user='username'
host='hostname'");
except:
print "Unable to connect to the database!"
database_conn.set_isolation_level(0)
cur = database_conn.cursor();
while True:
query = "SELECT avg(dep_delay), extract(hour from crs_dep_time) as
crs_dep_hour, origin from flightdata where date = '01-05-2007' group
by origin, crs_dep_hour order by origin, crs_dep_hour";
cur.execute(query)
rows = cur.fetchall()
print rows
-
However, I have a small website built using web.py framework which has
a date picker that lets the user pick a date and it takes the user to
a new url such as: localhost:8080/departures/01-05-2007. I issue a
query to my database for the date selected by the user and retrieve
the results. The problem now is that if I select different dates
directly by changing the url then everything works but as soon as I
pick a date from date picker the server crashes. I removed the date
picker and made it just a text box but as soon as I hit the submit
button, server crashes so I know it is not the date picker that
causing trouble.
---
class departures:
def buildDepartureTableHtml(self, date):
web.debug('date', date)
# Issue the query.
# select avg(dep_delay), extract(hour from crs_dep_time) as
crs_dep_hour, origin from flightdata where date = '2007-02-15' group
by origin, crs_dep
# _hour order by origin, crs_dep_hour;
try:
web.debug("About to issue query")
# query = "SELECT avg(dep_delay), extract(hour from
crs_dep_time) as
crs_dep_hour, origin from flightdata where date = '" + date + "' group
by origin, crs_dep_hour order by origin, crs_dep_hour";
query = "SELECT avg(dep_delay), extract(hour from
crs_dep_time) as
crs_dep_hour, origin from flightdata where date = '01-05-2007' group
by origin, crs_dep_hour order by origin, crs_dep_hour";
cur.execute(query)
web.debug('query executed!')
rows = cur.fetchall()
web.debug('rows fetched!')
web.debug(rows)
except Exception, e:
print repr(e)
database_conn.rollback()
return "Invalid Date"
--
// JS code
function submitForm() {
var date = ($("date").value).replace(/\//g,"-");
window.location = "http://"; + window.location.host + "/
departures/" + date;
}
You can see above that I even ignored the date passed from the form
and I have hardcoded '01-05-2007'. The message "About to issue query"
gets printed as well as the right date chosen from the date picker but
then I see the following:
Assertion failed: (str != NULL), function PyString_FromString, file
Objects/stringobject.c, line 107.
Abort trap
with a pop that says: "The application Python quit unexpectedly. The
problem may have been caused by the _psycopg.so plug-in".
--
I don't understand the error message above. The date did get passed
correctly and am now not even using it, I use the hard coded date. So
what is going on?
Any help would be great.
Thank you!
Neha
--
http://mail.python.org/mailman/listinfo/python-list
==Get an Internship in the United States ==
==Get an Internship in the United States == Internships are practical experiences that bridge the gap between the educational world and the real world allowing students to understand what is really like to work in the industry of their choice. International internships offer much more than the usual internship you would conduct in your country. These types of internships will open your eyes to new ways and new personal and professional relationships, will provide you with new settings and a new culture and expand your opportunities. Here is a small summary on how to get internships in the United States. read more http://studyabrods.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
*** Fundamental Right of Every Child ****
*** Fundamental Right of Every Child Education is a human right with immense power to transform. On its foundation rest the cornerstones of freedom, democracy and sustainable human development."Education is an act or experience that has a formative effect on the mind, character or physical potential of an individual. A vital element to balance the societal factors, education contributes to the economic development of a country. Countries without educated population cannot foresee and implement the best policies necessary for the growth of an otherwise developing country. http://childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
<<< What Online University Scholarships Are Available? >>>
<<< What Online University Scholarships Are Available? >>> Contrary to what you might believe, college scholarships and grants are available to students other than those with a perfect SAT score, or the star of the basketball team. They are available for every type of student interested in a higher education; and that includes students interested in online universities. READ MORE ON http://studyabrods.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
free Internship in the United States / uk /canada /austraila
free Internship in the United States / uk /canada /austraila Internships are practical experiences that bridge the gap between the educational world and the real world allowing students to understand what is really like to work in the industry of their choice. International internships offer much more than the usual internship you would conduct in your country. These types of internships will open your eyes to new ways and new personal and professional relationships, will provide you with new settings and a new culture and expand your opportunities. Here is a small summary on how to get internships in the United States. read more http://childschooledu.blogspot.com/2010/10/get-internship-in-united-states.html -- http://mail.python.org/mailman/listinfo/python-list
Bank Loan Online and Small Business Finance in the US
Bank Loan Online and Small Business Finance in the US A bank loan online generally refers to funding provided by a bank that can be accessed through an online application. Online applications usually only take a few minutes to complete and are analyzed by the bank within a couple of days. Bank loans typically do not require as many documents as a small business loan, but banks may require applicants to provide personal financial statements and credit histories along with the purpose of the loaned funds. more read http://lifeplaan.blogspot.com/2010/09/bank-loan-online-and-small-business.html -- http://mail.python.org/mailman/listinfo/python-list
Schengen States Study VISA ( Scolarship Visa)
Schengen States Study VISA ( Scolarship Visa) The European Union (EU) allows for the free movement of goods between Italy and other member states: Austria, Belgium, Bulgaria, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Sweden, and United Kingdom. The European Union has numerous bilateral and multilateral agreementsmore http://childschooledu.blogspot.com/2010/10/get-internship-in-united-states.html -- http://mail.python.org/mailman/listinfo/python-list
Schengen States free EDUCATION STUDY VISA
Schengen States free EDUCATION STUDY VISA http://childschooledu.blogspot.com/2010/10/get-internship-in-united-states.html The European Union (EU) allows for the free movement of goods between Italy and other member states: Austria, Belgium, Bulgaria, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Sweden, and United Kingdom. Bank Loan Online and Small Business Finance in the US http://lifeplaan.blogspot.com/2010/09/bank-loan-online-and-small-business.html A bank loan online generally refers to funding provided by a bank that can be accessed through an online application. Online applications usually only take a few minutes to complete and are analyzed by the bank within a couple of days. Bank loans typically do not require as many documents as a small business loan, but banks may require applicants to provide personal financial statements and credit histories along with the purpose of the loaned funds. more read http://lifeplaan.blogspot.com/2010/09/bank-loan-online-and-small-business.html -- http://mail.python.org/mailman/listinfo/python-list
Schengen States free EDUCATION STUDY VISA
Schengen States free EDUCATION STUDY VISA http://childschooledu.blogspot.com/2010/10/get-internship-in-united-states.html The European Union (EU) allows for the free movement of goods between Italy and other member states: Austria, Belgium, Bulgaria, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Sweden, and United Kingdom. Bank Loan Online and Small Business Finance in the US http://lifeplaan.blogspot.com/2010/09/bank-loan-online-and-small-business.html A bank loan online generally refers to funding provided by a bank that can be accessed through an online application. Online applications usually only take a few minutes to complete and are analyzed by the bank within a couple of days. Bank loans typically do not require as many documents as a small business loan, but banks may require applicants to provide personal financial statements and credit histories along with the purpose of the loaned funds. more read http://lifeplaan.blogspot.com/2010/09/bank-loan-online-and-small-business.html -- http://mail.python.org/mailman/listinfo/python-list
Study Abroad Scholarship For Study in Australia...
Study Abroad Scholarship For Study in Australia... Studying in Australia holds a particular appeal to the adventurous student who wishes to have excellent quality education in a multicultural ... http://www.childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
Biosphere Technology -
Biosphere Technology - The Greatest Innovation in Green Technologies by D. A. Ocampo Green technologies for more than a century today have been our greatest weapons towards saving planet earth. Comprehensive environmental awareness campaigns have been launched all over the world to inform people of the different ecological benefits of using green energy. But all efforts seem to be not enough because brown energy technologies that desecrate the sanctity of the environment are still reigning supreme in the energy industry. Oil and coal still supply most of the world's energy needs. Unfortunately, coal and oil are also the leading in the release of carbon gases into the atmospheremore>>> http://childschooledu.blogspot.com -- http://mail.python.org/mailman/listinfo/python-list
PHP MySQL Web Development - Why Do You Need a PHP & MySQL ...
PHP MySQL Web Development - Why Do You Need a PHP & MySQL ... 20 Aug 2010 ... PHP is web development language. PHP stands for Hypertext Preprocessor. MySQL is an opensource, SQL Relational Database Management System ... http://childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
How to Fix JavaScript Error ...
How to Fix JavaScript Error ... Javascript error usually appears with a yellow triangle in pop up box and telling you to debug. A problem with JavaScript embedded in the ..read more http://childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
How to Fix JavaScript Error ...
How to Fix JavaScript Error ... Javascript error usually appears with a yellow triangle in pop up box and telling you to debug. A problem with JavaScript embedded in the ..read more http://childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
Using PHP to Dynamically Compress CSS and JavaScript ...
Using PHP to Dynamically Compress CSS and JavaScript ... CSS and JavaScript files are simple plain text files with large amounts of unused space. Compressing all your style sheets into one page ... read more > http://childschooledu.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list
