Discuz Thai

 ลืมรหัสผ่าน
 สมัครสมาชิก

ข้อตกลงการใช้งานกระดานข่าวดิสคัสไทย DiscuzThai Agreement (English Version) ประกาศดิสคัสไทย - ทำเนียบดิสคัสภาษาไทย

Discuz! X3.5 Thai R20240520 Rev.9 (NEW) [วิดีโอช่วยสอน] อัปเกรด Discuz! X3.4 เป็น X3.5 Discord ของ Discuz! Thai Community อย่างเป็นทางการ

Discuz! X3.4 Thai R20220811 (REV.75) สิ้นสุดการสนับสนุน Discuz! X3.4 ภาษาไทยตั้งแต่วันนี้เป็นต้นไป (ขอแนะนำให้อัปเกรดเป็น X3.5 แทน)

ค้นหา
แท็กยอดนิยม: ดิสคัสภาษาไทย Discuz Thai
ดู: 3027|ตอบกลับ: 1

[ ช่วยด้วย ]เรื่อง cookies และ Session ใน PHP.ini

[คัดลอกลิงก์]
drsalumll โพสต์ 2008-3-25 03:00:49 |โหมดอ่าน
ผมลงเว็บ Discuz โดยใช่ IIS เป็นเซิฟเวอร์

มีปัญหา เรื่อง  cookies และ Session    คับ

พอล๊อก อินแล้ว มัน ไม่ยอม Save งะคับ

ล๊อกแล้ว พอกลับมาหน้าแรก มันบอกยังไม่ได้ล๊อกอิน ทั้งๆๆ ล๊อกอินผ่านไปแล้ว คับ

ผมคิดว่ามีปัญหา ที่ php.ini มัยคับ
  1. [Session]
  2. ; Handler used to store/retrieve data.
  3. session.save_handler = files

  4. ; Argument passed to save_handler.  In the case of files, this is the path
  5. ; where data files are stored. Note: Windows users have to change this
  6. ; variable in order to use PHP's session functions.
  7. ;
  8. ; As of PHP 4.0.1, you can define the path as:
  9. ;
  10. ;     session.save_path = "N;/path"
  11. ;
  12. ; where N is an integer.  Instead of storing all the session files in
  13. ; /path, what this will do is use subdirectories N-levels deep, and
  14. ; store the session data in those directories.  This is useful if you
  15. ; or your OS have problems with lots of files in one directory, and is
  16. ; a more efficient layout for servers that handle lots of sessions.
  17. ;
  18. ; NOTE 1: PHP will not create this directory structure automatically.
  19. ;         You can use the script in the ext/session dir for that purpose.
  20. ; NOTE 2: See the section on garbage collection below if you choose to
  21. ;         use subdirectories for session storage
  22. ;
  23. ; The file storage module creates files using mode 600 by default.
  24. ; You can change that by using
  25. ;
  26. ;     session.save_path = "N;MODE;/path"
  27. ;
  28. ; where MODE is the octal representation of the mode. Note that this
  29. ; does not overwrite the process's umask.
  30. session.save_path = "C:\php\sessiontmp"

  31. ; Whether to use cookies.
  32. session.use_cookies = 1

  33. ; This option enables administrators to make their users invulnerable to
  34. ; attacks which involve passing session ids in URLs; defaults to 0.
  35. ; session.use_only_cookies = 1

  36. ; Name of the session (used as cookie name).
  37. session.name = PHPSESSID

  38. ; Initialize session on request startup.
  39. session.auto_start = 0

  40. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  41. session.cookie_lifetime = 0

  42. ; The path for which the cookie is valid.
  43. session.cookie_path = /

  44. ; The domain for which the cookie is valid.
  45. session.cookie_domain =

  46. ; Handler used to serialize data.  php is the standard serializer of PHP.
  47. session.serialize_handler = php

  48. ; Define the probability that the 'garbage collection' process is started
  49. ; on every session initialization.
  50. ; The probability is calculated by using gc_probability/gc_divisor,
  51. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  52. ; on each request.

  53. session.gc_probability = 1
  54. session.gc_divisor     = 100

  55. ; After this number of seconds, stored data will be seen as 'garbage' and
  56. ; cleaned up by the garbage collection process.
  57. session.gc_maxlifetime = 1440

  58. ; NOTE: If you are using the subdirectory option for storing session files
  59. ;       (see session.save_path above), then garbage collection does *not*
  60. ;       happen automatically.  You will need to do your own garbage
  61. ;       collection through a shell script, cron entry, or some other method.
  62. ;       For example, the following script would is the equivalent of
  63. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  64. ;          cd /path/to/sessions; find -cmin +24 | xargs rm

  65. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  66. ; to initialize a session variable in the global scope, albeit register_globals
  67. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  68. ; You can disable the feature and the warning separately. At this time,
  69. ; the warning is only displayed, if bug_compat_42 is enabled.

  70. session.bug_compat_42 = 1
  71. session.bug_compat_warn = 1

  72. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  73. ; HTTP_REFERER has to contain this substring for the session to be
  74. ; considered as valid.
  75. session.referer_check =

  76. ; How many bytes to read from the file.
  77. session.entropy_length = 0

  78. ; Specified here to create the session id.
  79. session.entropy_file =

  80. ;session.entropy_length = 16

  81. ;session.entropy_file = /dev/urandom

  82. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  83. ; or leave this empty to avoid sending anti-caching headers.
  84. session.cache_limiter = nocache

  85. ; Document expires after n minutes.
  86. session.cache_expire = 180

  87. ; trans sid support is disabled by default.
  88. ; Use of trans sid may risk your users security.
  89. ; Use this option with caution.
  90. ; - User may send URL contains active session ID
  91. ;   to other person via. email/irc/etc.
  92. ; - URL that contains active session ID may be stored
  93. ;   in publically accessible computer.
  94. ; - User may access your site with the same session ID
  95. ;   always using URL stored in browser's history or bookmarks.
  96. session.use_trans_sid = 0

  97. ; Select a hash function
  98. ; 0: MD5   (128 bits)
  99. ; 1: SHA-1 (160 bits)
  100. session.hash_function = 0

  101. ; Define how many bits are stored in each character when converting
  102. ; the binary hash data to something readable.
  103. ;
  104. ; 4 bits: 0-9, a-f
  105. ; 5 bits: 0-9, a-v
  106. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  107. session.hash_bits_per_character = 4

  108. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  109. ; form/fieldset are special; if you include them here, the rewriter will
  110. ; add a hidden <input> field with the info which is otherwise appended
  111. ; to URLs.  If you want XHTML conformity, remove the form entry.
  112. ; Note that all valid entries require a "=", even if no value follows.
  113. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
คัดลอกไปที่คลิปบอร์ด
An_ant โพสต์ 2008-3-25 07:22:22
ไม่สันทัดตัวนี้ ยังไงถ้าเหลือบ่ากว่าแรง ไปโหลด wmsertools มาเล่น หรือตามนี้ http://www.alligartor.com/04/server/wmsevvertools.html

ถ้าจะเอาจริงก็แอปเซิฟ
ขออภัย! คุณไม่ได้รับสิทธิ์ในการดำเนินการในส่วนนี้ กรุณาเลือกอย่างใดอย่างหนึ่ง ลงชื่อเข้าใช้ | สมัครสมาชิก

รายละเอียดเครดิต

รายชื่อผู้กระทำผิด|Archiver|ดิสคัส ไทย Follow us: Become a fan on facebook. Follow us on Twitter.

GMT+7, 2024-11-15 06:28

Powered by Discuz! X3.4, Rev.66

Copyright © 2001-2021 Tencent Cloud. Licensed

ตอบกระทู้ ขึ้นไปด้านบน ไปที่หน้ารายการกระทู้