Xoops Cube/Hack/HTTPS
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** ログイン,パスワード変更などの場合のみ HTTPS を使用す...
*** mainfile.php を修正 [#o19b57c1]
- ''XOOPS_SSL_URL'' 変数を追加
例) define('XOOPS_SSL_URL', 'https://www.nsl.tuis.ac.jp/...
*** include/functions.php の xoops_refcheck() 関数を以下...
158,164c158
< if (strpos($ref, XOOPS_URL) !== 0 ) {
---
> // Fumi.Iseki
> $ref = preg_replace("/^https:/i", "http:", $ref);
> $url = preg_replace("/^https:/i", "http:", XOOPS_U...
>
> //if (strpos($ref, XOOPS_URL) !== 0 ) {
> if (strpos($ref, $url) !== 0 ) {
*** User module のテンプレートを編集する[#z95aa9cb]
- ALTSYS がインストールされている場合.
-- 管理画面 -> SLTSYS -> テンプレート管理 -> User module ...
- ALTSYS がインストールされていないか使用しない場合
-- 管理画面 -> Legacy Renderer -> テンプレート管理 -> Use...
- ''user_default.html''
-<form action="<{$xoops_url}>/user.php" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/user.php"...
- ''user_block_login.html''
-<form action="<{$xoops_url}>/user.php" method="post" st...
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/user.php"...
- ''user_edituser.html''
-<form action="#" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/edituser....
- ''user_register_form.html''
-<form action="#" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/register....
終了行:
** ログイン,パスワード変更などの場合のみ HTTPS を使用す...
*** mainfile.php を修正 [#o19b57c1]
- ''XOOPS_SSL_URL'' 変数を追加
例) define('XOOPS_SSL_URL', 'https://www.nsl.tuis.ac.jp/...
*** include/functions.php の xoops_refcheck() 関数を以下...
158,164c158
< if (strpos($ref, XOOPS_URL) !== 0 ) {
---
> // Fumi.Iseki
> $ref = preg_replace("/^https:/i", "http:", $ref);
> $url = preg_replace("/^https:/i", "http:", XOOPS_U...
>
> //if (strpos($ref, XOOPS_URL) !== 0 ) {
> if (strpos($ref, $url) !== 0 ) {
*** User module のテンプレートを編集する[#z95aa9cb]
- ALTSYS がインストールされている場合.
-- 管理画面 -> SLTSYS -> テンプレート管理 -> User module ...
- ALTSYS がインストールされていないか使用しない場合
-- 管理画面 -> Legacy Renderer -> テンプレート管理 -> Use...
- ''user_default.html''
-<form action="<{$xoops_url}>/user.php" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/user.php"...
- ''user_block_login.html''
-<form action="<{$xoops_url}>/user.php" method="post" st...
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/user.php"...
- ''user_edituser.html''
-<form action="#" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/edituser....
- ''user_register_form.html''
-<form action="#" method="post">
+<form action="<{$smarty.const.XOOPS_SSL_URL}>/register....
ページ名: