Tagged Questions
PEAR is a repository of PHP software code.
17
votes
9answers
11k views
Installing PHPUnit via PEAR
I have problems installing PHPUnit 3.4.6 via PEAR 1.9.0. After I discover channel pear.phpunit.de and try to use one of following commands:
pear install phpunit/PHPUnit
pear install --alldeps ...
16
votes
7answers
6k views
Can't install PEAR on Windows 7, Structures/Graph error
I just did a clean install of Windows 7. I've installed Apache, Mysql
and PHP 5.3.5 all separated (not using XAMPP/others).
I'm getting the following error in the install: ERROR: unable to unpack ...
12
votes
3answers
331 views
PEAR Channels - Setting up your own?
I am looking for instructions on how to setup a PEAR channel for our project so that we can deploy it with the pear installer. I have Googled for a while and cannot find any straightforward ...
11
votes
1answer
2k views
Failed to download pear/HTTP_Request2 within preferred state “stable”
When trying to do
pear install phpunit/PHPUnit
I get the following error
Failed to download pear/HTTP_Request2 within preferred state "stable", latest release is version 2.0.0RC1, stability ...
10
votes
1answer
2k views
Can't install PHPUnit via PEAR, requires PEAR Installer >= 1.9.2, can't upgrade PEAR from 1.9.0
I read the other PHPUnit installation questions but haven't had any success. What is going on with my PEAR install?
$ sudo pear update-channels
Updating channel "components.ez.no"
Channel ...
10
votes
3answers
899 views
What are differences between PECL and PEAR?
I can see that GD library is for images. But I can't see differences between PECL and PEAR.
Both have authentication.
What are the main differences between two?
Why don't they combine them?
9
votes
3answers
2k views
PEAR on Windows: How to change pear.ini location
I am trying to install a PEAR package into my recent XAMPP PHP installation (PHP 5.3.1) on Windows 7 64-bit.
Installing new packages fails because PEAR tries to access c:\windows\pear.ini instead of ...
9
votes
4answers
3k views
How to install an older version of PHPUnit through PEAR?
I would like to downgrade my installation of PHPUnit 3.4 to 3.3. I'm just not sure how to do it.
How do I install version 3.3 of PHPUnit on Ubuntu using PEAR?
8
votes
1answer
897 views
'php pyrus.phar' won't get executed
I use PHP 5.3 on Debian and according to php -m 'Phar' is loaded.
But executing php pyrus.phar or php pyrus.phar config-show leads to no output at all.
What might be the problem?
debian:~# php -v
...
8
votes
6answers
2k views
sudo pecl install apc returns error
I run the command: sudo pecl install apc.
The file gets downloaded, the configuration succeeds, then make is launched and I get the following error.
/usr/include/php5/ext/pcre/php_pcre.h:29: fatal ...
8
votes
3answers
580 views
PHP package manager
does anyone know a package manager library for PHP (as e.g. apt or yum for linux distros) apart from PEAR? I'm working on a system which should include a package management system for module ...
8
votes
1answer
962 views
how do you install a PEAR package on WAMP, Windows 7?
I've no idea with command line stuff!
What i've done:
changed my php.ini to phar.require_hash -> off
ran go-pear.bat
so i'm pretty sure i've got PEAR installed,
now I'd like to install this ...
8
votes
1answer
4k views
Why am I receiving an error when installing PEAR?
I am trying to install PEAR for use with PHP. As i read on the installation instructions at http://pear.php.net/manual/en/installation.getting.php
, I am supposed to run the file go-pear.bat which I ...
7
votes
4answers
3k views
Windows Installing PHPUnit via PEAR - Installing PHPUnit via PEAR
When I run:
peardev install phpunit/PHPUnit
I get the following:
No releases available for package "pear.phpunit.de/PHPUnit"
install failed
I have run the following:
pear channel-discover ...
7
votes
2answers
562 views
What is the difference between PEAR and PEAR2?
So there is the old pear installer and pyrus which is the new package manager for PEAR ... or was it PEAR2 ... at least it's faster and stuff.
And there is the old package.xml version <2.0 and the ...
7
votes
3answers
8k views
7
votes
3answers
602 views
Add PEAR packages to Subversion repository?
I'm working on a project that'll use PEAR packages. Because you never know what version of the PEAR package will be installed on your hosting provider (and especially because I require a patch to ...
6
votes
3answers
189 views
killing zombie children in parent processes
So I want to do the following:
Set up a daemon that forks a bunch of processes.
So the Daemon forks a bunch of processes
then forks another bunch of processes
the problem is the child processes ...
6
votes
4answers
825 views
PHPUnit - 15+ hrs wasted and still doesn't work
So I want to get PHUnit up so I can run selenium server, but I've come to that sad realization that this will likely never happen for me. I have tried it with numerous different versions of WAMP and ...
6
votes
1answer
153 views
Why PEAR Math_BigInteger(48) => 0? (case : MATH_BIGINTEGER_MODE => default)
I used PEAR/Math/BigInteger.php
PHP 5.2.5 (cli)
ubuntu
but
$a = new Math_BigInteger(48);
echo $a -> toString()// '0'
Why?
is it a bug?
it is specific of MATH_BIGINTEGER_MODE => default ...
6
votes
4answers
244 views
PEAR - Still Relevant?
I'm an advanced beginner trying to choose a PHP repository or framework that I can turn to as a reliable source of reusable code.
I really like the idea of PEAR, but am scared off by the lack of ...
6
votes
3answers
6k views
can't install PHPUnit through pear [closed]
Possible Duplicate:
Installing PHPUnit via PEAR
the install instructions for phpunit are running this:
pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit
the first one ...
6
votes
7answers
537 views
How common is PEAR in the real world?
I have looked at a good deal of other peoples source code and other open source PHP software, but it seems to me that almost nobody actually uses PEAR.
How common is PEAR usage out in real world ...
6
votes
5answers
6k views
How do you install PHPUnit without using PEAR on Mac OS X 10.5?
I am having trouble installing PEAR, but I really only want to install PHPUnit. Does anyone have experience doing this?
6
votes
14answers
1k views
What is the best way to access a database from PHP?
When accessing a MySQL-database from PHP there seems to be several ways:
Sprinkle the code with raw SQL-statements
Use the VO-pattern from Java (e.g. DB_DataObjects from PEAR)
DIY and ...
5
votes
1answer
2k views
How can I get a phpunit.bat after install phpunit via PEAR?
I need a phpunit.bat to configure my NetBeans IDE.
I'm using wamp, and I just install phpunit via pear using these instructions:
Before start using PEAR, Update by downloading last go-pear from ...
5
votes
2answers
3k views
Failed opening required 'HTTP/Request2.php' (include_path='.;C:\php5\pear')
everyone. I have some trouble in pear.
I test in my localhost(my localhost path is e:\www), my system is windows xp sp3, My php version is 5.2.11, the path is C:\Program Files\phpStudy\PHP5, I run ...
5
votes
2answers
294 views
Parsing an .htaccess File With PHP
I am using the Zend Framework, and I use the .htaccess for some settings. I am now writing command line scripts for scheduling (e.g. cron). Command line scripts don't look at the .htaccess file ...
5
votes
5answers
3k views
PECL install fails
I have browsed every Google result, read all the forum posts about this error, but I cannot solve it.
When using PECL install for anything, I always end up getting this error:
checking whether the C ...
5
votes
4answers
9k views
sending mail with php & escaping hotmails junk folder
I have been trying to get PEAR::mail to successfully deliver emails to hotmail users without being flagged as SPAM and ending up in the junk folder, i have no problems with yahoo/gmail only with ...
4
votes
4answers
187 views
PHPUnit , PEAR upgrading Errors
Note : I've read all questions about this problem
PEAR is installed and configured on my system (Ubuntu 11.10 + Apache/2.2.20). Because
<?php
require_once 'System.php';
...
4
votes
1answer
206 views
Is PEAR Auth really a viable option for PHP authentication?
Looking at Help me make my password storage safe, the best way to encrypt passwords is using phpass. I want to use PEAR Auth package for authentication, but PEAR only supports md5, sha1, sha256, ...
4
votes
1answer
156 views
Including Pear Libraries in PHP Frameworks
How should PEAR libraries be incorporated as packages / libraries within PHP frameworks?
Namely, I'm using a package system within a PHP framework - and need those PEAR libraries to be easily ...
4
votes
3answers
3k views
Issue upgrading to phpunit 3.5.13
I have been using phpunit for a while, starting with 3.5.8, subsequently upgrading to 3.5.10 and now on 3.5.11
I wanted to upgrade to 3.5.13 today using the commands:
pear channel-update ...
4
votes
2answers
1k views
Problem with installing XML_RPC2
I'm trying to install XML_RPC2 package from PEAR library, but whenever I type a proper command (pear install XML_RPC2) I'm getting an error:
pear/XML_RPC2 requires PHP extension "curl"
No valid ...
4
votes
2answers
1k views
Pear install for macports PHP5
I have PHP5 installed via macports in /opt/local/..the default location for macports. There's no portfile for pear. If I do a standard pear install from the pear site what directory location should ...
4
votes
2answers
166 views
Is PEAR “heavy”?
I've recently been working with PHPUnit which requires PEAR. Every PHP developer I mention PEAR to seems to think it's a big lumbering mess of code. What's the truth? To me, PEAR seems like any ...
4
votes
4answers
9k views
Getting PHPUnit Working - Include Path not set correctly?
I'm trying to get PHPUnit working on my development environment but I've hit a bit of a roadblock when it comes to including PHPUnit in my scripts. I know that I need to set the include path on PHP ...
4
votes
2answers
2k views
How can i get phpunit to run tests from all files in a folder?
From what I've read, it seems like I should be able to set up a folder, e.g. tests/ , put a few files in it with unit test classes, and then run phpunit on that file and have it find and run the ...
4
votes
2answers
154 views
How to check PHP code against a specific set of coding conventions?
I have a PHP library that I'm planning to submit to the PEAR database. In order to do this, the library needs to follow the PEAR Coding Standards.
Is there a tool that can check my code to make sure ...
4
votes
1answer
415 views
PEAR Mail, “unable to set sender”
I have a PHP mail script that successfully sends emails to everything BUT GMail addresses, so now I'm trying to create one with PEAR's Mail and Mail_Mime packages that can send to GMail. I've gotten ...
4
votes
2answers
3k views
how to send html mails using PEAR mail
I am using PEAR mail system to send authenticated mails.I need to send HTML mails that has alinks.It was working fine before i started using PEAR mail.Now i am not able to send HTML mails.
mail body ...
4
votes
3answers
9k views
How to set up PEAR on Mac OS X 10.5 Leopard
I'm ultimately trying to install PEAR so I can easily install PHPUnit. I want to set up a Mac, Apache, MySQL, PHP, PHPUnit development environment so I can test locally. I already have Apach, MySQL ...
3
votes
3answers
37 views
MySQL select from char column using int - leading zero causes unexpected result
I have the following data:
stockcode (CHAR) | description (VARCHAR)
----------------------------------------------
1234 | some product
01234 | some other product
I run ...
3
votes
1answer
88 views
How can I remove completely PHPUnit using the PEAR Installer?
I installed PHPUnit using the PEAR installer a few days ago (I also installed Selenium RC for testing in PHP purpose). Now I want to uninstall it (also delete all related folders and files)
I ran the ...
3
votes
2answers
44 views
Pear won't uninstall
Recently I successfully uninstalled pear using the following command:
$ sudo pear uninstall pear
So I recently reinstalled it, but I botched the installation and I want to start over (once again). ...
3
votes
2answers
81 views
How to uninstall PEAR from one installation of PHP and then install it with another existing PHP installation
I have two installations of php on my server. One version of php is 5.2.0 configured with pear, and the other is 5.2.9 configured --without-pear. My server is running Red Hat Enterprise Linux AS ...
3
votes
4answers
450 views
How do I install PHPUnit 3.5, instead of 3.6?
The current version of PHPUnit is 3.6, but until I update my code I need to use 3.5.15 instead. I'm having a lot of trouble trying to get 3.5.15 installed.
I start with a clean install of Zend ...
3
votes
1answer
60 views
Quick form validation
I use db dataobject, and thus quickform. I got stuck with a problem. want to set a validation at the client side to check a file name extension. Can't find a way out.
the field is like:
'pathname' ...
3
votes
2answers
72 views
PHP: Does PEAR really INSTALL, or does it simply download and unpack a library of PHP code?
Background:
Hi, I'm using PHP 5.3 on a Windows 7 machine as a part of the WAMP server package. I've been trying to get my PHP code to send a verification email to newly registered users, but I've ...