CakeFest 2024: The Official CakePHP Conference

Instalación

El código fuente de esta extensión, y los binarios para Windows están alojados en » github,

Buscando el código fuente y construyendo la extensión:

git clone https://github.com/krakjoe/wkhtmltox
cd wkhtmltox
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install
   

Buscando actualizaciones y reconstruyendo la extensión:

cd wkhtmltox
phpize --clean
git pull origin master
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install
   

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top