Opensource Chat Application? [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 months ago.
Improve this question
I have a prosperity application written in-house in PHP for collaboration (Basecamp knock off). We're looking for a way to add IM chat (facebook or gmail style chat), is there a opensource solution we could use with great documentation and a easy to use API?
Platform:
Linux, PHP 5, MySQL, SmartyPHP and Zend Framework.

Maybe you could use Chris Coyier's Chat Room.
http://css-tricks.com/chat2/
Another might be Ajax IM
http://ajaxim.com/

Search for Jabber. It's an open standard based IM protocol. There are several open source implementations which you can use. Also, there are several PHP Client API's which you probably can suit to your needs.

Related

Sending skype messages from php [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I was wondering if it's possible to send skype messages from php without having skype installed. So that you login with php and send messages without any applications. Is this possible.
Thanks
Here are a good answer.
tl;dr: This is not easily possible from within PHP or node.js
Currently, I am unaware of an API that exists with Skype for PHP.
Chat with Skype demo user
I believe that, currently - or as it stands, this is the only method to achieve something as such. This integrates the Skype Protocol for use.
However, you may want to take a look at this: Skype with PHP.
But how accurate that is, I am not sure

PHP Functions repository [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am wondering if you know any source where we can find premade functions in PHP ?
A sort of open-source repository where functions are tested and created taking in mind security and best practices. For example : generating mails, field escape functions, login, register, ... the classic stuff.
There are MANY such packages available at https://packagist.org/. You autoload these into your PHP app using Composer, available at https://getcomposer.org/. This is the newest, bestest way to developer PHP apps. Don't re-invent the wheel; use some of the great code available here.

Codeigniter AOP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need a good implementation of AOP paradigm for Codeigniter PHP Framework.
What do you suggest me?
Aspect Oriented Programming is not very widespread in the PHP world yet. I'm not sure CI has any facility for this. Your best bet is likely to google AOP PHP to find an implementation.
Some libraries (including dead ones)
https://github.com/goaop/framework
http://code.google.com/p/phpaspect/
http://www.aophp.net
http://www.seasar.org/en/php5/index.html
http://php-aop.googlecode.com
http://flow3.typo3.org (as part of their full stack)
https://github.com/AOP-PHP/AOP
Exar is pretty new, with a focus on performance and only depends on PHP itself.

Adding Search Capabilities to my website [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Instead of writing a PHP script from scratch, I wanted to know if there are any free scripts, plugins, or APIs out there that allow me to add a search box to my website to search only content on my site.
Google's free version is ad-supported, and I am looking for a clean, simple, and non ad-supported solution. Any ideas?
Check out the zend lucene extension. It provides a PHP interface to the open source Apache Lucene search engine.
Zend_Search_Lucene Documentation:
http://framework.zend.com/manual/en/zend.search.lucene.html
Apache Lucene project:
http://lucene.apache.org/java/docs/index.html
There are a number of these, one of them are sphider.
Here is a super easy way that works pretty well:
http://sitecomber.com/getsitecomber/
You can create code to paste into your site in about 2 minutes. It doesn't get easier than that. Search is powered by Google, but results are isolated to your website.

asp to php translator [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am looking for some asp to php translator.
I tried http://www.design215.com/toolbox/translator/ it is totally buggy.
please suggest me good think.
Thanks in advance.
There is no commercially available or open source product that will turn classic ASP pages into PHP.
I've heard of companies rolling their own ASP to PHP compiler internally, but it always relies on keeping yourself to a particular subset of each language and/or external features (PHP Extensions, ASP Components, etc.)
You will not find what you're looking for.
This is something else that I found:
http://asp2php.naken.cc/docs.php
Haven't tried it out. But translation is probably not a very robust solution.

Categories