The Future of Web Pages

Filed Under (.NET, Development, PHP, Web Development) by Robert Green on 11-06-2009

Tagged Under : ,

This morning I came across this jQuery library and it got me to thinking a little bit. All of the web sites that I currently have coded ( I don’t really do the design) tend to use .NET or PHP that is mashed up with some Javascript here and there.


I’m wondering why we tend to still use PHP and .NET except for things that are absolutely on the back end. Why would I use .NET or PHP to manipulate elements in a page when I can just use JavaScript?


Maybe the web community should start developing pages that are JavaScript run and call PHP/.NET WebServices. That puts all the processing for display on the JS and all the data manipulation and retrieval where it should be – on the server.


Any thoughts?

ISAPI Rewrite 3 with Wordpress

Filed Under (PHP, Web Development) by on 06-05-2009

Tagged Under : , ,

If you’re using these 2 tools together, you have to make small effort in order to get rewriting working properly. 

  1. Do what it says here
  2. Open wp-includes/classes.php
  3. Go to line 158. You should see something like $req_uri = $_SERVER['REQUEST_URI'];
  4. Replace that with $req_uri = $_SERVER['HTTP_X_REWRITE_URL'];
  5. You’re good to go!