MadMaxAPP
MadMaxAPP

Reputation: 1075

Php APNS Best Practice

I wonder if there are some "ready to use" solutions for the server-side of the apple push notification service out there. I was browsing the web for two days now to get an overview what exists, what can be used for new projects.

I found up till now:

EasyApns ( http://www.easyapns.com )

Looks very easy to install an run, no need for changes at the php distribution and no special requirements to the server.

PhpAPNs ( http://code.google.com/p/apns-php/ )

A bit more complicated, the php needs posix support and also shared memory buildt in.

Are there others out there?

Upvotes: 3

Views: 5615

Answers (2)

Dibyendu Mitra Roy
Dibyendu Mitra Roy

Reputation: 1665

You can check the following apns-based application here

http://www.raywenderlich.com/tutorials

You can download PushChatServer application. For push notiication part check out push folder.

Upvotes: 2

Rob
Rob

Reputation: 136

I use PHP-Mysql for registering and pushing to devices. You may have a look at it. It's easy to understand.

PHPApns can be used without shared memory id you only use Push and feedback. Those requirements are needed for the server-push part.

Upvotes: 0

Related Questions