Are there any known problems with Mysql-Extensions?

Ask community to help.

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
Akim
TestLink user
Posts: 1
Joined: Tue Jan 24, 2006 1:37 pm

Are there any known problems with Mysql-Extensions?

Post by Akim »

my konfiguration:
- Win2000 prof.
- Mysql 5.0.37
- PHP 5.2.1 (msi installer)
- apache 2.2

I want to migrate from testlink 1.6.2 to 1.7.
Every komponent works for itself. But at the migration step, i get always the following error message:
Warning!: Your PHP installation don't have the MySQL extension - without it is IMPOSSIBLE to use Testlink.Failed!

I know that i need the mysql extension for mysql and i installed it.
I also did the konfiguration in php.ini.
But it doesn't work.

Is there any known bug in php 5.2.1?
Perhaps you can help me.
Thanks a lot!
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Post by fman »

You need to check using phpinfo() if mysql extension is loaded.
If not configure it on your php.ini
gdeepak@aztecsoft.com
TestLink user
Posts: 11
Joined: Mon Mar 24, 2008 6:37 am

mysql extension

Post by gdeepak@aztecsoft.com »

how to check for mysql extension in the php.in
havlatm
Member of TestLink Community
Posts: 940
Joined: Mon Oct 31, 2005 1:24 am
Location: Czech

Post by havlatm »

Francisco wrote it.

Create a file a run:

Code: Select all

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);

?>
Post Reply