Posts Tagged ‘ servers ’

Python Tips 2

March 7, 2011
By

csv file processing (1) for line in open("samples/sample.csv"): title, year, director = line.split(",") print year, title. (2) import csv reader = csv.reader(open("samples/sample.csv")) for title, year, director in reader: print year, ...

Read more »

KissER Error Handling & Debugging – osCommerce and osCMax shopping …

January 28, 2010
By

Also, when errors print to screen via standard PHP error handling they show your servers full path which is a potential serious security risk, KissER suppresses these full paths. There are those ( usually contributors of dodgy ...

Read more »