1
[Runtimeexception]
Error Output: PHP Warning: PHP Startup: Unable to load Dynamic library /usr/lib/php5/20121212+lfs/Curl.so' - /usr/lib/i386-linux-gnu/libgssapi.so. 3: Symbol krb5_ntlm_init_get_challange, version HEIMDAL_KRB5_2.0 not defined in file libkrb5.so.26 with link time Reference in Unknown on line 0
PHP Fatal error: Class 'Collective Html Htmlserviceprovider' not found in /var/www/Laravel/Laravel/vendor/Laravel/framework/src/Illuminate/Foundation/Providerrepository.php on line 150
Does anyone know why you’re making this mistake, I’m a beginner with Poser, someone could explain to me, because I’m trying to do what this response suggests.
Is Curl installed on your system? Try typing on the console:
curl -V
if you show the version, it is installed. If it does not show and you are using Ubuntu or another distro based on Debian, install with:sudo apt-get install curl
. Then try again.– humungs
Ah, if it’s installed, see if the
php5-curl
is installed looking for function<?php phpinfo(); ?>
. You have to have Curl there. If you don’t have,sudo apt-get install php5-curl
.– humungs