Deploying ASP.NET MVC4 App to GoDaddy Compiler issue

I have struggled with the same problem for months. And finally solved it. In the plesk on godaddy I changed the ASP.Net settings. First changed CAS-trustlevel to Full. Then I changed in the Web.config of my project the following: Add trust level full to the system.web Remove the compilers in the system.codecom <system.web> compilation debug=”true” … Read more

URL rewriting in PHP without htaccess

As other people said, just use links like /index.php/nice/looking/url. The “index.php” in the middle of the URL might look a little strange, but I don’t think it’s possible to have it look better without .htaccess Else, you could ask your hoster to redirect any URL to /index.php so that you can handle URL rewriting without … Read more