apache2 - Install ODBC and Sybase on Ubuntu 16.04 - Ask Ubuntu
i building ubuntu 16.04 server our project. error occurs when i'm trying install:
sudo apt-get install php5-odbc php5-sybase tdsodbc
the error says: unable locate package php5-odbc unable locate package php5-sybase
i installed on previous server ubuntu 14.04. question is, how can install latest server ubuntu 16.04?
any appreciated.
those packages available in ubuntu 16.04 in php7.
run this:
$ sudo apt install php7.0-odbc php7.0-sybase tdsodbc
while wouldn't advise unless need it. can install php5 on 16.04
with:
$ sudo add-apt-repository ppa:ondrej/php $ sudo apt-get update $ sudo apt-get install php5.6
that should add available php5
modules.
Comments
Post a Comment