Arkadaşlar merhaba, benim bir linux sunucum var. Kullandığım script uploadprogress fonksiyonunu istiyor ve kurulumunda aşağıdakiler yazıyor.

----------------------------------------------------------------------------------
## Get uploadprogress extension from PECL
wget http://pecl.php.net/get/uploadprogress-0.3.0.tgz

## Extract, build, install
tar xvzf uploadprogress-0.3.0.tgz
cd uploadprogress-0.3.0
phpize
./configure
make
make test
make install
-------------------------------------
in php.ini add the followings,
--------------------------------------------------------------------------------------------------
  uploadprogress.so ;under extensions
  [uploadprogress] ;at the bottom will do
  uploadprogress.file.filename_template="/tmp/uploaded_%s.txt"

-------------------------------------------------------------------------------------------------
ben "make install" bölümüne kadar hepsini yaptım. php.ini 'ye kod eklemeyide biliyorum ancak kodu ekleyip reset attığımda fonksiyonu script görmüyor.

benim eklediğim kodda alttaki kurulumun verdiği kod, en altta zend için eklentiler mevcut onun altına ekliyorum şu kodu;

uploadprogress.so ;under extensions
[uploadprogress] ;at the bottom will do
uploadprogress.file.filename_template="/tmp/uploaded_%s.txt"

ne yapmam gerektiği hakkında bilgisi olan varmı acaba? 3 saattir kafayı yemek üzereyim önceki eklentiler hiç böyle zor olmamıştı =))