Just a little bit of SharePoint functionality on PHP…

Buy this book at Amazon.com! While Alfresco is for Java and Knowledge Tree is actually for PHP, both of these “open” products are available in a very strong closed, commercial context. This means that one very important part of the “open” nature of technology development and integration is missing: the “customer” or “user” (or developer) is not provided with the option of authentically discovering what they need by using exactly what they need knowing they can add more.

I just want just little bit of SharePoint functionality on PHP. In a “perfect world,” it would be great to install exactly what I need from some suite of components—and what I need now is the ability to see directories of files and then stream the contents of these files on demand. Here are my simple subtleties:

In terms of security, what I am asking for is a potential security risk. In the ASP.NET universe, I ran into some serious security locks trying to get IIS to respect credentials and stream a file from a remote machine (without getting into server delegation issues). In the PHP universe, there is a reason why your friendly neighborhood ISP disables fopen(). Nevertheless, I am looking into this by looking at plain-ol’ PHP solutions like:

Now I know why “open source” solutions to these problems are so aggressively closed and commercial…

Comments

ed, 2009-02-10 12:49:23

You probably can use FTP or screen-scape component to accomplished this outside of the IIS realm. You can set up a web service that pass objects similar to Amazon S3 service, even on SSL or another port...

rasx()