Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Which one is the best XMPP client library for PHP/javascript?
I have gone through many of these like:
JSJaC
XMPPHP
MISSUS
Kaazing Gateway
Some one having experience in using these will have better idea.
It seems jaxl support bosh. Then I would look into strophe.js. I myself don't have hands on experience, but if I would implement this in PHP I would try to do it like this.
hxmpp is written in Haxe and supports JavaScript and PHP. so you can use (a part) of your code on both platforms.
Strophe.js is the best with full basic protocol of XMPP, detail documentation and wide community that can support you in the beginning.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there any PHP framework that can be used to build online notes taking tool. like Spring pad. So, that i can install in local server and access it.
Your requirement is to make a Online Notes Taking Tool.
This could be done in any Framework.
Look at CakePHP, CodeIgniter or any frameworks.
You need to be very specific as to what are you looking at.
Moreover, there is nothing specific that only one Framework could achieve.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to develop an application using LinkedIn but confused over which programming language I should pick. Linkedin supports REST & JS APIs and there is some sample code given in PHP & Ruby. I have good command on C/C++ and basic knowledge of JS and PHP. I want to know how should I start as I didn't find Linkedin documentation very elaborate. Which language is preferred for this kind of development and how much popular that is in community to gather future support?
Please share your views.
Thanks.
You should start with PHP with a combination of Ruby, AJAX and JS. but once you get started you'll advance sooner than you had thought.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know a good PHP library to fetch emails? It would be good a Symfony2 bundle but not that's not truly mandatory. Just need something well tested and mature instead of building it on my own.
Thanks!
Fetch is a little library, which covers the PHP IMAP functions into a nice object orientated style. Installable via composer and ready to use.
EDIT: I build a FetchBundle, which enables to configure a server in config.yml and retrieve the connection via the service container.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can someone please recommend a good CRM system? If this question should not be asked here, please let me know where to ask it as I thought this was the best place.
After checking out a few cloud-based services, we chose CapsuleCRM because of its easy integration with our cloud-based accounting system (Xero). We did have a look at Zoho too.
And you're right, this is not the place to ask this question - perhaps try superuser, but I'm not sure. Also not sure why you've used those other tags for this question.
How about vtiger http://www.vtiger.com/
This is new and pretty simple - Onekloud CRM.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a library which allows PHP to decode application/fastinfoset binary XML?
As far as I know, there's no PHP-library that does this. Can you hack around this by creating a tiny java-program that decodes/transforms the FI and call this from PHP?
I know this is a less-than-ideal solution, but this does seem to be uncharted territory.
https://fi.dev.java.net/how-to-use.html has some java-examples on how to handle FI.
As for bridging PHP and Java;
http://sourceforge.net/projects/php-java-bridge is supposedly good (though, site is down when I try),
http://www.php.net/manual/en/book.java.php also have som information on integrating Java and PHP.
Alternatively, you can use probably use webservice or messaging to communicate between PHP and Java. (This is probably obvious.)