Joshua Parker Ruehlig
Hall of Famer
- Joined
- Dec 5, 2011
- Messages
- 5,949
welcome, goodluckThanks for your efforts tonight.
welcome, goodluckThanks for your efforts tonight.
yeah its up to date.I got some time away from the forum, so I'm a little bit out of date.
The tutorial on the first page is updated @Joshua Parker Ruehlig?
Is still the best way of getting the OC or can I go through the plugin?
Thanks
Replace the relevant lines in /usr/local/etc/php.ini
apc.enable_cli=1"
you should add that to the PHP sectionI am building a new FreeNAS Owncloud server and I am using your guide. (Thank You)
apc.enable_cli=1 is not in my php.ini
It seems as though APC has been deprecated
https://en.wikipedia.org/wiki/List_of_PHP_accelerators#Alternative_PHP_Cache_.28APC.29
May I successfully ignore this step and optimize caching in another manner later?
Just install OpenSSL from the package repository.Hmm..I got the calendar app installed but curl --version still reads the older OpenSSL....not sure what is going on but I'm not going to argue with it for now. Anyway, thanks for all the help!
pkg install openssl
mv /usr/bin/openssl /usr/bin/openssl.old cd /usr/bin ln -s /usr/local/bin/openssl
WITH_OPENSSL_PORT=yes
this has nothing to do with nginx openssl version. in fact you could compile nginx without openssl like in my production system.Just install OpenSSL from the package repository.
Code:pkg install openssl
Once you have it install you need to simlink to the new version.
Code:mv /usr/bin/openssl /usr/bin/openssl.old cd /usr/bin ln -s /usr/local/bin/openssl
You'll have to compile Nginx from ports with the openssl module for it to use the newer version. Be sure to add the following to /etc/make.conf before you compile it:
Code:WITH_OPENSSL_PORT=yes
ahh, i see on the NGINX part.Yes you are correct you could. But he stated that his openssl version reports the older version after installing openssl and I responded on how to update and symlink to the newer version. I just threw in the Nginx part in case he wanted to access from the outside and take advantage of the newer version of opnessl. I should have been more clear of that in my post.
Symlinking to the newer version and then recompiling curl should solve his problem no?
you don't need to the link step, you don't need to reinstall openssl.Hi,
I have still the curl 60 error and can't install any app. I will give them another try to solve the problem. I have to put "WITH_OPEN_SSL_PORT=YES" in make.conf. then reinstall openssl and recompile curl. I'm right?
Ok. How I have to recompile curl? And must I do the syslink like called above?
service php-fpm stop pkg delete -f php56 php56-curl curl pkg upgrade openssl make config -C /usr/ports/ftp/curl # disable GSSAPI_BASE, enable GSSAPI_NONE make install clean -C /usr/ports/ftp/php56-curl service php-fpm start
Yup, those are the exact steps needed.do you mean this:?
- Add 'WITH_OPENSSL_PORT=yes' to /etc/make.conf
Code:service php-fpm stop pkg delete -f php56 php56-curl curl pkg upgrade openssl make config -C /usr/ports/ftp/curl # disable GSSAPI_BASE, enable GSSAPI_NONE make install clean -C /usr/ports/ftp/php56-curl service php-fpm start
you can you create the file /usr/local/www/owncloud/test.php with the contentsThat's sad. I tried this twice without success. I still got errors when I activate apps. So this would not solve my problem I think :(
<?php phpinfo(); ?>
It was not possible to execute the cronjob via CLI. The following technical errors have appeared: PHP module GD not installed. Please ask your server administrator to install the module.
Yup, those are the exact steps needed.
Actually you were right earlier, you may need to update openssl to have 1.0.2b or something like that.
I've found something. After I pkg upgrade openssl the version of the openssl still:Joshua,
I've also tried, without any success :( I have StartSSL certificate on my domain. Owncloud is working well trough https, but I got the same error when I tried to enable Documents app.
That's because the symlink in /usr/bin is still pointing to the old version of openssl that is uncluded in FreeBSD 9.3I've found something. After I pkg upgrade openssl the version of the openssl still:
OpenSSL 0.9.8za-freebsd 5 Jun 2014
built on: date not available
platform: FreeBSD-amd64
options: bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) blowfish(idx)
compiler: cc
OPENSSLDIR: "/etc/ssl"
How can I update openssl to 1.0.2?
I tried pkg delete openssl, but after that openssl version -a still the same.
How can I remove the base openssl?
Thanks
mv /usr/bin/openssl /usr/bin/openssl.old cd /usr/bin ln -s /usr/local/bin/openssl
openssl version