|
recursively copy php.ini to www directories
My web host allows me to modify server parameters like register globals by writing a php.ini with, for instance,
register_globals = off
and only that!
The server takes all my host's php.ini as default except for the directory where that php.ini instructs to switch register globals off.
The problem is that if I want to set that parameter for all my web site I would have to copy my small php.ini to every directory in the www tree .
I can't do that. How can I copy my php.ini to all my directories? Although I can request ssh access to my host, is there a way to achieve this whenever I need it, with, for instance a simple ftp client?
|