Quote:
=============================================
Limitations:
=============================================
- The "Remember username/password?" options only remember sessions for forum. You dont have to login to forum again, when you go to album from forum, you dont have to login again, but if you go directly to your album, you still have to login. Cookie problem!
|
FIXED - Update 06/22/04
In 4images
sessions.php
Look for
PHP Code:
if ($this->read_cookie_data("bbpassword") == $this->user_info['user_password'] && $this->user_info['user_level'] > USER_AWAITING) {
replace by
PHP Code:
if ($this->read_cookie_data("bbpassword") == md5($this->user_info['user_password']. 'XXXXXXXX') && $this->user_info['user_level'] > USER_AWAITING) {
CHANGE
XXXXXX with your
Licence Number, located on top of any vB file
Make sure that you have the correct password field in the file
"user_password" => "password",
The new sessions.php file in the first post was updated.
Thank CreedFeed for pushing me to fix this

Try it and let me know if it works