Forum Archive

XCODE project -- Errno13 -- Permission Denied

montedavis

In my script that works fine within Pythonista -- the main file is a web form -- I am getting an error when trying to run it as a standalone XCODE Project.

The first line run starts the web-server.

server = HTTPServer(('', 80), RequestHandler)

This is the line that gives me the permission denied error in the iOS Simulator.

I have changed all project file permissions to 777 to see if it was web server access to files.

I also ran XCODE under sudo.

Any ideas as to what might be causing this permission error?

montedavis

Anybody? I think that the Error 13 is the standard Web Server error code, but I am really lost here. Has anyone succeeded in getting the webform app to run in the XCODE similar / as a standalone app.