开发者

Multi-site File Manager in PHP: Update a single file in multipe sites w/one click?

I have a hosting (hostgator) account with a master directory and multiple subdirectories, each representing a www address. I'd like to know if its possible to create an interface in php that would allow me to update a given file (say, header.php) in a specific folder (my custom wordpress theme which resides in each site) which will be the same in every site.

I currently have to do this via FTP, but its cumbersome b/c I have to open each directory and c开发者_Go百科opy the file to it. So if I have 30 sites to update, its very time consuming. i'd like to just have a list of sites with a checkbox beside each of them (and a "select all" toggle) and run the update on all sites in one click)

Thanks for your input!

PS: I know there are probably chron scripts or interfaces that can do this, but I'll be creating a scriptable (PHP) solution I can package up and send to someone and it just works and is brain-dead simple to use.


Yes, it's possible, you can modify files using PHP's file functions and you can communicate what to update through sockets.

It would be fairly complicated to implement though so I'm not sure what you're asking for.. Yes it's possible but I doubt someone here will give you a copy&paste solution. Do you have a more specific question?


EDIT: an easier solution would be to have a SVN repository so you can simply do it with one line of PHP code:

`svn update`


Any reason you're not using WordPress MU? With it and the child theme functionality built into recent versions of WordPress, your life might be a lot easier.


Yes:

I currently have to do this via FTP, but its cumbersome b/c I have to open each directory and copy the file to it. So if I have 30 sites to update, its very time consuming. i'd like to just have a list of sites with a checkbox beside each of them (and a "select all" toggle) and run the update on all sites in one click)

Basically you need to script those FTP actions and provide some logic as to what path and what files. You can then style the entire thing with a simple front end, listing your sites with a checkbox to select.

Doesn't seem difficult, just have to get the FTP path traversal working and file cp'ing down.


Have a look at Phing and search Google for deployment with PHP


If you are hosting multiple WP sites, you really should use WPMU.

I've implemented Uploadify for single / multiple file upload. Works great. I also use Wordpress.


if its just the header.php and you dont have svn (you could setup an hook which would copy it for you to the right place) you could write a bash script if you have ssh access

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜