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

Pages: 1 [2] 3 4 5 6 7
16
Requests for paid modifications / Jobbörse / Re: Uploader / Tag Images
« on: August 12, 2007, 05:36:05 AM »
Quote
I want the plugin to create a temporary directory on the USERS computer to make the file smaller, then upload it.  So a file that is 4000x2500 is resized to 1024x800, then uploaded...

If user not ADMIN on windows OS ? No full perm so can no create folder ... what do ? Reason for upload full image + reduce size. ;)

I know - but this is what I want to do!  Ever since facebook started doing it, my users have all abandoned the site and used facebook. 

17
Requests for paid modifications / Jobbörse / Re: Uploader / Tag Images
« on: August 11, 2007, 08:58:58 PM »
That still wouldn't work.  It still requires the USER to upload the entire LARGE file to the server first, which then converts it and posts it.  I want the plugin to create a temporary directory on the USERS computer to make the file smaller, then upload it.  So a file that is 4000x2500 is resized to 1024x800, then uploaded...

18
Requests for paid modifications / Jobbörse / Re: Uploader / Tag Images
« on: August 11, 2007, 07:58:39 PM »
Quote
There is some kind of script that allows the files to be selected and resized PRIOR to uploading, making it much faster.

This MOD do it:

http://www.4homepages.de/forum/index.php?topic=7700.0 - This one does not modify it until after the upload, which means that it still takes a while to upload the large files which is what my users don't like


http://www.4homepages.de/forum/index.php?topic=15429.0 (plugin but can modify) - This one looks like it is for FTP than import them.  I am looking for a form/script to let them upload

http://www.4homepages.de/forum/index.php?topic=6759.0 - I have this installed and love it!

http://www.4homepages.de/forum/index.php?topic=14170.0 - I thought of this but the file size is the problem again, and getting users to zip pictures

and direct you:

http://www.4homepages.de/forum/index.php?topic=6978.0 - I have this installed too

Quote
The second is tagging people in the pictures.

If examp can found, I can code this for you.

An example of the tagging is Facebook.  Also the uploader - I want it to resize to a temporary local directory before uploading to the server, so the file size is smaller and upload faster.

19
Requests for paid modifications / Jobbörse / Uploader / Tag Images
« on: August 11, 2007, 05:11:23 PM »
A popular social networking site has pretty much killed my website due to several reasons. 

The first is the ability to easily upload pictures.  There is some kind of script that allows the files to be selected and resized PRIOR to uploading, making it much faster.  This is the script I want to integrate into my site.

The second is tagging people in the pictures.  I would also like this ability.  Even if it just had a list of users and you found them and clicked add.  This might have to be linked to a friends list style which would be another mod.

Please PM/email me with availability and your estimate and schedule.

Thanks

Lee

20
this is a great mod and fairly simple too!

21
anyone have this file? the link doesn't work.  thanks!  and does this work well with 1.7.4?

ok i'm an idiot - it's attached to the original post.  also it seems to work with 1.7.4

22
Requests for paid modifications / Jobbörse / Censor Mod Request
« on: April 19, 2007, 09:38:38 PM »
OK well I am just looking for any advice/comments/approximate price cost. 

I have a website that has photos of people mainly getting drunk.  Some people would prefer not to be on it, but there are good photos with them in that they wouldn't mind up if we just censor out their face. 

I was thinking about something like this.  User finds picture they want censored, clicks on "Censor", clicks where the censor goes, a smiley face overlaps the area, sends to admin for approval, and then is changed.  So you end up with someone with a smiley face for a head! 

I am assuming this is much more complicated then I think, and I know a little (very little!) bit about programming. 

Can someone advise or comment or provide an approx price?

Thanks in advance!

23
on my website there are pictures that certain people don't want EVERYONE seeing, but it would be OK if registered users only saw the pictures.  Is there a way to flag the image for such without creating a seperate category for them?

so that when uploaded everyone could see them, but if I flag it as "private" or other then only registered users could see it?

i ran a search and the only thing i came up with was category permissions, which wouldn't work for my case (I may as well just delete the images).  Thanks!

24
Mods & Plugins (Releases & Support) / Re: [MOD] Top 25 uploader
« on: April 04, 2007, 08:50:54 PM »
Code: [Select]
ok i got most of my site back except this one part as above.  here is what I tried and it didn't work - can someone please help out? 

[code}
// top commentators

$last_action_user_list = "";
$sql = "SELECT COUNT(i.image_comments) AS user_t_images, u.user_name, u.user_id
        FROM ".USERS_TABLE." u
        LEFT JOIN ".IMAGES_TABLE." i ON (i.user_id = u.user_id)
        WHERE u.user_level > ".GUEST."
        GROUP BY u.user_id
        ORDER BY user_t_comments DESC
        LIMIT 5";
$result = $site_db->query($sql);

while ($row = $site_db->fetch_array($result)) {
$last_action_user_list .= '<a href ="'.ROOT_PATH.'member.php?action=showprofile&user_id='.$row['user_id'].'"><b>'.$row['user_name'].'</b></a> <span class="smalltext">'.$row['user_t_comments'].'</span><br>';
}

$site_template->register_vars(array(
"user_comments_list" => $last_action_user_list,
));
unset($user_comments_list);


any help is much appreciated!

25
Mods & Plugins (Releases & Support) / Re: [MOD] Top 25 uploader
« on: April 01, 2007, 03:06:44 AM »
Hi - I had this mod installed before I had to upgrade to 1.7.4

I don't have a problem getting it to work after modifyin by the third or so post.  The problem is I want to show the top 5 users by # of comments.  How do I modify this code to show it?  I am using {user_comments_list} as my call in the home.html.

here is the original code for the top uploaders:

Code: [Select]
// top uploaders

$last_action_user_list = "";
$sql = "SELECT COUNT(i.image_id) AS user_t_images, u.user_name, u.user_id
        FROM ".USERS_TABLE." u
        LEFT JOIN ".IMAGES_TABLE." i ON (i.user_id = u.user_id)
        WHERE u.user_level > ".GUEST."
        GROUP BY u.user_id
        ORDER BY user_t_images DESC
        LIMIT 5";
$result = $site_db->query($sql);

while ($row = $site_db->fetch_array($result)) {
$last_action_user_list .= '<a href ="'.ROOT_PATH.'member.php?action=showprofile&user_id='.$row['user_id'].'"><b>'.$row['user_name'].'</b></a> <span class="smalltext">'.$row['user_t_images'].'</span><br>';
}

$site_template->register_vars(array(
"user_uploaders_list" => $last_action_user_list,
));
unset($user_uploaders_list);

how do I modify this to sort by the top # of comments by user?  I did it before I just can't figure out what I did!

Thanks

26
Mods & Plugins (Releases & Support) / Re: [MOD] guestbook
« on: March 28, 2007, 08:42:34 PM »
ditto i need the reinstall file thanks to the stupid tra-la-laing hackers

27
Discussion & Troubleshooting / Re: 7amada virus!
« on: February 20, 2007, 08:32:31 PM »
i tried the search couldn't find anything.  I am going to update my 4images but I'm just backing up all the pictures now.  Good to know an update will fix this though.  Thanks.

Quote
I think some one have hacked your 1.7.1... )o:

Take a look in your ACP->Settings->Valid file extensions...

That is the solution for anyone who reads this.  Also - update your software.

28
Discussion & Troubleshooting / 7amada virus!
« on: February 20, 2007, 08:28:20 PM »
Hi - I had all my pictures decide not to show up on my site anymore.  it just shows 404 icons.  they are still in the data file, and when I went to download all the media to back it up before reinstalling 4images it said "virus found in 7amada.jpg" some PHP virus.  Any idea what this is and is there an easy undo instaed of reinstalling?   How do I prevent this from happening in the future?

Thanks

Lee

29
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: November 30, 2006, 07:07:50 PM »
that i don't know.  mine works  :?:

30
Mods & Plugins (Releases & Support) / Re: [MOD] multiupload
« on: November 30, 2006, 03:14:47 PM »
Open member_multiuploadform.html

after:
Code: [Select]
           <td class="row2">
              <textarea cols="30" class="textarea" rows="1" wrap="VIRTUAL" name="image_keywords">{image_keywords}</textarea>
            </td>
          </tr>

add:
Code: [Select]
         {if captcha_upload}
          <tr>
            <td class="row1" valign="top"><b>{lang_captcha}</b></td>
            <td class="row1">
 <a href="javascript:new_captcha_image();"><img src="{url_captcha_image}" border="0" id="captcha_image" /></a> <br />
              <input type="text" name="captcha" size="30" value="" class="commentinput" id="captcha_input" />
              <br />
              {lang_captcha_desc}
</td>
          </tr>
          {endif captcha_upload}

Pages: 1 [2] 3 4 5 6 7