mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
78 lines
2.0 KiB
XML
78 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: e8ac70bf549a723cb36465667a6109d9933b8619 Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<chapter xml:id="wkhtmltox.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.setup;
|
|
|
|
<section xml:id="wkhtmltox.requirements">
|
|
&reftitle.required;
|
|
<para>
|
|
La fuente de libwkhtmltox y las liberaciones binarias se distribuyen en <link xlink:href="&url.wkhtmltopdf;">wkhtmltopdf.org</link>.
|
|
</para>
|
|
<caution>
|
|
<para>
|
|
Los usuarios de Windows necesitan dar el paso adicional de añadir <filename>wkhtmltox.dll</filename> a su <envar>PATH</envar>.
|
|
</para>
|
|
</caution>
|
|
</section>
|
|
|
|
<section xml:id="wkhtmltox.installation">
|
|
&reftitle.install;
|
|
<para>
|
|
El código fuente de esta extensión, y los binarios para Windows están alojados en <link xlink:href="&url.git.hub;krakjoe/wkhtmltox">github</link>,
|
|
</para>
|
|
<para>
|
|
Buscando el código fuente y construyendo la extensión:
|
|
<screen>
|
|
<![CDATA[
|
|
git clone https://github.com/krakjoe/wkhtmltox
|
|
cd wkhtmltox
|
|
phpize
|
|
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
|
|
make
|
|
sudo make install
|
|
]]>
|
|
</screen>
|
|
</para>
|
|
<para>
|
|
Buscando actualizaciones y reconstruyendo la extensión:
|
|
<screen>
|
|
<![CDATA[
|
|
cd wkhtmltox
|
|
phpize --clean
|
|
git pull origin master
|
|
phpize
|
|
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
|
|
make
|
|
sudo make install
|
|
]]>
|
|
</screen>
|
|
</para>
|
|
</section>
|
|
|
|
&reference.wkhtmltox.ini;
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|