Jump to content

Best methods to update deployed CMS's on external servers?


SomeFunkyDude

Recommended Posts

I want to create a CMS, and when the user logs in to update their photos or post news messages etc. they get a news feed from my server that lets them know if there's an update or upgrade for their CMS. Client needs will vary so I'll have to alter the CMS for each client, but my question is what is the best way to update their version of the CMS after it's deployed and possibly not on my server.

 

Lets say there's a security issue with the login system, I want to have a way of when they log in next time to update their site, get a notification of a necessary update. This update would then create an entirely new php login script or update the existing one.

 

I thought about possibly transporting the update by XML, by say a news feed of some sort, then parse the XML file into fwrite to write the new script to their file directory.

 

I think including files from remote servers is possible, but a feature that I think for security reasons most hosting companies disable. It is possible though to have a php script that parses XML data then writes the data to a new php file (I think), though I'm not sure if this is the best method.

 

Here's a test script I wrote, it uses php to fwrite a new file and the contents are actually a php script, so if you run the script it creates a script that multiplies 3x3.

 

<?php

$file = "multiply.php";
$handle = fopen($file, 'w') or die("error dude");
$message = "<?php\n";
$message .= "\$result = (3 * 3);\n";
$message .= "echo \$result;\n";
$message .= "?>";
fwrite($handle, $message);
fclose($handle);
echo "File ".$file." successfully created! View it <a href=\"".$file."\">here</a>.";

?>

 

Does anyone have any thoughts on this issue of remote updates to external applications that you've previously created for clients?

Link to comment
Share on other sites

i would use an xml file that includes update information. It should have the files that have been modified.

 

When the user checks their CP, it will say "You need an update". The user can then choose to update or not. If they update, they should allow you to FTP the files from your server to their document root.

Link to comment
Share on other sites

A versioning system like SVN could make this easier.  (It might not be able to be as automated as easily then though.)

 

 

One way to do it would be to just have a file on a remote server that reads out files to the client computer.  Process:

 

-client requests file list from server, along with MD5 hashes

-server returns list/hashes

-client:

foreach(local file that doesn't match the hash) {

    download file from remote server and overwrite local file with it.

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.