バージョン選択

フォーラム

メニュー

オンライン状況

36 人のユーザが現在オンラインです。 (30 人のユーザが フォーラム を参照しています。)
登録ユーザ: 0
ゲスト: 36
もっと...

サイト内検索

質問 > 管理機能 > 【2.12.6】OpenSSLのバージョンアップについて

管理機能

新規スレッドを追加する

フラット表示 前のトピック | 次のトピック
投稿者 スレッド
tom79
投稿日時: 2015/7/7 17:49
対応状況: −−−
半人前
登録日: 2013/8/2
居住地:
投稿: 29
Re: 【2.12.6】OpenSSLのバージョンアップについて
お世話になっております。

その後、色々と調べながら進め
Opensslを再度

# ./config --prefix=/usr/local
# make
# make install

とし
/usr/local/src以下へ
今と同じバージョンのPHP(5.3.15)を

# wget http://museum.php.net/php5/php-5.3.15.tar.gz
# tar xvfz php-5.3.15.tar.gz
# cd php-5.3.15
# ./configure \
--prefix=/usr/local/php5.3 \
--with-config-file-scan-dir=/usr/local/php5.3/etc \
--with-apxs2=/usr/sbin/apxs \
--disable-all \
--enable-libxml \
--with-libxml-dir=/usr \
--disable-cli \
--disable-cgi \
--enable-zend-multibyte \
--enable-filter \
--with-regex=php \
--with-pcre-regex \
--with-openssl=/usr/local \
--with-curl=/usr/local
# make
# make install

まで行いました。
(configureの内容は、PHP情報のConfigure Commandに、opensslとcurlを追加しました。)

Apacheの再起動を行い、EC-CUBE側で確認したところ
反映されておらず、さらにわからなくなってしまいました。


気になる点として、/usr/local/bin/php-configの内容が
作業前と変わっている行がありました。

作業前
引用:
version="5.3.28"
vernum="50328"
ldflags=""
libs=""
extension_dir='/usr/local/php5.3/lib/php/extensions/current'
configure_options=" '--prefix=/usr/local/php5.3' '--with-config-file-scan-dir=/usr/local/php5.3/etc' '--disable-debug' '--disable-all' '--enable-cli' '--with-pear' '--enable-zend-multibyte' '--enable-mbstring=shared' '--with-regex=php' '--enable-tokenizer=shared' '--enable-ctype=shared' '--enable-posix=shared' '--enable-session=shared' '--without-mm' '--enable-libxml=shared' '--enable-json=shared' '--enable-mbregex' '--enable-safe-mode' '--enable-calendar=shared' '--enable-sockets=shared' '--enable-ftp=shared' '--enable-exif=shared' '--enable-bcmath=shared' '--enable-pdo=shared' '--enable-hash=shared' '--enable-simplexml=shared' '--enable-soap=shared' '--enable-filter=shared' '--with-pdo-mysql=shared,/usr' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite=shared' '--with-mysqli=shared,/usr/bin/mysql_config' '--with-mysql=shared,/usr' '--with-pgsql=shared,/usr' '--with-sqlite=shared' '--with-sqlite3=shared' '--with-bz2=shared,/usr' '--with-pcre-regex' '--with-iconv=shared' '--enable-dba=shared' '--with-gdbm' '--with-db4' '--with-db1' '--with-gettext=shared,/usr' '--with-curl=shared' '--with-curlwrappers' '--with-gd=shared' '--enable-gd-native-ttf' '--enable-gd-jis-conv' '--with-freetype-dir=shared,/usr' '--with-xpm-dir=/usr/X11R6' '--with-jpeg-dir=shared,/usr' '--with-png-dir=shared,/usr' '--with-t1lib=shared,/usr' '--with-imap=shared,/usr' '--with-imap-ssl=/usr' '--with-mcrypt=shared,/usr' '--with-mhash=shared,/usr' '--with-pspell=shared,/usr' '--with-gmp=shared,/usr' '--enable-xml=shared' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--enable-dom=shared' '--with-xsl=shared,/usr' '--with-xmlrpc=shared' '--with-libxml-dir=/usr' '--with-libexpat-dir=/usr' '--with-zlib=shared,/usr' '--enable-zip=shared' '--with-zlib-dir=/usr' '--with-openssl=shared' '--with-kerberos' '--enable-wddx=shared' '--with-oci8=shared,/usr/local/oracle' '--with-pdo-oci=shared,/usr/local/oracle'"
php_sapis="cli cgi"


作業後
引用:
version="5.3.15"
vernum="50315"
ldflags=" -L/usr/local/lib"
libs="-lcrypt -lcrypt -lcurl -lcrypto -lssl -lcrypto -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lcurl -lcrypt -lcrypt "
extension_dir='/usr/local/php5.3/lib/php/extensions/no-debug-non-zts-20090626'
configure_options=" '--prefix=/usr/local/php5.3' '--with-config-file-scan-dir=/usr/local/php5.3/etc' '--with-apxs2=/usr/sbin/apxs' '--disable-all' '--enable-libxml' '--with-libxml-dir=/usr' '--disable-cli' '--disable-cgi' '--enable-zend-multibyte' '--enable-filter' '--with-regex=php' '--with-pcre-regex' '--with-openssl=/usr/local' '--with-curl=/usr/local'"
php_sapis="apache2handler"


※同一な行は省略しています。
※作業前のバージョンは5.3.28になっていますが、EC-CUBE上で確認できるバージョンは5.3.15です)


もう一つ、/usr/local/bin/phpが
/usr/local/php5.3/bin/php-cli-5.3.15にリンクされていますが
EC-CUBEのConfigure Commandではdisable-cliとなっていたのも気になります。


作業自体が間違っていて合わせるようにやり直した方がいいのか、
これはこのままでEC-CUBEの方へ反映させる何かが抜けているのかも判断つかない状況です。


やり直した方がいい作業や他に確認すべき箇所のご指摘をお願いいたします。
フラット表示 前のトピック | 次のトピック


題名 投稿者 日時
   【2.12.6】OpenSSLのバージョンアップについて tom79 2015/6/12 12:05
     Re: 【2.12.6】OpenSSLのバージョンアップについて nanasess 2015/6/16 9:13
       Re: 【2.12.6】OpenSSLのバージョンアップについて tom79 2015/6/17 14:09
       » Re: 【2.12.6】OpenSSLのバージョンアップについて tom79 2015/7/7 17:49
           Re: 【2.12.6】OpenSSLのバージョンアップについて tom79 2015/7/8 19:51
             Re: 【2.12.6】OpenSSLのバージョンアップについて tom79 2015/7/9 14:09
               Re: 【2.12.6】OpenSSLのバージョンアップについて nanasess 2015/7/17 18:04
                 Re: 【2.12.6】OpenSSLのバージョンアップについて nanasess 2015/7/17 18:06
                   Re: 【2.12.6】OpenSSLのバージョンアップについて erizou 2015/7/21 18:13
                     Re: 【2.12.6】OpenSSLのバージョンアップについて tom79 2015/7/23 10:54

 



ログイン


EC-CUBE公式 Amazon Payプラグイン

統計情報

総メンバー数は89,266名です
総投稿数は110,059件です

投稿数ランキング

1
seasoft
7367
2
468
3217
3
AMUAMU
2712
4
nanasess
2314
5
umebius
2085
6
yuh
1819
7
h_tanaka
1652
8
red
1570
9
mcontact
1299
10
tsuji
958
11
fukap
907
12
shutta
835
13
tao_s
799
14 ramrun 789
15 karin 689
16 sumida 641
17
homan
633
18 DELIGHT 572
19
patapata
502
20
flealog
485


ネットショップの壺

EC-CUBEインテグレートパートナー

Copyright© EC-CUBE CO.,LTD. All Rights Reserved.