Nasıl bir PHP cini kurmak için?

1 Cevap php

Ben php ilk cini yazılı olacak ve ben yardıma ihtiyacım var bir çift gerçekten temel sorular var.

  1. What packages need to be installed on my linux server and Does anything in PHP need to be enabled? So far I have gotten this - http://pear.php.net/package/System_Daemon/download

  2. Where on server do I save my daemon files?

  3. I have a number of files that need to be included within the daemon that contain classes and functions for gathering emails and attachments through IMAP. All of these files are currently in my web public directory, how do I include these files within my daemon?

Bunu ben başlamak için gereken her şeyi olduğunu düşünüyorum. Çok teşekkürler!

1 Cevap

  1. What packages need to be installed on my linux server and Does anything in PHP need to be enabled? So far I have gotten this - http://pear.php.net/package/System_Daemon/download

As long your php installation includes sockets you'll be able to write any daemon. Most of current php packages provides sockets support. You need a shell access to be able to configure and execute your daemon, it won't be done by serving it as a web application.

Bahsettiğin paket hakkında bilmiyorum ama sizin daemon yazmak ve korumak için daha kolay hale getirmek için bir yol olması olasıdır.

  1. Nerede sunucuda cinim dosyalar kaydedebilirim?

Her yerde, sadece 1024, altında bir port üzerinde başlatmak gerekiyorsa muhtemelen, root haklarını gerekir, bir kabuk erişimi gerekir. Özel bir kullanıcı oluşturun, eventualy bir hapishane yaparsanız, muhtemelen iyi olacak.

  1. I have a number of files that need to be included within the daemon that contain classes and functions for gathering emails and attachments through IMAP. All of these files are currently in my web public directory, how do I include these files within my daemon?

Böyle bir veri dizini belirtin ve okumak için PHP tarafından desteklenen bir ini gibi, bir yapılandırma dosyası kullanın.

Daha fazla okuma: