[PHP] Re: #29028 [Opn-Bgs]: php_exif.dll reported as not found

2004-07-14 Thread Tomasen
the correct answer to this bug is:

you have to load php_mbstring.dll before you load php_exif.dll. like:
extension=php_mbstring.dll
...
extension=php_exif.dll

not like:
extension=php_exif.dll
...
extension=php_mbstring.dll

Tomasen

[EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 ID:   29028
  Updated by:   [EMAIL PROTECTED]
  Reported By:  phillip dot hegarty at ntlworld dot com
 -Status:   Open
 +Status:   Bogus
  Bug Type: Dynamic loading
  Operating System: Windows XP Professional
  PHP Version:  5.0.0RC3
  New Comment:

 It's missing some extra libraries that are located in the package.
 Please ask install support questions on e.g. [EMAIL PROTECTED]
 mailing list.



 Previous Comments:
 

 [2004-07-06 12:23:35] phillip dot hegarty at ntlworld dot com

 Description:
 
 Various modules, e.g. gd2, mysql, mysqli, zip and exif
 marked for loading within php.ini.

 All modules found except php_exif.dll - it is colocated
 with all the other found modules.

 Message come up twice on Apache 2 startup.

 All php_*.dll files are in C:\Windows\System32

 Reproduce code:
 ---
 No code - error message on startup of Apache

 Expected result:
 
 No error message

 Actual result:
 --
 Message box explaining that php_exif.dll could not be
 found.


 


 -- 
 Edit this bug report at http://bugs.php.net/?id=29028edit=1

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



[PHP] [PHP5]problem in extending mysqli class

2004-07-14 Thread Tomasen
the follow script throw an error like this:
Fatal error: Can not call constructor in D:\-=WEB=-\include\database.php on
line 3

but it was working fine under PHP5RC3

1 class CDatabase extends mysqli {
2 function __construct($db_info  ){
3   parent::__construct($db_info[hostname], $db_info[username],
4$db_info[password], $db_info[database], $db_info[port]);
5  }
6 }

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



[PHP] [PHP5RC3] echo $this-db-host not work

2004-07-11 Thread Tomasen
assume $this-db is an object. $db-host is a string localhost.

ehco $this-db-host;
// will output
localhost

but
ehco  $this-db-host ;
// whill output
Object id #2-host

is that a bug. or just have to workout by myself?

Thanks for all your good work
Tomasen

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