Running Django Python on IIS 6 - django

I'm having trouble running Django on IIS 6 and was hoping someone could help!
I've followed this guide exactly a number of times: http://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer
However, when I try and view my site I always get the same message:
The specified module could not be found.
What are the steps to fix?
Edit-----
OK - I figured this out.
I was using the wrong version of PyISAPIe. I was using version 2.5 and I had needed version 2.6 to match the version of Python I was using. Hopefully this might help anyone else who is having a similar issue!
Thanks guys for your comments below!

Basically you need to install Fast CGI on IIS 6:
Install Fast CGI on IIS6
I installed PHP on IIS through the new Microsoft web application and it goes like a charme.
I suppose it will work well also for python.

Related

PrestaShop Theme Bug

I have freshly installed PrestaShop 1.6.12 and I install PTS Basic Theme from there: PrestaBrain (developer says it's working on 1.6.X versions).
I installed all modules and switched for this theme.
On my website i can see just this:
Error says: No template found for module pspagebuilder. I sent question how to slove this to developer of this theme but i didn't get any answer.
How to fix it? Also maybe should I downgrade my Presta to lower version? Maybe 1.6.11 (how to do that?). I can't find any solution in google.. :(
You've got a reply on your question on PrestaBrain Ticksy :
https://prestabrain.ticksy.com/ticket/1141690/
hi, you can download it in here : https://www.dropbox.com/s/s8klnq2hmljoqb9/pf_basic_full.zip?dl=0
we update module pspagebuilder, psverticalmenu
thanks

pyinstaller issue with requests 'ImportError: No module named 'requests.packages.chardet.sys'

I have encountered this issue and tried all previous solutions to no avail. Have tried rolling back requests to older versions, have tried updating pyinstaller. Please guys, if you know a configuration that works, let me know.
I am compiling some python 2.7 code that uses Kivy
I am an idiot. I was piping the wrong python install. I use a separate version for other projects, and I sandbox my kivy one to prevent conflicts... too bad I forgot about that :)

Phantomjs 2.0.1 can't find variable define at /assets/test-loader.js

At first, I want to say that I faced the exact same problem described here. But the thing is, the answer doesn't fit me, I installed babel, updated it to the latest version and nothing changed. Also, I uninstalled my phantomjs 1.9.8 and installed 2.0.1, I thought that was a great idea, but again, no result. Does anybody know the reason why this can happen?
Please find addon that's using ES6 in your addons and either remove ES6 code from it or install there Babel.

RubyMine fails to start on Yosemite

RubyMine won't start under Yosemite, no loading screen, no error message.
This seems to be caused by the default JVM that comes with Yosemite
EDIT This also seems to affect WebStorm
This solution is controversial - please read all of it before applying changes!
Open this file
Check the version of Java, most likely 1.8, by using java -version, you should see something like:
java version "1.8.0_20"
Java(TM) SE Runtime Environment (build 1.8.0_20-b26)
Java HotSpot(TM) 64-Bit Server VM (build 25.20-b23, mixed mode)
Open and edit
/Applications/RubyMine.app/Contents/Info.plist
Or for WebStorm
/Applications/WebStorm.app/Contents/Info.plist
Update the following key
<key>JVMVersion</key>
<string>1.7*</string>
to
<key>JVMVersion</key>
<string>1.8*</string>
RubyMine should now be good to go
Feedback on this solution
JetBrains do not recommend this solution as it will break autoupdating with patches. That tradeoff was acceptable for me as I just wanted to get going quickly and avoid installing Java 1.6.
The full discussion is here https://intellij-support.jetbrains.com/entries/27854363-IDE-doesn-t-start-after-updating-to-Mac-OS-Yosemite-or-Mavericks
You shouldn't edit your plist file since it will prevent Rubymine from autoupdating. This is direct from their support pages:
Modifying Info.plist will break the application digital signature and prevent the patch updates. We do not recommend modifying Info.plist file to run under JDK 1.7 or 1.8.
Page located here:
https://intellij-support.jetbrains.com/entries/27854363-IDE-doesn-t-start-after-updating-to-Mac-OS-Yosemite-or-Mavericks
The correct answer is to install Apple JDK 1.6
JDK 1.6 is required to run and may be missing on your system. Please install Apple JDK 1.6. There should be a window with the suggestion to install Java when you start the product for the first time, but it could be hidden by other application windows.
Apple JDK 1.6 download: http://support.apple.com/kb/DL1572.
I have tried to down load the JDK 1.6, it works in my Mac.
Just install java for OS X, and it'll solve the issue.
Up till OS X El Capitan(10.11), this link solves. Or you can just google "java for osx", most probably first link will show you the right answer.

Meteorite installation error on windows XP - "c:\Microsoft.Cpp.Default.props" was not found

I'm learning to create meteor application on my windows machine now. Everything is working fine because http://win.meteor.com have windows installation that I can try with.
The problem I have is now I want to have routing capability in my app. From my research the Meteor-Router package can add by using meteorite. So here's what I've done
Install node.js for windows --> everything looks OK, I can type node -v to look at node version
Install meteorite by type npm install -g meteorite --> every working fine up until async module installation that complain about "c:\Microsoft.Cpp.Default.props" was not found
I've try googling to looking for the answer but have no luck.
Any idea for me to solve this problem?
According to meteorite's official documentation, Meteorite does not work in Windows as of time of writing this. Sorry.
... However, meteorite's git based approach runs counter to the MSI installation that's required to get it working. So meteorite does not work under windows right now. Pull Requests which change this would be gladly accepted!