php-windows Digest 21 Apr 2005 17:21:10 -0000 Issue 2641
Topics (messages 25891 through 25893):
Re: PHP cannot load extensions
25891 by: Ryan J. Cavicchioni
25892 by: Ryan J. Cavicchioni
Automatic word documents printing failure
25893 by: Nick
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[email protected]
----------------------------------------------------------------------
--- Begin Message ---
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Did you put "extensions=php_mysqi.dll" or "extensions=php_mysqli.dll"
in the php.ini file?
chistian wrote:
> Hi,
>
> I've installed PhpMyAdmin 2.6.2, PHP 5.0.4 and Mysql 4.1.11 and PHP
> is working fine but when I try to start PhpAdmin I get this
> message: "PHP cannot load mysqli extensions, please controll your
> PHP configuration". In "Paths and directories" I wrote:
> extensions_dir="e:\php\ext\" and in "Dynamics extensions" I wrote:
> extensions=php_mysqi.dll. All that on a w2k server with IIS 5 and
> mysql is running as a service. Can someone give me little help on
> that ? Thanks in advance. Chris
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)
Comment: GnuPT 2.6.1.1 by EQUIPMENTE.DE
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCZxiSTMDaAcJxvKgRAoeiAKCoNPOYk2gKjE5sn3WFWENvDS6qTgCggucO
uZvbSUjK5lU9+Hv7+BGBKeU=
=FkOC
-----END PGP SIGNATURE-----
--- End Message ---
--- Begin Message ---
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Did you put "extensions=php_mysqi.dll" or "extensions=php_mysqli.dll"
in the php.ini file?
chistian wrote:
> Hi,
>
> I've installed PhpMyAdmin 2.6.2, PHP 5.0.4 and Mysql 4.1.11 and PHP
> is working fine but when I try to start PhpAdmin I get this
> message: "PHP cannot load mysqli extensions, please controll your
> PHP configuration". In "Paths and directories" I wrote:
> extensions_dir="e:\php\ext\" and in "Dynamics extensions" I wrote:
> extensions=php_mysqi.dll. All that on a w2k server with IIS 5 and
> mysql is running as a service. Can someone give me little help on
> that ? Thanks in advance. Chris
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (MingW32)
Comment: GnuPT 2.6.1.1 by EQUIPMENTE.DE
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCZ5yHTMDaAcJxvKgRAoSlAJ9JB6ay1PJssjFC6Oak4NOT1todfACgn3qR
fj7leyWTaqgMr4xUt1tOdMw=
=hNZT
-----END PGP SIGNATURE-----
--- End Message ---
--- Begin Message ---
hey,
i have generated some word files, based on an template with bookmarks, this
works.
Then i saved the files, and putted the path into an array. then i wanted to
print those files, but i always get this message. i am printing with a
network printer
"Wait till all document in process are completed"
or something like that mine is in dutch, "wacht tot alle in behandeling
afdruktaken zijn voltooid!"
my code
$printerlocation = "\\\\Glenn\\hp deskjet 990c";
content of array $afteprintenbestanden ==>> 2 files
c:\program files\apache group\Apache\htdocs\steon\klanten\Brutyn
Nick\briefVDAB.doc
c:\program files\apache group\Apache\htdocs\steon\klanten\Murat
Cetinkaya\briefVDAB.doc
$word->ActivePrinter = $printerlocation ;
for( $k = 1; $k < count($filestoprint); $k++)
{
$file= $filestoprint[$k];
$word->Documents->Open($file);
$word->ActiveDocument->PrintOut();
$word->Documents[1]->Close(false);
}
--- End Message ---