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 - karlyn

Pages: [1]
1
I think this is a hosting issue possibly, because I'm seeing it on a couple of other sites of mine   :(

2
Lately, I'm getting this message..

"Fatal error: Nesting level too deep - recursive dependency? in /home/happy2/public_html/global.php on line 237"

I didn't make any changes, and the message seems to be sporadic.
I don't know what it means and could not find it here using search.
If you have any suggestions on what it is, why I'm seeing it, what I can do - it's appreciated.

My gallery: http://www.happy2create.com/

Thank you.

3
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: November 21, 2005, 08:21:13 AM »
Thank you. Done.
My signature graphic displays now, but still no yahoo images displaying. I still must have something else written the wrong way. Maybe a path?

4
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: November 21, 2005, 08:04:37 AM »
Thank you for checking it out!  It's much appreciated.

signature.php.txt (changed to .txt for this purpose) is attached.

- Karlyn

5
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: November 21, 2005, 06:38:59 AM »
Line 390 is :

  foreach ($n as $key)

I'm not sure what to do with that.
Any suggestions on what I'm missing?

6
Mods & Plugins (Releases & Support) / Re: Signature image v2.20.2
« on: November 21, 2005, 01:38:50 AM »
I read/reread these status messages up and down and tried and tried and I just can't get my yahoo status to work.

Did I put this in wrong?

$statusimages = "/thegallery/"; //the directory where online.gif offline.gif and unknown.gif images are.
$statusurl = "http://osi.lostinspacehosting.com:81/"; //the url of status indicator server. WITH TRAILING SLASH!
//list of messengers
$messengers = array(
  "yahoo"   => "iamawahm"
);



u can try this:
replace
Code: [Select]
// --------- End Config ----------
with:
Code: [Select]
$statusimages = "/www/onlinestatusimgs/"; //the directory where online.gif offline.gif and unknown.gif images are.
$statusurl = "http://osi.lostinspacehosting.com:81/"; //the url of status indicator server. WITH TRAILING SLASH!
//list of messengers
$messengers = array(
  "icq" => "85389818",
  "aim"   => "JensF200x",
  "yahoo"   => "jensfunk"
);
// --------- End Config ----------

function online($id, $what)
{
  global $statusurl;
  $url = parse_url($statusurl);
  $header = "";
  if ($request = @fsockopen($url['host'], ((isset($url['port'])) ? $url['port'] : 80), $header, $header, 3))
  {
    fputs($request, "GET /$what/$id HTTP/1.0\r\nHost: ".$url['host']."\r\n\r\n");
    $header = fread($request, 200);
    fclose($request);
    if (strstr($header, "online"))
    {
      return true;
    }
    if (strstr($header, "unknown"))
    {
      return 2;
    }
    else
    {
      return false;
    }
  }
  return 2;
}

Then find:
Code: [Select]
  $function = "Image".$type;Insert above:
Code: [Select]
  $i = 0;
  $n = array_rand($messengers, count($messengers));
  $left = ($width/2) - (48*count($messengers)/2) - 14;
  foreach ($n as $key)
  {
    $status = online($messengers[$key], $key);
    $img = ($status) ? (($status === true) ? "online" : "unknown") : "offline";
    $st = imagecreatefromgif($statusimages.$key.$img.".gif");
    imagecopymerge($im, $st, ($left+$i), ($height-25), 0, 0, 48, 25, 100);
    $i += 48;
  }
edit the settings.

7
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: November 21, 2005, 12:07:21 AM »
That's the ticket, thank you V@no!  :D

8
Chit Chat / Re: how are you using 4images Gallery!
« on: November 20, 2005, 04:51:01 PM »
I'm using my gallery to display new designs I make with my paint shop pro software, also photos I take, family photos and desktop wallpaper designs I create for visitors.

I really enjoy the 4images gallery! It's the best!

- Karlyn

9
Mods & Plugins (Releases & Support) / Re: Signature image v2.21
« on: November 20, 2005, 04:40:25 PM »
Hello!

I got this working and I enjoy it. Thank you for it!

I would like to show total downloads and maybe even "new downloads" also if possible, but when trying to add total downloads, I think I have the stats area written in wrong because it down not display, or I'm missing something else that I need.

array(array($fsize, $offset2+$tiny, $lang_downloads, "text_color"), array($fsize, $far, $show['downloads'], "text_color")),

Thanks in advance for your help.
- karlyn

10
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: August 08, 2005, 09:40:41 PM »
 :D Thank you rroc, I found my mistake actually.
I'd forgotten to do the little categories.html step where I replace {upload_button} with {upload_button} {multiupload_button}

Sorry, thank you for your help though!

It's working superbly!!!

Karlyn

11
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: August 07, 2005, 10:50:39 PM »
Hi,

I'm real happy to have found this mod for my users. Thank you!

Ok, so I did all the steps and everything is still working, but I just don't see the multiupload option.  I did each steo so carefully too, so I don't know what I'm missing. I ftp'd the two "multiupload" graphics to my gallery directory, but just nothing displays. I read through all the comments here (every one) and no one else said anything about this, so I guess it's just me. :|

http://www.wahmbuds.com/gallery/

Thanks in advance for help.

Pages: [1]