> Here is easy_install.pth from my sample application. I haven't done > an install of this sample on the production server. Will do that > today. > > import sys; sys.__plen = len(sys.path) > ./setuptools-0.6c11-py2.6.egg > ./pip-0.8.1-py2.6.egg > ./Pylons-1.0-py2.6.egg > ./Tempita-0.5dev-py2.6.egg > ./WebTest-1.2.3-py2.6.egg > ./WebError-0.10.3-py2.6.egg > ./WebOb-1.0.7-py2.6.egg > ./Mako-0.4.1-py2.6.egg > ./nose-0.11.1-py2.6.egg > ./decorator-3.3.1-py2.6.egg > ./simplejson-2.1.5-py2.6-linux-x86_64.egg > ./FormEncode-1.2.4-py2.6.egg > ./PasteScript-1.7.3-py2.6.egg > ./PasteDeploy-1.3.4-py2.6.egg > ./Paste-1.7.5.1-py2.6.egg > ./Beaker-1.5.4-py2.6.egg > ./WebHelpers-1.3-py2.6.egg > ./Routes-1.12.3-py2.6.egg > ./Pygments-1.4-py2.6.egg > ./MarkupSafe-0.12-py2.6-linux-x86_64.egg > import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; > p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p > +len(new)
Ok, I have not installed the test application in a virutal env on the production server which is an older machine running python 2.5.2 under Ubuntu 8.04.1 There is no error with IE7 in this setup. Here is the easy_install.pth on that virtualenv: cat easy-install.pth import sys; sys.__plen = len(sys.path) ./setuptools-0.6c9-py2.5.egg ./Pylons-1.0-py2.5.egg ./Tempita-0.5dev-py2.5.egg ./WebTest-1.2.3-py2.5.egg ./WebError-0.10.3-py2.5.egg ./WebOb-1.0.7-py2.5.egg ./Mako-0.4.1-py2.5.egg ./nose-1.0.0-py2.5.egg ./decorator-3.3.1-py2.5.egg ./simplejson-2.1.5-py2.5-linux-x86_64.egg ./FormEncode-1.2.4-py2.5.egg ./PasteScript-1.7.3-py2.5.egg ./PasteDeploy-1.3.4-py2.5.egg ./Paste-1.7.5.1-py2.5.egg ./Beaker-1.5.4-py2.5.egg ./WebHelpers-1.3-py2.5.egg ./Routes-1.12.3-py2.5.egg ./Pygments-1.4-py2.5.egg ./MarkupSafe-0.12-py2.5-linux-x86_64.egg import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p +len(new) The packages are basically the same. So at this point I'm convinced that the error is not an application error as I don't get any exceptions or indication that anything has gone wrong. I'm confused about whether it might be a problem in the paste server or not, given that it isn't a problem on the old machine with new code. Might it be something lower level with ubuntu 10 or python 2.6? -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
