Blog Archives


Sep
6

0


htaccess overviewThe htaccess Beast If your on a *nix box, no worries, but if you are doing this from a Windows Computer you need to name your file {code type=php}htaccess.txt{/code} so you can work with it, but after uploading it to your server, you will need to rename it to {code type=php}.htaccess{/code} notice the dot in-front and not at the end!! Order Matters First and foremost; order matters! First is First and Last is
Read More

Sep
6

Time Cheat Sheet

Posted in Misc by Admin

0


This is just a quick reference for how many seconds are in x-Minutes, Days, Months, Years etc. Seconds In Unit       60 1 Minute(s) 300 5 Minute(s) 600 10 Minute(s) 900 15 Minute(s) 1800 30 Minute(s) 2700 45 Minute(s) 3600 60 Minute(s)       3600 1 Hour(s) 7200 2 Hour(s) 10800 3 Hour(s) 14400 4 Hour(s) 18000 5 Hour(s) 36000 10 Hour(s) 39600 11 Hour(s) 43200 12 Hour(s) 46800 13 Hour(s) 50400 14 Hour(s) 54000 15 Hour(s) 57600 16 Hour(s) 64800 18 Hour(s) 72000 20 Hour(s) 79200 22 Hour(s) 86400 24 Hour(s)       86400 1 Day(s) 172800 2 Day(s) 259200 3 Day(
Read More

Sep
6

0


How to redirect pages with PHP, HML, htaccess, and JavaScript Redirect Via php {code type=php}<? header( ‘Location: http://www.FremontTech.com’ ) ; ?> <html> <head> </head> <body> </body> </html>{/code} ImportantThis must be the very first thing on the page!! Redirect Via html {code type=html}<html> <head> <meta http-equiv=”refresh” content=”5; url=http://www.FremontTech.com/”> </head> <
Read More