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

Pages: 1 ... 23 24 25 26 [27] 28 29
391
Discussion & Troubleshooting / Re: Top Images in Thumbnails
« on: December 29, 2006, 06:17:23 PM »
Not sure if this is something you may like or not.
http://www.4homepages.de/forum/index.php?topic=15599.0

Only suggestion I have for you, sorry if no help.

392
its attached to the post

I have downloaded the attached file... But... Well, the filename is saved, but it doesnt contain anything.. On my windows system it is 0 byte... The firewall was switched off...


Works fine for me, but here is the one I downloaded a few months back (attached). See if this download works for you.

393
Discussion & Troubleshooting / Re: Canīt create thumbnails, please help.
« on: December 29, 2006, 12:03:52 AM »
This is something you may want:

or even simplier solution that would scale down the image when displayed (perhaps that what you wanted)
in media templates (templates/<your template>/jpg.html, etc) use something like this:

Code: [Select]
<!-- Template file for JPG Files -->
<script language="javascript">
var MaxWidth = 440;

var WidthOrig = 0;
var HeightOrig = 0;
function ImgFixSize(img)
{
  if (WidthOrig)
  {
    img.width = WidthOrig;
    img.height = HeightOrig;
    WidthOrig = 0;
  }
  else if (img.width > MaxWidth)
  {
    WidthOrig = img.width;
    HeightOrig = img.height;
    img.style.cursor = "pointer";
    img.height = Math.round((MaxWidth/img.width) * img.height);
    img.width = MaxWidth;
  }
}
</script>
<img src="{media_src}" border="1" alt="{image_name}"{width_height} onLoad="ImgFixSize(this)" onClick="ImgFixSize(this)" /><br />

394
Discussion & Troubleshooting / Re: Canīt create thumbnails, please help.
« on: December 28, 2006, 11:08:29 PM »
Look at this and see if this is what you need.

http://www.4homepages.de/forum/index.php?topic=14411.msg81675#msg81675

395
Discussion & Troubleshooting / Re: Canīt create thumbnails, please help.
« on: December 28, 2006, 10:34:52 PM »

1) You have to set "Auto-create thumbnail" in the ACP to "Yes".
 If you did this, the thumbnails shoud create automatically after an upload from the memebers area
2) If that doesn't work, check if you did set a conversion tool for thumb-creation in the ACP...
3) If you upload images from the ACP the thumbnails aren't created automatically, you have to use the "Auto-Thumbnailer" there after upload...

396
Quote
2 - I need know the latest image upload from the user and show in their profile
Not sure if this will work the way you want it to, but you will still be able to view what the person uploaded. http://www.4homepages.de/forum/index.php?topic=15390.0

397
How I can determine number of download for every user ?

for example , I need to determine 200 download only for every user

thanks

Not sure if this will help with what you want but figured I woud post it anyway: http://www.4homepages.de/forum/index.php?topic=7701.0

398
Mods & Plugins (Releases & Support) / Re: [Mod] Photo Of The Day
« on: December 27, 2006, 08:01:13 PM »
Quote
CeJay, Thank you for your suggestion.  Did you ever figure out what it was giving you your problem?

Which program do you use when you do your editing of PHP files?  Is Wordpad okay to use?
I never found out what was causing the error, except for something I must have did. Because after re-doing it a few times and then double checking everytime I was able to get it to work. Since then I have installed this mod on 3 other friends 4images for them and have had no problems with the install.

I originally used wordpad and found it was better to actually use a php editor.
What I use now is PHP Designer 2007 and have not had any problems since I got that.

399
Discussion & Troubleshooting / Re: Can I notify all users
« on: December 25, 2006, 09:50:45 AM »
I am not sure. You will have to read that thread (mod) over to see what it can all do.
Was just trying to point you in the best direction I knew of at the time.

Sorry I can't help anymore then that.  :(

400
Discussion & Troubleshooting / Re: Can I notify all users
« on: December 22, 2006, 03:19:17 PM »
Not sure if a Mod actually works or not for this as I have seen many posts in the past for this, but here is somethign that may help answer your question: http://www.4homepages.de/forum/index.php?topic=7649.0

401
Chit Chat / Re: Windows vs. Apache/Linux
« on: December 22, 2006, 03:00:00 PM »
Ok, how about I rephrase this.

What are the pro's and con's with Windows and Apache/Linus with 4images?

402
Mods & Plugins (Releases & Support) / Re: [Mod] Photo Of The Day
« on: December 22, 2006, 12:32:12 AM »
Do you have a back up of functions.php before you did the mod?

If so try moding that again and see if you get the same error.

If all else fails upload the original files before moding for this, then re-mod it all again.
If you read back 3 or 4 pages I had some issues doing this mod as well, but I redid it about 3 times and got it to work.

403
Mods & Plugins (Releases & Support) / Re: [Mod] Photo Of The Day
« on: December 21, 2006, 07:58:12 AM »
Quote
lso I just want to make sure that this file: potd_image.html goes in to the templates directory and not the template current being used directory.
Yes the potd_image.html goes in the template directory.
I don't know what you mean by "template current being used directory". I have never seen that or heard anything about that.



On my functions.php line 38 I only have:

Code: [Select]
    $download_token = array();I only have a few mods added so I couldn't tell you anymore then that.

404
Discussion & Troubleshooting / Re: HOW TO's...
« on: December 21, 2006, 12:12:05 AM »
@ manurom
Thanks for posting those codes. I did not know about the is_admin tags. Now I learned as well  :D
Looks like I got some moding to do  :wink:

405
THX a lot!
That link was broken. I still can't download the file by that link! And all MOD's by V@no.
Your welcome.

On all his posts just above the signature he has attached the files that would be needed.
Quote
My site is down. Files for MODs will be attached to the posts uppon requests.
So, please reply to the MODs topic if you need a file. But before you do that, check if file already attached.

Pages: 1 ... 23 24 25 26 [27] 28 29