Lizet Peņa de Sola wrote:
Hello Marek, thanks for your reply.
It was the hosting company support and I the ones installing, yes they have
they have the loading extensions disabled.
However in the package I downloaded from
http://pecl.php.net/package/tidy/1.1 there's no .dll file in it...
Lemme try that script and I'll let you know, thanks
Lizet

.dll files are only for windows.

do you want to install the extension at the root level (available to all users) or at the user level?

At the root level you need line:

extension=tidy.so
or
extension=php_tidy.dll

depending on your platform.

Also make sure that the extension is in extension_dir (check php.ini). Then restart the webserver.

-----Original Message-----
From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 12:42 PM
To: Lizet Peņa de Sola
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Tidy installation problem in php 4.3.8




Do you mean you installed tidy php module on your hosting company server? Then you need to load the module using dl():


if (!extension_loaded('tidy')) { if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')) { dl('/path/to/php_tidy.dll'); } else { dl('/path/to/tidy.so'); } }

Loading extensions might be disalowed by your hosting company.


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to