Sunday, September 29, 2013

disable acrobat pro update prompt in osx



This thing has been driving me insane

create file

/Library/Preferences/com.adobe.Acrobat.Pro.plist

add contents:





10

FeatureLockdown

bUpdater



Friday, September 27, 2013

php sphinxclient libsphinxclient compiling

Compiled your own Sphinx ? Trying to install php pecl extension for sphinx?

Done on debian squeeze 6

download src in /usr/src/sphinx
cd /usr/src/sphinx/api/libsphinxclient

./buildconf.sh
./configure --prefix=/usr/local/
make install

pecl install sphinx.



done.

How to install Sphinx search 64bit on debian

Getting error, cannot find mysql libraries? install mysql-devel? not helpful...


HOW TO:

install mysql packages (development)
apt-get install libmysql++-dev libmysqlclient15-dev checkinstall

download source
in root of source run configure:
./configure --enable-id64 --with-mysql=/usr/local

make
make install

done :)

for some reason the configure cannot find the mysql libraries on it's own