#author("2024-04-01T17:12:08+09:00","","")
#author("2024-04-01T20:40:37+09:00","default:massy","massy")
[[手順]]
#norelated


 /////////////////////////////////////////////////
 // User definition
 $auth_users = array(
 	// Username => password
 	'foo'	=> 'foo_passwd', // Cleartext
 	'bar'	=> '{x-php-md5}f53ae779077e987718cc285b14dfbe86', // PHP md5() 'bar_passwd'
 	'hoge'	=> '{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx',      // LDAP SMD5 'hoge_passwd'
 );
 
 // Group definition
 $auth_groups = array(
 	// Groupname => group members(users)
 	'valid-user' => '', // Reserved 'valid-user' group contains all authenticated users
 	'groupfoobar'	=> 'foo,bar',
 );
 


 /////////////////////////////////////////////////
 // User definition
 $auth_users = array(
 	// Username => password
 	'hogehoge'	=> 'hogehogepoo', // Cleartext
// 	'bar'	=> '{x-php-md5}f53ae779077e987718cc285b14dfbe86', // PHP md5() 'bar_passwd'
// 	'hoge'	=> '{SMD5}OzJo/boHwM4q5R+g7LCOx2xGMkFKRVEx',      // LDAP SMD5 'hoge_passwd'
 );
 
 // Group definition
 $auth_groups = array(
 	// Groupname => group members(users)
 	'valid-user' => '', // Reserved 'valid-user' group contains all authenticated users
 	'groupfoobar'	=> 'foo,bar',
 );

 
 /////////////////////////////////////////////////
 // Read auth (0:Disable, 1:Enable)
 $read_auth = 0; ←ここを変更
 
 $read_auth_pages = array(
 	// Regex		   Groupname or Username
 	'#PageForAllValidUsers#'	=> 'valid-user',
 	'#HogeHoge#'		=> 'hoge',
 	'#(NETABARE|NetaBare)#'	=> 'foo,bar,hoge',
 );
 
 /////////////////////////////////////////////////
 // Edit auth (0:Disable, 1:Enable)
 $edit_auth = 0; ←ここを変更
 
 $edit_auth_pages = array(
 	// Regex		   Username
 	'#BarDiary#'		=> 'bar',
 	'#HogeHoge#'		=> 'hoge',
 	'#(NETABARE|NetaBare)#'	=> 'foo,bar,hoge',
 );
 
 
 
 /////////////////////////////////////////////////
 // Read auth (0:Disable, 1:Enable)
 $read_auth = 1; ←変更後
 
 $read_auth_pages = array(
 	// Regex		   Groupname or Username
 	'#PageForAllValidUsers#'	=> 'valid-user',
 	'#HogeHoge#'		=> 'hoge',
 	'#(NETABARE|NetaBare)#'	=> 'foo,bar,hoge',
 );
 
 /////////////////////////////////////////////////
 // Edit auth (0:Disable, 1:Enable)
 $edit_auth = 1; ←変更後
 
 $edit_auth_pages = array(
 	// Regex		   Username
 	'#BarDiary#'		=> 'bar',
 	'#HogeHoge#'		=> 'hoge',
 	'#(NETABARE|NetaBare)#'	=> 'foo,bar,hoge',
 );

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS