Forum Moderators: coopster

Message Too Old, No Replies

Debug PHP script

How do I get someone to do this?

         

vik_c

9:00 am on Feb 26, 2006 (gmt 0)

10+ Year Member



I've got a PHP script coded from scratch and I need it to be debugged and checked for possibles holes. I can't spend anything on it. Any suggestions on how I should manage this? Thanks.

Birdman

7:06 pm on Feb 26, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Add this to the top of the script:

<?php
error_reporting('E_ALL');
..rest of script...
?>

That's a good start. As far as holes(ie. security), you'd have to pay someone for that I think.

phparion

8:19 pm on Feb 26, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



should i offer my services? :D

khaki monster

3:45 am on Feb 27, 2006 (gmt 0)

10+ Year Member



you should also add preventive measures for SQL injections... :) just in case.

cheerz!

vik_c

11:11 am on Feb 27, 2006 (gmt 0)

10+ Year Member



Thanks guys. That's helpful!