Archive for July, 2009
FF3 and FF2 different
Thursday, July 30th, 2009Moving Wordpress to subfolder
Thursday, July 30th, 2009
Okay, I did a dud thing and moved my wordpress into a sub-folder and forgot to re-configure it. Totally messed up all the stylesheets and the login and everything.
Anyway I found out how to fix it. So firstly, move all your wordpress files from your root level to a sub folder like 'wordpress' - move the index.php file as well!
in /wordpress/wp-config.php
add the following lines with your own site and this… Continue reading
XAMPP running very slow on localhost…
Sunday, July 26th, 2009
I had this problem yesterday when trying to work on a project at home using XAMPP (Incase you don't know what XAMPP is, it's a portable web server... I'll write another entry about it soon)
Anyway to my problem... so basically you start up XAMPP and load http://localhost/ and it takes foreeverr to load... eventually it will load.
I googled around for solutions and eventually found out what the problem was:
Most cases… Continue reading
CleanMem
Thursday, July 23rd, 2009
Found a program that actually works! CleanMem
It’s an exe that runs in 5 secs to free up memory it uses some windows API to clean up processes. It’s really good for people like me that have Eclipse, Outlook, VSS, SQLServer and Firefox all open... and I’m only using maybe Eclipse for the majority of the time the others are just open doing sfa
When u install it, it automatically sets a… Continue reading
Coldfusion 9
Thursday, July 16th, 2009
Having a look at Coldfusion 9 and it looks sweet as!
I'm going to do some more testing before I want to try introduce it into the company... but I'm loving the ORM feature!
ALREADY found a great resource centre -
Can't wait to see what other developers can come up with when using CF9
Server.MapPath() error ‘ASP 0173 : 80004005′
Thursday, July 16th, 2009
I had a problem today with Server.MapPath() while trying to check for images using a relative path. I got the following error:
Server.MapPath() error 'ASP 0173 : 80004005'
My code being;
Dim fs
Set fs = Server.CreateObject("Scripting.FileSystemObject")
If fs.FileExists(Server.MapPath("http://localhost/images/myimage.jpg")) Then
'do something
Else
'do something else
End If
Basically I needed to pass virtual path in my app. So I had to remove 'http://localhost' and it worked! :)… Continue reading