you don't need to have command access.
try something along the lines of:
if ((time() - filectime($file)) > 606024*30))
unlink($file);
what is does is this: get the current timestamp and subtract the timestamp of the files creation. This will give you the difference between now and filecreation in seconds. If these seconds are greater than a month (in seconds), then delete it.
jens