Skip to content
Emir Fares BELMAHDI edited this page Feb 24, 2015 · 6 revisions

AtomePHP Documentation

  1. Introduction
  2. Installation
    1. Windows
    1. Linux

  1. Introduction :

AtomePHP is a DOFUS 1.29.1 emulator written entirely in PHP, fully developed by the team, from scratch (not based on any other emulator), the AtomePHP goal is to open a way for Web developers and to give them the opportunity to delve deeper into the world of emulators without having to change their favorite language.

  1. Installation :

a. Windows :

NOTE: If there is an error related to msvcr110.dll download the latest version of Visual C + + (http://www.microsoft.com/fr-FR/download/details.aspx?id=30679)

b. Linux :

  • sudo apt-get install gcc make libzzip-dev libreadline-dev libxml2-dev libssl-dev libmcrypt-dev libcurl4-openssl-dev lib32bz2
  • cd /usr/local/src
  • wget http://www.php.net/distributions/php-<version>.tar.gz
  • tar zxvf php-<version>.tar.gz
  • cd /usr/local/src/php-<version>
  • ./configure --prefix=/usr --with-config-file-path=/etc --enable-maintainer-zts --with-mysql --with-mysqli --with-pdo-mysql --with-readline --enable-mbstring --enable-zip --enable-sockets --enable-sysvsem --enable-sysvshm --with-mhash --with-pcre-regex --with-gettext --enable-bcmath --enable-json --enable-pcntl --with-pear
  • make -j4 && make -j4 install
  • cp php.ini-development /etc/php.ini
  • pecl install pthreads
  • echo "extension=pthreads.so" >> /etc/php.ini
Clone this wiki locally