Where to find php_printer.dll?

I have a class that uses the php_printer extension, but I cannot find it anywhere, and on php.net it says that it is currently unavailable. I googled it, but everything I downloaded from other sites was not effective. It seemed to me that it was out of date. I copied the dll file to the extension folder and set the configuration in php.ini, but I still could not use the built-in functions. I have installed PHP 5.3.1.

+4
source share
3 answers

Then you did not use Google very well. There are still repositories of precompiled binaries elsewhere:

Just saying that this does not work is not enough. I understand that compiling from source code works on Windows ( pecl install printer with the correct compiler settings), but at least run the PHP interpreter on the command line after editing php.ini . This will give you a useful error message in case of error bindings or the fact that you have edited the wrong configuration file. (Too few details to answer.)

See also: PHP 5.4.7 Compiling ext php_printer

+4
source

Download and unzip the file extenssions http://museum.php.net/php5/pecl-5.2.6-nts-Win32.zip

+2
source

http://downloads.php.net/pierre/ seems to have a date specified in 2010.

I would think about finding some other solution, but it does not look like a widespread extension, and it has not been updated for at least a year.

0
source

All Articles