Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
2k views

Why is mod_wsgi not able to write data? IOError: failed to write data

What could be causing this error: $ sudo tail -n 100 /var/log/apache2/error.log' [Wed Dec 29 15:20:03 2010] [error] [client 220.181.108.181] mod_wsgi (pid=20343): Exception occurred processing ...
4
votes
3answers
4k views

Python Exception handling

C has perror and errno, which print and store the last error encountered. This is convenient when doing file io as I do not have to fstat() every file that fails as an argument to fopen() to present ...
3
votes
4answers
109 views

Python returns no such file or directory when opening a file it has just found using re.search

I am trying to open a specific file in many folders, with the name ending '.alleles.txt'. I search for the file and it is found, but then it returns: IOError: [Errno 2] No such file or directory: ...
3
votes
1answer
2k views

Python “IOError: [Errno 22] Invalid argument” when using cPickle to write large array to network drive

EDIT: At the suggestion of J. F. Sebastian, I can get the same error much more simply: Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] Type "copyright", "credits" or ...
3
votes
3answers
192 views

Why do I get inconsistent exceptions on Python?

I encountered a very strange behavior in Python, a behavior that is not consistent. ... except IOError as msg: sys.exit("###ERROR IOError: %s" % (msg)) Usually this would get me a message like: ...
3
votes
3answers
967 views

Ruby Daemons causing ActiveRecord logger IOError

I'm writing a project at the moment in Ruby which makes use of the ActiveRecord gem for database interaction and I'm trying to log all the database activity using the ActiveRecord::Base.logger ...
3
votes
2answers
2k views

what could be causing this rails ioerror closed stream?

I have a rails application, running in development mode ( with a sqlite database ). The application's purpose is to allow users to upload files through a java client. If a user wants to upload a ...
2
votes
1answer
164 views

How to fix these IOErrors when creating a thumbnail from a filepath in PIL (Python Imaging Library)

I am trying to make a simple function in python that can take in a filepath and an outputfilepath, and then make a 64x64 thumbnail for the image found at filepath and save the thumbnail to ...
2
votes
2answers
832 views

pip install PyQt IOError

I'm trying to install PyQt package with pip, but I get this error: ~$ pip install PyQt Downloading/unpacking PyQt Downloading PyQt-x11-gpl-4.8.3.tar.gz (9.8Mb): 9.8Mb downloaded Running ...
2
votes
1answer
264 views

Observer pattern in wxPython

I am trying to implement the Observer design pattern with wxPython. I have a modelling application that computes vast amount of data in the background. Sometimes I would like to display the output of ...
2
votes
1answer
324 views

help with IOError for reading files

for subdir, dirs, files in os.walk(crawlFolder): for file in files: print os.getcwd() f=open(file,'r') lines=f.readlines() writeFile.write(lines) ...
2
votes
1answer
270 views

Reading server error messages for a URLLoader

I have an URL loader with the following code: public function getUploadURL():void { var request:URLRequest = new URLRequest(); var url:String = getPath(); // Adds time to prevent ...
2
votes
3answers
968 views

How Do I handle IOErrors From HTML Enabled Text Fieds in AS3

If I'm loading images via the <img> tag in a dynamic text field and an IOError is thrown, what would I attach the event listener too? the text field? I tried this... var textField:TextField = ...
1
vote
0answers
22 views

Uploadify never executing upload script

I'm having problems with uploadify and uploading files. The script that does the actual uploading via PHP never seems to get executed and I can't figure out why. The script that checks if a file ...
1
vote
1answer
61 views

Read data from newly written TempFile doesn't work? IOerror closed stream in Ruby on Rails

I am implementing in Ruby on Rails, and i have 2 views. In my first view i read in a file and show the first rows (this works fine), then in my second view ( in the method in the controller ) i write ...
1
vote
1answer
57 views

How do memory-mapped files handle I/O errors?

I am modifying a tool that currently opens files and reads them with fread() to use memory-mapped files. This program frequently reads from devices that may have I/O errors. Currently we catch these ...
1
vote
1answer
545 views

Flash AS3 on URLLoader.load POST - getting http status=0 and no data. Works in Flash IDE

I am making rest calls with a urlload.load(urlRquest). also urlRequest.method = URLRequestMethod.POST; urlRequest.contentType = "application/xml"; When I make the calls within the ...
1
vote
1answer
144 views

multiprocessing > Manager() > RLock Error:

I've got a collection of multiprocessing.Process objects in a list, and they all use the same instance of what I will call a "process safe queue" to communicate in a process-safe (thread-safe but with ...
1
vote
2answers
219 views

getting odd error when calling python script within another python script

I am getting an IOError when calling a python script(script2) within another python script(script1). Script 2 runs fine if called stand alone, however, if I call it from within script one, i get the ...
1
vote
1answer
330 views

SWFUPLOAD IO error

I am using SWFUpload in my website for uploading files. One of the user is consistently getting IO error across all browser which leads me to the conclusion that his flash must be corrupt. But is ...
1
vote
2answers
320 views

Impossibility to connect to a java server with AS3

I'm having trouble with a XMLSocket script in AS3. I have a java server and i'm trying to send a XML data, but the server isn't recieving anything. The most suprising is that my script worked very ...
1
vote
2answers
507 views

django-sorl produces IOError when using template syntax

I've set up django-sorl and I truly think I'm overlooking something simple. I keep getting the following error (TEMPLATE_DEBUG = True and THUMBNAIL_DEBUG = True) Request Method: GET Request URL: ...
1
vote
0answers
337 views

py2exe IOErrors on Windows 7 32bit systems

I have a script that uses py2exe for windows 32 bit python 2.6, using python 2.6.2. This script has exception handling built in and works correctly on Windows 7 64 bit systems and Windows XP systems ...
1
vote
2answers
2k views

Uploadify IO error #2038 random on Google Chrome

I've installed Uploadify to upload files on my server but it appears that with Google Chrome, there are random IO errors, even with small files. On Firefox it works great. Anyone has an idea of what ...
1
vote
4answers
304 views

catching an IOError in python

I wrote a method that does some stuff and catches bad filenames. what should happen is if the path doesn't exist, it throws an IOError. however, it thinks my exception handling is bad syntax... why?? ...
1
vote
2answers
498 views

Using python 2.7, why does my unicode filename raise an IOError when calling file() on it?

Python 2.7: I am trying to open an mp3 to read its ID3 tag using mutagen (so I'd rather not have to change the method), which calls: file(filename, "rb") For files with no special characters this ...
1
vote
1answer
159 views

Getting IOError when using pre_save signal to store a thumbnail

I have a model that has an option photo field. When a photo is added, I want a thumbnail to be automatically created and stored. However, when I do this with a pre_save signal, I keep getting an ...
1
vote
0answers
402 views

Django Image Upload: IOErrno2 Could not find path — and yet it's saving the image there anyway?

I have an issue where the local version of django is handling image upload as expected but my server is not. Note: I am using a Django Container on MediaTemple.net (grid server) Here is my code. ...
0
votes
1answer
36 views

IOError: [Errno socket error] [Errno 11004] getaddrinfo failed

I am beginner python prorammer. With 2.7.2, Windows 7, built-in interpreter, and three libraries. I am trying to do this, with error. I appreciate any help? import os import urllib import socket ...
0
votes
1answer
39 views

SWFUpload IO Error on Vista

I have a problem. On my site everybody can fill the form and make an order. Also, people must upload a photo and an archive. I'm using a flash uploader for this. Some people always get an IO Error ...
0
votes
2answers
88 views

Trac after clean install. TracError: IOError: [Errno 13] Permission denied

I have clean CentOS 6. I just install via yum install httpd mysql-server, python, mysql-python. First Step $ trac-admin /home/tracprojects/main2 initenv Project name: Main SQL Connect string: ...
0
votes
2answers
80 views

Properly handling IOError thrown by logging.config.fileConfig?

This may be an open ended or awkward question, but I find myself running into more and more exception handling concerns where I do not know the "best" approach in handling them. Python's logging ...
0
votes
3answers
59 views

How to convert a file line to a float/int in python

Whenever I try to run this code: #Open file f = open("i.txt", "r") line = 1 #Detect start point def findstart( x ): length = 0 epsilon = 7 a = 3 ...
0
votes
0answers
62 views

SASS conversion fails in Aptana with IOError message

When I try to use the command "Convert CSS to SASS" in Aptana (version 3.0.6), it fails and I get this error in the console: [2011-10-27 13:58:26] An error occurred while processing the invoke block ...
0
votes
2answers
109 views

Python 'No such file or directory' opening path `~/filename` with mode `w+`

I'm trying to open a file that doesn't exist with this line: x = open("~/tweetly/auth", 'w+') That should open it if it exists, and then wipe content to begin to write. If it doesn't exist, it ...
0
votes
1answer
82 views

Python IOError Exception not thrown?

I read a file from a location and tried to catch exception if it was not there.It wasted a lot of time to figure out that the exception is not Working.I read the documentation again it says it's for ...
0
votes
1answer
74 views

Call “expect” script in C++ process

I realized a shell using expect/spawn and send commands to SCP files from a remote server which send automatically the password when it is needed. The script works fine on UNIX terminal. ...
0
votes
0answers
47 views

IO Error when trying to open Fuzzed files MediaPlayer - Android

is there a way to sort of force the MediaPlayer API to prepare a fuzzed up file (in this case it's a .wav file)? I've inserted 5 fuzzed wav files and only 1 out of 5 is able to be prepared by ...
0
votes
1answer
55 views

Gunzipping Contents of a URL - Python

I'm back. :) Again trying to get the gzipped contents of a URL and gunzip them. This time in Python. The #SERVER section of code is the script I'm using to generate the gzipped data. The data is known ...
0
votes
1answer
367 views

IOError with lxml etree parse function

I have a logic like : for root, dirs, files in os.walk(os.getcwd()): if "info.xml" in files: root = lxml.etree.parse("%s/info.xml" % root) tag = ...
0
votes
0answers
147 views

rdiff drops IOError [Errno 5]

I try to backup with rdiff to an FTP directory, witch is mounted with curlftpfs to a local directory. The Rdiff settings are working with a non-Ftp mounted directory. How to write properly to the ...
0
votes
1answer
389 views

Why am I getting 'IOError Exception Value: [Errno 2] No such file or directory' When saving file with PIL

I am building a site using Django/Python and there is one page where the user can upload a photo which is then re-sized and saved using the following function: from PIL import Image, ImageFile def ...
0
votes
0answers
92 views

Could my W2K3 x64 client or our SMB server be keeping zombie samba file caches?

Here's my setup: A) W2K3 x64 server OS client connects to (over 1GB connection, 32GB mem, 12GB free HD) B) RHEL/CENTOS based OS smb server that fetches (over 10GB connection, smb version 3.033) C) ...
0
votes
2answers
659 views

Python IOError exception when creating a long file

I get an IOError shown below when trying to open a new file using "open (fname, 'w+')". The complete error message is below. The file does not exist, but I verified using "os.access(dir_name, ...
0
votes
2answers
2k views

Spring Webflow Application + Primefaces, Fileupload does not work, HTTP Error or/and IO Error

we are developing a JSF spring webflow web application and we are trying to use the primefaces fileupload widget. primefaces works fine, the widgets get rendered correctly. however the fileupload is ...
0
votes
1answer
578 views

Errno 9 using the multiprocessing module with Tornado in Python

For operations in my Tornado server that are expected to block (and can't be easily modified to use things like Tornado's asynchronous HTTP request client), I have been offloading the work to separate ...
0
votes
2answers
125 views

IO error: seeking to local header : while reading from a remote server using Archive::Zip,PERL

Want to read the contents from a .csv file which is in a remote zip file without downloading & extracting the zip file to local machine. I need this because the file zip file size is too large ...
0
votes
2answers
213 views

How to close file objects when downloading files over FTP using Twisted?

I've got the following code: for f in fileListProtocol.files: if f['filetype'] == '-': filename = os.path.join(directory['filename'], f['filename']) print 'Downloading %s...' % ...
0
votes
1answer
617 views

IOError: [Errno 22] Invalid Argument with clock() being passed in

I have not had much luck hunting for finding a good explanation of what invalid argument errors are and what would cause them. My current sample I am working with is import sys mylog="mylog.log" ...
0
votes
1answer
320 views

How to handle Unhandled #2044 errors from Flash tilelist when changing dataprovider?

I have a tilelist component using a custom ImageCell based item renderer. I know that at times some of the images it is trying to retrieve will not be found and I am able to handle this via an IEOrror ...

1 2