Category Archives: Uncategorized

Top PSU Brands and Series in 2023 – Corsair, EVGA, Thermaltake, Cooler Master

By | November 19, 2022

Most PC users fail to recognize the importance of the Power Supply Unit. They purchase a PC power supply based on its total wattage, believing that a higher wattage means better performance. Others just don’t pay attention to the power supply unit and continue using whatever they receive with their machine. A PSU just does… Read More »

Url encoded forward slash in MVC or codeignitor app urls

By | June 23, 2010

When using PATH_INFO , the urls of codeignitor apps or your custom MVC looks like this index.php/controlller/method/param1/param2 or /controlller/method/param1/param2 Now if the parameters contain a forward slash then you would urlencode it as : index.php/controlller/method/par%2Fam1/param2 But opening that kind of URL would give an error : Page Not Found This happens if AllowEncodedSlashes directive of… Read More »

PATH_INFO, ORIG_PATH_INFO, APACHE and PHP

By | June 2, 2013

AcceptPathInfo Directive The AcceptPathInfo directive is a useful feature of apache. It detects any path information in a url following the actual script name and passes it to php as an environment variable in $_SERVER superglobal. Php mvc based frameworks often use such urls that have additional path information after a script name. This is… Read More »