Thread: how to change?
View Single Post
Old 28th Jan 2012, 12:06 AM   #5
Lock Down
Respected Member
 
Default

use this ssh command to find all php.ini files in reverse date order. Cpanel usually hides it under a cpanel folder.

Code:
find / -name php.ini  -print0 | xargs -0 stat --format '%Y %n'|sort -r

Last edited by Lock Down; 28th Jan 2012 at 12:12 AM.
Lock Down is offline   Reply With Quote