Search Results

quick start: web project management

Thursday, November 13th, 2008
If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!So I’m trying to give a friend a few of the basics they’d need to know for managing a web project. Not a bible, just a quick read to hit the ground running. Here is what I came up […]


Building somethng scalable: language / frameworks aka use ror or php

Thursday, November 13th, 2008
When I first started this experiment I planned on using a custom php framework. Recently I realized that its kinda pointless to attempt to do something like this and at the same time lock myself into something that may not be the best solution…. enter google, research, testing, and little sleep. Result: codeigniter was the best […]


Building Something Scalable: Security

Wednesday, October 22nd, 2008
This is part 2 of the Building Something Scalable series / experiment: Security. Umm why are you talking about security? Security is part of being scalable, simple. Think about it. If your security is setup decently your servers will ignore more fake / script kiddie request and can use handle more real ones. At the same […]


Time to bite the bullet

Tuesday, October 21st, 2008
I currently have 3 vpses. One on Mediatemple and two at linode. Thing is I need at least 3 servers at linode to properly setup the environment for my scaling experiment / future gs setup…. So as of tonight I’m biting the bullet and now own 4 linodes. If all goes well I’ll toss 2-3 more […]


Linode Rocks!

Wednesday, October 15th, 2008
I haven’t had much time to post, or do anything fun in the past few months, but I’m currently working on a nginx, php, apache, varnish, memcachedb, mysql setup distributed between two servers. Why does this matter? Because I decided to upgrade my linode so I could slice up my resources into a nice little […]


Building Something Scalable: Caching

Sunday, October 5th, 2008
I’ve been seriously getting my kicks with scalability fora number of months, so why not start on ongoing series where I talk about what I’ve learned / found? So welcome to to the first: Building Something Scalable - An ongoing experiment. This post covers caching. I’ll cover delivery in the next post. Keep in mind language wise […]


Php: Displaying errors

Sunday, September 21st, 2008
Today I got into a wonderful debate about php errors. I myself prefer to have the system handle the suppression of errors at system init (turn error displaying to off), and only use error suppression (@function) when needed. Why? @function is slower than function. Why add a performance decrease when its not needed? Anyways wondering what others think […]


framework: progress - alpha 0.02

Sunday, September 21st, 2008
So after years of partial frameworks, and various concepts, I’ve finally started my framework. First off there is NO windows support. I’m sure that’s not the best way to go, but I can’t think of one reason to host a php app on windows. As noted windows isn’t supported, but I’m working on a linux […]


php tip: securing .inc include files

Sunday, August 17th, 2008
just a quick tip for anyone using .inc files via apache. add the following to your apache configuration to prevent viewing of .inc files via the web. This will not prevent php from including the files locally <FilesMatch “\.inc$”> Deny From All </FilesMatch> There ya go, now feel free to use .inc files as much as you’d like. Also an […]


php: holy T_PAAMAYIM_NEKUDOTAYIM error batman

Wednesday, August 6th, 2008
I got a T_PAAMAYIM_NEKUDOTAYIM error in php a few days ago. I feel special as this appears to be considered an elusive error, but then again I’ve been feeling special since yellow buses. heres what created my error : if(empty(SOME_SYSTEM_DEFINED_CONST)) You can find out more here: www.johnlamansky.com/blog/t_paamayim_nekudotayim/