Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Install ITL extension

I want to install the PHP ITL extension so I can use it.

Do I need to compile this, and if so, how do I compile it? I need it to work for both Windows and Linux.

like image 833
Basit Avatar asked Feb 09 '10 00:02

Basit


People also ask

How do I open an ITL file?

How do I unlock the iTunes library ITL file? Right-click the ITL file and select Properties, uncheck the Read-only box (it may be under the Security tab), then select OK.

Where is library ITL located?

Navigate to your Music folder and open the iTunes folder. Located iTunes Library. itl. If you don't see it, select View within Explorer and select Hidden Items.

What is an ITL?

ITL stands for iTunes Library File. The primary purpose of the ITL file is to allow iTunes to organize the files that are located in your iTunes musical library. The ITL database keeps information related to the music in the library. This includes data like the ratings for each song and comments.


1 Answers

Why not read the README?

  • libitl must be already be installed along with header files.
  • Download php source code and create directory $PHP_SRC_DIR/ext/itl and copy the files config.m4 itl.c php_itl.h and itl.php to it
  • Run the following commands cd $PHP_SRC_DIR/ext/itl phpize ./configure --with-itl=/path/to/libitl
  • The ITL functions can be enabled by compiling the php-itl extension and copying the resulting .so file to PHP's extension directory.
like image 176
Pekka Avatar answered Sep 30 '22 21:09

Pekka