PEAR is a repository of PHP software code.

learn more… | top users | synonyms

1
vote
0answers
13 views

List all messages in a mailbox using PEAR

I am very new to PHP's PEAR extension, and was wondering how to use PEAR to list all of the messages in a mailbox. I have successfully made a program that can find your most recent message, but I want ...
1
vote
1answer
15 views

Pear System_Command

I am currently in my first day of pear programming, and was wondering what system_command does, and how to use it. What programming language does it execute, and where does it execute it? Thanks!
0
votes
1answer
10 views

Installing PEAR on Debian doesn't work

I'm trying to install PEAR on the command-line but nothing happens. This is what I tried: wget http://pear.php.net/go-pear.phar php go-pear.phar Tried also to enable ...
0
votes
0answers
21 views

include Mail.php using pear mail in php script

I am totally new to PHP scripting. This might be a silly question hope someone could help. I try to write a script that can send an attachment to specified destination using php. I found many ...
0
votes
1answer
28 views

SMTP: Failed to connect socket: Unable to find the socket transport “ssl”

I've been trying to get to be able to send emails with Pear on WAMP through GMail, and after spending hours setting it all up and figuring out all the errors I was getting, I thought I was so close, ...
1
vote
0answers
21 views

Strange behavior when sending mails with PEAR with authentication

I am trying to use PHP PEAR to send 50,000 individual emails using SMTP authentication. Everything works fine in my tests (10 to 20 mails) but when I run the real script, it starts sending fine but ...
0
votes
1answer
23 views

PHP “Crypt_Blowfish” Class Initiating Errors? [duplicate]

My PHP Crypt_Blowfish class initiation is throwing following error: Error: Strict Standards: Non-static method PEAR::raiseError() should not be called statically, assuming $this from incompatible ...
0
votes
1answer
20 views

How to setup Mongo DB & PHP with core Mac OS 10.6.8, default Apache instance/Web Sharing

I am attempting to configure PHP and Mongo DB to connect with one another and I'm having some troubles. Before I say the problem let me recap what I have so far. I am using MAC OS X 10.6.8 I have ...
0
votes
1answer
72 views

Solution to Send Bulk Emails in a Short Span Using PHP Application [closed]

I've a authenticated database of one million e-mail IDs. I need to send a single email to all these email IDs. I've a PHP web application using simple PHP mail() function. But i found it is not ...
0
votes
1answer
30 views

PHP CRYPT_BLOWFISH Error?

I'm on Redhat and using PHP Crypt_Blowfish and having following error. ERROR: Notice: Constant CRYPT_BLOWFISH_AUTO already defined in /usr/share/pear/Crypt/Blowfish.php on line 33 Notice: ...
0
votes
1answer
19 views

PHP Blowfish File Missing?

I am testing Blowfish on the RHEL Server. But having followng error: Failed opening required 'Blowfish/DefaultKey.php' (include_path='.:/usr/share/pear:/usr/share/php') in /var/www/html/.......... ...
0
votes
1answer
17 views

Trying to sanitize user input to dynamically set column name in PearDB prepared statement

I'm trying to write a simple method to sort some DB results. We are stuck using PEAR DB, which is an old OO data object class. I need to dynamically set which column we sort by: $query = ...
0
votes
1answer
51 views

Can't get PHP Net_DNSBL working

I'm trying to get working the Net_DNSBL package from PEAR to make some blacklisting checks on domain names, i'm using PHP5.3 and have installed php_pear. Using the pear command I've installed ...
0
votes
0answers
25 views

Missing attachement in mail sent through Mime / SMTP Gmail Server (PHP, PEAR)

I am sending an Email from my server through SMTP Gmail using Pear's Mail Mime. However when I add an attachement it simply does not show up. $smtpinfo["host"] = "ssl://smtp.gmail.com"; ...
0
votes
0answers
24 views

PHP-PEAR based Email Configuration Issue [closed]

I have configured php pear based email configuration on my ubuntu 12.04 server. It was working fine earlier but now I am surprised why it is not working. I tried to debug and found the following ...
0
votes
0answers
28 views

PEAR Spreadsheet_Excel_Writer, is there row limit?

I can't write any more than 90 rows. If I write more than 90 rows, I can't open the Excel file. It says: 'The document is corrupt and cannot be opened. To try and repair it, use the Open and Repair ...
0
votes
1answer
27 views

how upgrade to XML_Parser2?

I have PEAR library installed. Now I am upgrading my PHP 5.2 to PHP 5.4 With 5.4 some functions of PEAR lib gives deprecated warning. e.g. PEAR/XML/Unserializer.php give PHP Strict Standards: ...
0
votes
1answer
16 views

PEAR DB, moving from MySQL 4 to 5, .ini file issue?

We're running a custom made CMS that uses PEAR DB class to handle the database. The database is using MySQL 4.0. Our hosting provider is updating to MySQL 5.0 and deactivating all databases using 4.0. ...
0
votes
0answers
5 views

PEAR mail open new window onsubmit

I have a form in html and it is link to a php file wherein I am using PEAR mail. The question would be, how can I display a message in a new window with a definite size or smaller window? ...
0
votes
0answers
26 views

Adding data to the new worksheet added in PHP pear xls writer [closed]

I have created a workbook whose number of worksheets are depend upon number of column in data. The problem which is occurring is that, I have some data which is more than number of columns available ...
0
votes
1answer
8 views

PHP_CodeSniffer rules documentation

Where is it possible to find documentation on PHP_CodeSniffer rules available? Seems to me like the rules exist, but nobody knows the list of them and their properties. I faced the essential problem, ...
0
votes
2answers
41 views

pear mail, setting and using

I am a begginer, so please advise. Facts : try to use pear's mail and make it work. I installed pear, mail, and Net. I use Apache 2.2.22, PHP 5.3.13, Windows 7. The whole system is installed localy ...
1
vote
0answers
69 views

Installing autoconf on OS-X 10.8 (Mountain Lion) does not remove $PHP_AUTOCONF error message associated with phpize failure

I have followed the string on "$PHP_AUTOCONF errors on mac os x 10.7.3 when trying to install pecl extensions" as well as looked at several other websites for a solution to the following problem. One ...
0
votes
1answer
14 views

Why PEAR_INSTALL_DIR has wrong PEAR path?

This question is related to: Why $pear->packageExists() returns always false on installed package? PEAR_INSTALL_DIR has: C:\php\pear but this path doesn't exists in my system. I have PEAR ...
4
votes
1answer
26 views

Why $pear->packageExists() returns always false on installed package?

I installed Mail (http://pear.php.net/package/Mail) by pear install Mail everything seems to be ok, but checking for this package programmatically: $pear = new PEAR_Registry(); $enabled = ...
0
votes
0answers
41 views

PHP_Uml to XMI to UML Diagram on Ubuntu / Linux

I am using the PHP_Uml pear package and I created a XMI in version 1 and 2. Unfortunately ArgoUml does not parse the XMI 1 correctly, and the XMI 2 always fails with the "new" argo. phpuml . -x 1 -o ...
-1
votes
0answers
26 views

Getting SOAP running when installed with PEAR [closed]

I need to get SOAP running on my VPS. I can see SOAP (0.13.0) listed on the PEAR page in cPanel under Installed PHP Extension(s) and Application(s). Using SSH I can also navigate to ...
0
votes
0answers
40 views

php pear mail extension raises strict notices

Note Though some of you seem to think differently, this is not a duplicate of PHP: PEAR mail message error. That question asks how to suppress the strict notices, which I have no trouble doing. My ...
0
votes
0answers
33 views

How can I make php mail() fucntion to support Authentication [closed]

The php script below uses php mail() fucntion to send e-mails to the customers. But as mail() fucntion does not support authentication, I cant connect it to gmail SMTP server. I have PEAR Mail ...
0
votes
0answers
47 views

SMTP on php xampp server. Need help replacing php mail fucntion with PEAR in my script

I got a script which uses php mail() fucntion in order to send mail to customers. But as you know mail fucntion does not support authentication, which means I cant use Yandex SMTP server. I found out ...
0
votes
1answer
30 views

unable to install Spreadsheet_Excel_Reader pear

how to install pear reader. i have pear writer and it is working fine, i want to install pear reader pear install Spreadsheet_Excel_Reader No releases available for package ...
0
votes
1answer
23 views

SSL Certificate Installation Caused Website to Stop Working

So I had an SSL certificate, I bought one from a new company, through plesk, I installed the new one and then the website just stopped working completely. The host company cant help, the developers ...
1
vote
1answer
43 views

Spreadsheet_Excel_Writer in PHP: align a single cell

I am currently working with the Spreadsheet_Excel_Writer in PHP. It works fine with the data I have. But now I want to format my data. Let's say I have 3 columns: Position, Article and Price. The ...
0
votes
1answer
13 views

PHP Pear ITX add and replace block file

I use PEAR ITX to add template. What my problem is, first 2 time ($number>2) condition match and the $fileName2 is added success, block show as expect; but when the third time ($number==2) condition ...
0
votes
2answers
14 views

PEAR SMTP Behaviour in Windows

I have a strange problem. I am using PEAR SMTP on Ubuntu. When I send this message: --==Alternative_Boundary_x{da5ccf044317613d9f8e371455f292a6}x Content-Type: text/plain; charset="utf-8" ...
0
votes
1answer
103 views

PHP XML serializer

Is there some php libraries which implement serialization of data to XML-format like serialize() and unserialize() (with restoring objects from XML) functions of objects with private and protected ...
1
vote
2answers
39 views

Is there a Pear caching proxy server? [closed]

I'm doing some devops work, and am frequently having to bring up a machine and install a bunch of Pear packages from different locations. These different locations go offline somewhat frequently ...
0
votes
1answer
40 views

Error importing phing task file but the file is present there

2.4.12 build. i have placed the phing file inside /opt/phing and added lines to the .bashrc. export PHP_COMMAND=/usr/bin/php export PHING_HOME=/opt/phing export PHP_CLASSPATH=${PHING_HOME}/classes ...
0
votes
1answer
39 views

PHP: Send email reliably and handle errors robustly

I'm making my first site for a learning exercise as I've been a java back-end developer. I am setting up a user registration form and since this is going to be my user's first glimpse at my site, I ...
0
votes
0answers
37 views

SMTP Pear auth errors

I have found this script online <?php include('Mail.php'); $recipients = 'from@test.com; //CHANGE $headers['From'] = 'from@test.com'; //CHANGE $headers['To'] = 'to@test.com; //CHANGE ...
1
vote
4answers
216 views

Connection of PEAR SOAP with WSDL to C# standalone .exe

I am trying to create a Web Service where parameters chosen from a web-page are sent to a standalone.exe written in C# which controls a CAD package installed on the server. The CAD package then ...
0
votes
0answers
73 views

how to install pear and php unit on easyphp 12.1

I tried this: tutorial but it didn't work. When I try use this command: php go-pear.phar or simple php I get a warning: "The program can't start because yaz4.dll is missing from your computer. Try ...
0
votes
0answers
72 views

Install PECL extension (Solr) using Chef

I am trying to have the SOLR PECL extension install using Chef(-Solo) (via Vagrant). As I'm trying to install it on a Zend Server CE box, I can't use or access the normal php cookbook (AFAIK), so I ...
0
votes
1answer
118 views

Pear Mail gets send to hotmail's junk folder

im trying to send email from my VPS to a hotmail account using postfix and PEAR Mail, its sends perfectly to yahoo, gmail, but to hotmail goes straight to junk, i know whis question has been asked ...
0
votes
1answer
83 views

Phpize under Windows

I'm trying to follow the instructions here: https://code.google.com/p/php-sweph/wiki/build to compile a PHP extension. My OS is Windows XP. I'm unable to find "phpize" to do the command. However, ...
0
votes
1answer
18 views

Installing phpdocumentor on Uniserver

When I use the PEAR web interface provided by Uniserver 8.8.1 to install phpdocumentor, I get the usual "Downloading..." and then the download finished message. Then, nothing happens. What do I need ...
0
votes
1answer
28 views

PHP PEAR BBCodeParser2 throws error whenever I change folder path

I downloaded the PEAR Package HTML_BBCodeParser2 and tried it satisfactorily in easyPHP (LAMP) root folder. I am using: require_once('HTML/BBCodeParser2.php'); /* get options from the ini file */ ...
0
votes
0answers
62 views

go-pear.php Installer For pear php

I used the go-pear.php installer (the most recent version you can get # * Get the latest go-pear version from http://pear.php.net/go-pear) and then set the file go-pear.php in my web server as they ...
0
votes
1answer
83 views

pear PHPunit is not working with netbeans 7

I have installed skeletongenerator and phpunit from pear and already pointed to batch file of them in netbeans settings. but if i try to create phpunit test it shows following error. it seems like it ...
0
votes
1answer
23 views

phpunit error after installation

SOLVED I installed PHP unit and then tried to type phpunit and it produces errors. I already searched for a solution but it didn't work well for me and am getting the following error message: PHP ...

1 2 3 4 5 21