> On 4 Jan 2017, at 9:04 PM, Jaqen Nki <[email protected]> wrote: > > oh shit looks like two got in there some how ! i forgot im using 32 bit > ubuntu on my server because of low RAM, that must be it I was using x64 in my > virtual machine, > > deleted 64 and nano'd into the x86 one and says there are 4500+ lines all a > jumbled mess of characters. would I just delete that and run the command for > x86? > > mod_wsgi-py35.cpython-35m-i386-linux-gnu.so > mod_wsgi-py35.cpython-35m-x86_64-linux-gnu.so
They are binary files, you can't edit them. You need to use whatever one was built by pip install and then installed using mod_wsgi-express install-module. This is to ensure it matches the architecture of the Python version you have installed. I would suggest removing both from the modules directory. Then run mod_wsgi-express install-module again and use what it tells you to use. If that is going to install a 64 bit version, but you really want 32 bit, you would need to be using a 32 bit Python to build it, plus ensure your Apache is 32 bit also. Graham -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
