PHP7.0-curl and MSSQL Tools Incompatibility
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
I'm trying to install Moodle on Ubuntu 18.04 and connect it to a MSSQL server.
But when i try to install php7.0-curl extension, so moodle can work, the MSSQL Tools and other libs are being deleted cause they support libcurl3
although the latest php7.0-curl
has a dependency only with libcurl4
.
So when i try to install libcurl4
it removes the packages MSSQL tools and others.
sudo ACCEPT_EULA=Y apt-get -y install msodbcsql mssql-tools
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libpython-stdlib python python-minimal python2.7 python2.7-minimal
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libcurl3 msodbcsql17
The following packages will be REMOVED:
libcurl4 libcurl4-openssl-dev php7.0-curl
The following NEW packages will be installed:
libcurl3 msodbcsql msodbcsql17 mssql-tools
Is there any way to install older php7.0-curl
extension so i can keep both MSSQL tools and Moodle happy?
Thanks a lot for your time.
18.04 curl php7 mssql
add a comment |Â
up vote
0
down vote
favorite
I'm trying to install Moodle on Ubuntu 18.04 and connect it to a MSSQL server.
But when i try to install php7.0-curl extension, so moodle can work, the MSSQL Tools and other libs are being deleted cause they support libcurl3
although the latest php7.0-curl
has a dependency only with libcurl4
.
So when i try to install libcurl4
it removes the packages MSSQL tools and others.
sudo ACCEPT_EULA=Y apt-get -y install msodbcsql mssql-tools
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libpython-stdlib python python-minimal python2.7 python2.7-minimal
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libcurl3 msodbcsql17
The following packages will be REMOVED:
libcurl4 libcurl4-openssl-dev php7.0-curl
The following NEW packages will be installed:
libcurl3 msodbcsql msodbcsql17 mssql-tools
Is there any way to install older php7.0-curl
extension so i can keep both MSSQL tools and Moodle happy?
Thanks a lot for your time.
18.04 curl php7 mssql
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to install Moodle on Ubuntu 18.04 and connect it to a MSSQL server.
But when i try to install php7.0-curl extension, so moodle can work, the MSSQL Tools and other libs are being deleted cause they support libcurl3
although the latest php7.0-curl
has a dependency only with libcurl4
.
So when i try to install libcurl4
it removes the packages MSSQL tools and others.
sudo ACCEPT_EULA=Y apt-get -y install msodbcsql mssql-tools
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libpython-stdlib python python-minimal python2.7 python2.7-minimal
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libcurl3 msodbcsql17
The following packages will be REMOVED:
libcurl4 libcurl4-openssl-dev php7.0-curl
The following NEW packages will be installed:
libcurl3 msodbcsql msodbcsql17 mssql-tools
Is there any way to install older php7.0-curl
extension so i can keep both MSSQL tools and Moodle happy?
Thanks a lot for your time.
18.04 curl php7 mssql
I'm trying to install Moodle on Ubuntu 18.04 and connect it to a MSSQL server.
But when i try to install php7.0-curl extension, so moodle can work, the MSSQL Tools and other libs are being deleted cause they support libcurl3
although the latest php7.0-curl
has a dependency only with libcurl4
.
So when i try to install libcurl4
it removes the packages MSSQL tools and others.
sudo ACCEPT_EULA=Y apt-get -y install msodbcsql mssql-tools
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
libpython-stdlib python python-minimal python2.7 python2.7-minimal
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libcurl3 msodbcsql17
The following packages will be REMOVED:
libcurl4 libcurl4-openssl-dev php7.0-curl
The following NEW packages will be installed:
libcurl3 msodbcsql msodbcsql17 mssql-tools
Is there any way to install older php7.0-curl
extension so i can keep both MSSQL tools and Moodle happy?
Thanks a lot for your time.
18.04 curl php7 mssql
asked May 13 at 10:04
Kwnstantinos Natsios
1033
1033
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You need to install previous version of extensions âÂÂcommonâ and âÂÂcurlâ for php7.0
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You need to install previous version of extensions âÂÂcommonâ and âÂÂcurlâ for php7.0
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
add a comment |Â
up vote
1
down vote
accepted
You need to install previous version of extensions âÂÂcommonâ and âÂÂcurlâ for php7.0
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You need to install previous version of extensions âÂÂcommonâ and âÂÂcurlâ for php7.0
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
You need to install previous version of extensions âÂÂcommonâ and âÂÂcurlâ for php7.0
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
wget http://security.ubuntu.com/ubuntu/pool/main/p/php7.0/php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-common_7.0.28-0ubuntu0.16.04.1_amd64.deb
sudo dpkg -i php7.0-curl_7.0.28-0ubuntu0.16.04.1_amd64.deb
answered May 13 at 11:17
Lenkus
262
262
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1035646%2fphp7-0-curl-and-mssql-tools-incompatibility%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password