Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pkitty

Pages: [1] 2
1
Quote
is it possible to alter the color by just using the style sheet and changing the hue of the buttons and such in PSP???
Most of the colors used on the template can be modified using the style sheet.. the navigation bar, mouse over effects will have to be redone using PS.

Quote
I would love this with my own header and a light blue color to match my site!

You can download the PSD of the header and modify it according to your needs...

 :D


Outstanding!!!! Im gonna work on this, will let you know how it goes!!!

2
Man, this is gorgeous!!! Outstanding job! One quick question, is it possible to alter the color by just using the style sheet and changing the hue of the buttons and such in PSP??? I would love this with my own header and a light blue color to match my site!

3
Feedback & Suggestions / Using 4images
« on: April 17, 2006, 03:38:38 AM »
I have a site that has a zen cart....a shopping cart installed on it.....my question is this...the gallery of 4images, will be used mainly attached to the forum, to display artwork...not used in any other way...locked down and for members only....do I need a license for that??? I hope not, but I just want to be sure, cuz if so, I will have to find another gallery....needing a license would be to use the gallery to sell goods from right?

4
Okay, will try it, gonna check my hosts support forum and see if anybody else is experiencing this problem. Thank you *hug* for your help and advice. :)

5
if I reinstall, will I lose everything, like mods and stuff?

6
wahtoh...LOL....not a good thing and I knew that. I am going to have one of my members try it again, if I click on the link and get logged into their account, even with the fixes that were suggested here, I have no choice...I dont know what else to do to stop the session id from coming up in the link.

7
Not an error, if somebody sends me a link in an email....when I click on the link, I am logged into their account and can change their info or what ever....No errors. Make sense?

8
No, this is what my host offers, I cant upgrade it or anything.  I guess I will have to delete the album altogether then if this cant be resolved? I cant have any of the members haphazardously sending an email and somebody logging into their account.

9
php ver 4.3.11

my sql 4.0.23~standard

10
V@no,

Could you please look in the post above in the top thread about the security fix and see my question, I am having this error even though I have implemented the fixes...

11
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: August 24, 2005, 04:49:03 PM »
I too have 1.7...have you had a member send you an email with a link in it to see if the fix worked, or did you just add it and assume like I did it was fixed. I cannot have people being able to log into others accounts, or have my host be at risk....is there no solution to this or was the code looked at to see if I did something wrong? Its been almost 5 days.....I dont want to have to delete my photo album from my server because of this...does anybody know what it is?
your problem is not related to this topic...

Well then what topic IS it related to? 

12
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: August 24, 2005, 03:39:42 AM »
I too have 1.7...have you had a member send you an email with a link in it to see if the fix worked, or did you just add it and assume like I did it was fixed.  I cannot have people being able to log into others accounts, or have my host be at risk....is there no solution to this or was the code looked at to see if I did something wrong?  Its been almost 5 days.....I dont want to have to delete my photo album from my server because of this...does anybody know what it is?

13
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: August 20, 2005, 07:46:54 PM »
I already have that in my includes/sessions.php.... see down below, so that cant be the problem unless I should have that in there...this is so confusing.

Code: [Select]
  if (!isset($this->session_info['session_user_id'])) {
        return false;
    }

if (!isset($this->session_info['session_ip']) || (isset($this->session_info['session_ip']) && $this->session_info['session_ip'] != $this->user_ip))
    {
      session_regenerate_id();
      $this->session_id = session_id();
      return false;
    }

    return $this->session_info;
  }


14
Bug Fixes & Patches / Re: [1.7,1.7.1] Security fix in sessions.php
« on: August 18, 2005, 04:20:30 AM »
I have a problem, I did this fix when it first came out, I recently had an influx of members, and I got an email today from one of them with a link in it, and when I clicked on it, I was logged into her account, I checked and double checked...this is the part of the code I changed in includes/sessions.php  am I missing something?

Code: [Select]
  function demand_session() {
    $this->get_session_id();
    if (!$this->load_session_info()) {
      $this->delete_old_sessions();
    $user_id = ($this->read_cookie_data("userid")) ? intval($this->read_cookie_data("userid")) : GUEST;
    $this->start_session($user_id);
    }
    else {
      $this->user_info = $this->load_user_info($this->session_info['session_user_id']);
      $update_cutoff = ($this->user_info['user_id'] != GUEST) ? $this->current_time - $this->user_info['user_lastaction'] : $this->current_time - $this->session_info['session_lastaction'];
      if ($update_cutoff > 60) {
        $this->update_session();
        $this->delete_old_sessions();
      }
    }
  }

  function start_session($user_id = GUEST, $login_process = 0) {
    global $site_db;

    $this->user_info = $this->load_user_info($user_id);
    if ($this->user_info['user_id'] != GUEST && !$login_process) {
      if ($this->read_cookie_data("userpass") === $this->user_info['user_password'] && $this->user_info['user_level'] > USER_AWAITING) {
        $this->set_cookie_data("userpass", $this->user_info['user_password']);
      }
      else {
        $this->set_cookie_data("userpass", "", 0);
        $this->user_info = $this->load_user_info(GUEST);
      }
    }

       

15
Mods & Plugins (Releases & Support) / Re: [Mod] bbcode Smileys
« on: August 10, 2005, 05:55:56 PM »
 :( Please, would somebody look at this code and figure out why when you click on the smiley it is not transporting into the box to comment....


Pages: [1] 2