Install PHPUnit on WAMP
Carl on jun 10th 2012
Before you can install PHPUnit you need to have installed PEAR. If that is not the case , you can do the following:
- Go to wamp-directory, b.v. :
C:\>cd wamp\bin\php\php5.3.0
- To install PEAR, execute the following command:
C:\wamp\bin\php\php5.3.0>go-pear.bat
You will be asked several questions which you can leave to the default value. - The next thing you will need to do is register PEAR environmental variables in the registry. Therefore you can execute
C:\wamp\bin\php\php5.3.0>PEAR_ENV.reg
(Perhaps not a bad idea to backup your current registry!). Now you can call PEAR everywhere on the command line - If you cannot call PEAR on the command line, you will need to add the PEAR directory to the Windows environmental ‘Path’ variable. You can find that one in:
System Properties -> Advanced-> Environment Variables
. Select the ‘Path’ variable, click on ‘Edit’ , and add to the end of the line a ‘;’ and the path to the PEAR directory which in my case is:C:\wamp\bin\php\php5.3.0
Install PHPUnit
- Register the PHPUnit channel in pear
C:\wamp\bin\php\php5.3.0>pear channel-discover pear.phpunit.de
- Install PHPUnit
C:\wamp\bin\php\php5.3.0>pear install phpunit/PHPUnit
of php5.3.0>pear install –alldeps phpunit/PHPUnit
If you get a warning your PEAR verzion is not high enough, you can upgrade your PEAR version:
...php5.3.0>pear upgrade pear
Filed in Miscellaneous @en,PHP @en | Reacties uitgeschakeld
Set JAVA_HOME on *nix
Carl on jun 8th 2012
If you have installed java (JRE/SDK), and you need for certain programs the system variable JAVA_HOME, you can initialyse it yourself.
Go to you home directory. Find your java install directory: which java
Edit .bashrc/.bash_profile (depends on your *nix flavour) and add:
export JAVA_HOME=[value from which java]
run:
source .bashrc/.bash_profile
READY!!!
You can check it with echo $JAVA_HOME
Filed in Linux @en | Reacties uitgeschakeld
JAVA_HOME instellen *nix
Carl on jun 8th 2012
Als u Java (JRE of SDK) hebt geïnstalleerd en voor bepaalde programmas de JAVA_HOME variabele nodig hebt, wil deze systeem variabele niet altijd geinitïaliseerd zijn. Gelukkig is dat redelijk eenvoudig te verhelpen.
U gaat naar uw home-directory cd ~
. Vraagt uit waar java is: which java
en opent .bashrc of .bash_profile (afhankelijk van uw *nix smaak) met uw favoriete editor. In het bestand voegt u de volgende regel toe:
export JAVA_HOME=[het resultaat van which java]
Vervolgens ververst u uw sessie met:
source .bashrc
of
source .bash_profile
Controle met:
echo $JAVA_HOME
Filed in Linux | Reacties uitgeschakeld
Windows – Disable Getting started/Welcome screen
Carl on jun 7th 2012
1. Start > Run
2. Type in ‘regedit’ and press enter
3. Go down the tree HKEY_CURRENT_USER > Software > Microsoft > Windows > CurrentVersion > Run
4. One of the entries on the right is called ‘Welcome Center’. Delete it, and restart!
Filed in Miscellaneous @en | Reacties uitgeschakeld
Windows – uitschakelen Welkomscherm
Carl on jun 7th 2012
1. Start > Run
2. Type ‘regedit’ en druk op enter
3. Ga naar: HKEY_CURRENT_USER > Software > Microsoft > Windows > CurrentVersion > Run
4. Een van de waarden rechts is: ‘Welcome Center’. Verwijder de instelling en herstart
Filed in Divers | Reacties uitgeschakeld
PHPUnit installeren op WAMP
Carl on jun 4th 2012
Voordat u PHPUnit kunt installeren, moet PEAR geïnstalleerd zijn. Als dat nog niet het geval is, kan dat door de volgende stappen uit te voeren:
-
Ga naar wamp-directory, b.v. :
C:\>cd wamp\bin\php\php5.3.0
-
Om PEAR te installeren voert u het volgende commando uit:
C:\wamp\bin\php\php5.3.0>go-pear.bat
- Dit geeft een aantal vragen, waarvan u de standaard instellingen kunt accepteren.
- Vervolgens stelt u de omgevingsvariabelen in voor PEAR. Daarvoor voert u
C:\wamp\bin\php\php5.3.0>PEAR_ENV.reg
uit. Hiermee worden een aantal waarden in de Registry geplaatst (Voordat u het uitvoert wellicht handig een backup te maken van de registry met regedit). Als die variabelen zijn ingesteld, kunt u overal op de command-line PEAR aanroepen.
Als u PEAR niet van de command-line kunt aanroepen, moet u handmatig de directory aan de lijst met Omgevingsvariabelen toevoegen, deze vindt u in System Properties -> Advanced-> Environment Variables, vervolgens de directory C:\wamp\bin\php\php5.3.0 aan de PATH variable toevoegen.
PHPUnit installeren
- Het kanaal van PHPUnit in pear registreren
C:\wamp\bin\php\php5.3.0>pear channel-discover pear.phpunit.de
- Vervolgens PHPUnit installeren
C:\wamp\bin\php\php5.3.0>pear install phpunit/PHPUnit
ofphp5.3.0>pear install --alldeps phpunit/PHPUnit
Als u een verkeerde versie (te laag) van PEAR op uw systeem hebt kunt u PEAR upgraden
...php5.3.0>pear upgrade pear
Filed in PHP | Reacties uitgeschakeld