Difference between revisions of "Virtual Machine Setup Development"

From GLMWiki
Jump to: navigation, search
(Common applications for php development)
(Setup with PHP 5.3)
Line 101: Line 101:
 
  sudo rm -f glmPEAR
 
  sudo rm -f glmPEAR
 
  ln -s /var/www/server/glmPEAR53 glmPEAR
 
  ln -s /var/www/server/glmPEAR53 glmPEAR
 +
 +
== xdebug ==
 +
to get work correctly you need html_errors On

Revision as of 14:18, 18 October 2012

For now on It is not posible to use Ubuntu 9.10 anymore. It is no longer being maintained and no longer has repositories to setup anything.

You'll have to use Ubuntu 11.10


Common applications for php development

apt-get install

sudo apt-get install apache2 postgresql-8.4 postgresql-contrib-8.4 \
php5 php5-pgsql php5-sqlite php5-cli php5-imagick php5-gd php-pear phpunit \
vim-gnome subversion cvs php5-curl php5-dev

pear

sudo pear upgrade PEAR
sudo pear upgrade-all

xdebug

sudo pecl install xdebug

phpunit

sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover pear.symfony-project.com
sudo pear install --force --alldeps phpunit/PHPUnit
sudo pear install phpunit/PHPUnit_Selenium
sudo pear install phpunit/DbUnit

phing

sudo pear channel-discover pear.phing.info
sudo pear install phing/phing

VersionControl SVN

sudo pear config-set preferred_state alpha
sudo pear install VersionControl_SVN

vfsStream

sudo pear channel-discover pear.bovigo.org
sudo pear install bovigo/vfsStream-beta

Apache setup

/etc/apache2/envvars
 export GLM_HOST_ID=DEVELOPMENT
sudo chown -R www-data.www-data /var/www
sudo chmod -R 2770 /var/www
sudo mkdir /var/www/server
sudo mkdir /var/www/log
sudo vim /etc/apache2/sites-availabe/default
 change all instances of /var/www to /var/www/server
 change <Directory /var/www/> to <Directory /var/www/server/>
 change the AllowOverride on the directory /var/www/server/ from None to All
sudo a2enmod rewrite
edit /etc/apache2/mods-enabled/dir.conf
 add index.phtml to DirectoryIndex
sudo service apache2 restart

postgres setup

sudo vim /etc/postgresql/8.4/main/pg_hba.conf
Change all methods to trust
sudo service postgresql restart

* if you downgrade (from 9.1) to 8.4, uninstall the newer version before installing the older version, otherwise 8.4 will use
* port 5433, and you may start getting "could not connect to server: Connection refused" errors. You will need to 
* sudo vim /etc/postgresql/8.4/main/postgresql.conf and change the port number to 5432, and change the one for 9.1 to use 5433
* then, do "sudo service postgresql restart"

php setup

set your ini files to max memory of at least 60 or maybe 200
use sudo
 /etc/php5/cli/php.ini
  safe_mode_allowed_env_vars = PHP_,GLM_
  memory_limit = 200
 /etc/php5/apache2/php.ini
  variables_order = "EGPCS" -- refers to already uncommented one
  safe_mode_allowed_env_vars = PHP_,GLM_
  extension=xdebug.so -- may already be set up by pecl
  memory_limit = 200
go change the permission of the /usr/bin/phpunit file so your user can execute the file

(sudo chmod u+x /usr/bin/phpunit)

and change the /usr/share/php directory to yourself as the user

(sudo chown whateveryourusernameis /usr/share/php)

/etc/apache2/envvars
  export GLM_HOST_ID=STEVE
/etc/profile
  umask 007
  export GLM_HOST_ID=STEVE
sudo service apache2 restart

phpunit

For running phpunit you'll need to setup your ENV varaible of GLM_HOST_ID somehow.

You can setup a prepend file that gets prepended and sets the env that way.

this needs to be set in cli/php.ini not apache2/php.ini under the /etc/php5

You'll need to set error_reporting to E_NOTICE where it has DEPRECIATED and set allow_call_time_pass_reference = On

Other

for some application that mail stuff out (forms and such) install sendmail and mailutils

Setup with PHP 5.3

After check out of app.gaslightmedia.com

php 5.3 you'll need to remove you're glmPEAR directory and link in a new glmPEAR copy from

#from your /var/www/server directory checkout glmPEAR53
svn co http://cvs2/svn/dev/glmPEAR53 
cd app.gaslightmedia.com
sudo rm -f glmPEAR
ln -s /var/www/server/glmPEAR53 glmPEAR

xdebug

to get work correctly you need html_errors On