Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realise that Sharepoint in asp .net based but I have a PHP application that a user wants me to include in a Sharepoint site.

So is it possible to use PHP code inside sharepoint?

share|improve this question
Seriously.. Users / clients are the weirdest of creatures around... =/ – Artiom Chilaru Apr 23 '10 at 21:40
@Artiom No, we are. The Users / clients have nice buttons on app1 and new buttons on app2, should it take a full technology switch to use both things together? They make perfect sense to me, our broken IT world is to be blamed here. – F.Aquino Apr 23 '10 at 22:52

1 Answer

up vote 1 down vote accepted

danit, when you say 'include' in the site, would it mean to be part of the site chrome (like inside the same menus etc) or just live connected with links would suffice?

I ask that because you can run php code under an IIS site but that would only keep the pages separated inside the same virtual host. if you need to actually join the functionalities you can:

  1. Fake it with an iFrame (Page Viewer Web Part pointing to the php site for example).
  2. you'll have to use some interop like webservices. It really comes down to what you want to do and not to if it is possible.
share|improve this answer
+1 for the "fake it with an [i]Frame". This makes my head spin -- I thought my SP clients were "interesting enough". – user166390 Apr 24 '10 at 2:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.