Welcome to WJ Solutions. I do custom scripting and programming for Servers and Workstations. I mainly work with Linux based,
systems, but have done some MS Windows Programming. I have experience with Mail Servers, making custom scripts and filters for them.
I presently maintain the RTTNews mail server, and did a lot of custom scripting
and filters on their mail server. I also have done some work for EasySimpleHosting,
who has been kind enough to give me free web space. Feel free to contact me with any questions
you may have about work you need done. You can check my about page for info about myself and my services.
Software:
-
bluephp 5.2.17 (11 mb.) - Updated php-5.2.17 package for the BlueOnyx 5.x 32bit Server. Custom compiled
update of php-5.2.17 to safely run alongside BlueOnyx's required php-5.1.6. This is for servers that need the newer php-5.2.x
funtionality, but still need the older php-5.1.6 for the BlueOnyx admin panels.
-
hexiwin (18 kb.) - Hexiwin 0.49 is a small Win32 Hex Editor I made in C years ago.
It will work in Win7 64bit, but was made back when Win95/98 were the thing, so the help system doesn't work with anything above WinXP.
Hexiwin is free, and you are welcome to download and use it if you find it useful.
Solutions:
- The Firefox 3 "no cache" issue - Firefox 3.x has a bug that
causes it to not honor the "no cache" directive if the headers aren't added in a specific order, which can cause problems if you have a page
that needs to be refreshed everytime it's loaded. Below is what you'll need to put in a script to make Firefox 3.x not cache.(From what I've
read, doing this with Meta tags will not work). I've tested this on a page that needs to be refreshed everytime, and this is the only way I
could get it to work. It has to be in this exact order. Of course the date is up to you, just along as it's in the past.
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Expires: Thu, 14 Feb 1957 00:00:00 GMT");
header("Pragma: no-cache");
I found this bit of wisdom at the A Little Madness Website.