Note: More Cash Also Coming Later This first post is valid now, and can be ignored if you find this thread after the initial money is paid. The thread might be used again for more easy money, so please check for updates in the newest posts. I might be off-line for several hours, and promise the money will be paid ASAP. ~~~~~~~~~~~~~~~~~ Skills Needed * Basic computer knowledge * Some logic and common sense * Ability to follow simple insturctions * Use a "Help" file, if needed. Initial Prizes 9/20/08: $10 Paypal to the first person to accurately finish an easy, fast job. (The prize goes down to $4 if you make a mistake in your work; also, more than one mistake and your cash goes to someone else) $2 Paypal to the first DP member to correctly verify the work was done right. $4 Paypal to the first DP member who finds the verifier made a mistake (within one hour of the first verification), and finishes the easy work correctly. Bonuses: $2 if you are the winner, and one of the first five people to post: "I'll try this" or "I've downloaded the zip file" $5 to the first person who finds a mistake in the section I worked on (member.php); Note: ignoring a new comment does not count as a "mistake", and we don't know if there are any mistakes. Simple Instructions: Please, download the zip and be the first to accurately follow the Simple Instructions found in readme.txt Mirror site for download (if needed) FAQ: What is in the zip file? readme.txt changes.txt 3 brief MP3's for easy instructions and help 2 file folders related to the contest 1 Winmerge.exe which is a (trusted) utility to make the easy job much easier. Enjoy.
To enter: I forgot one important detail. To enter just copy / paste the finished version of changes.txt into a new reply to this thread. Then your work is open for someone to verify. Thanks.
So what we have to do basically ?? I am confused i have downloaded the zip file i am willing to give it a try
Hi, "changes.txt" (in the zip file) shows how ~20% of the easy job is already done. The other ~80% will be fast, easy, and real similar to the parts I already finished. There is also a MP3 and other files to help you. Thanks
Ok so to make an update ...i have done the job.... Sended u the file..now waiting for the payment and other things.. thanks
Hi, You are close to winning, but not yet. We only need to work with 4 files. Please take the time to listen, or re-hear, Easy Cash _ Start Here.mp3. and also notice the original "changes.txt" listed these files: moderation.php search.php inc/functions_post.php inc/functions_forumlist.php also this, To enter: To enter just copy / paste the finished version of changes.txt into a new reply to this thread. Then your work is open for someone to verify. Thanks.
Ok here is my work -: ------------------------------------------------------------------------ MODERATION.php Line no 9-: find $Id: moderation.php 3596 2008-01-20 08:27:39Z Tikitiki $ replace it with $Id: moderation.php 3641 2008-02-09 16:51:41Z Tikitiki $ Line no 1156-: find if(is_moderator($fid, "candeleteposts") != "yes") replace it with if(is_moderator($fid, "canmanagethreads") != "yes") ------------------------------------------------------------- SEARCH.php Line no 9-:Find $Id: search.php 3595 2008-01-09 00:10:57Z Tikitiki $ replace it with $Id: search.php 3887 2008-06-06 23:38:42Z Tikitiki $ Line no 76- find case "dateline": replace it with case "subject": Line no 79-: find $sortfield = "t.dateline"; replace it with $sortfield = "t.subject"; Line no 83-: Find $sortfield = "p.dateline"; replace it with $sortfield = "p.subject"; Line no 98-99 -: find (blank space) Replace it with case "lastpost": Line no 482-: find $post['subject'] = htmlspecialchars_uni($post['subject']); replace it with (remove the above line) Line no 586-: find $post['subject'] = my_substr($post['subject'], 0, 50)."..."; replace it with $post['subject'] = htmlspecialchars_uni(my_substr($post['subject'], 0, 50)."..."); Line no 590-: Find $post['subject'] = $post['subject']; replace it with $post['subject'] = htmlspecialchars_uni($post['subject']); Line no 594-: Find $prev = htmlspecialchars_uni(my_substr($post['message'], 0, 200)."..."); reaplce it with $post['message'] = htmlspecialchars_uni(my_substr($post['message'], 0, 200)."..."); Line no 598-: find $prev = htmlspecialchars_uni($post['message']); replace it with $post['message'] = htmlspecialchars_uni($post['message']); Line no 599-600 -: find (blank space) replace it with $prev = $post['message']; ------------------------------------------------------------- inc/functions_post.php Line no 9-: find $Id: functions_post.php 3531 2007-12-02 01:21:43Z chris $ replace it with $Id: functions_post.php 3635 2008-02-06 23:19:49Z Tikitiki $ ------------------------------------------------------------------ inc/functions_forumlist.php Line no 39 -: Find $plugins->run_hooks("build_forumbits_forum"); replace it with $plugins->run_hooks_by_ref("build_forumbits_forum", $forum); ---------------------------------------------------------------------- Waiting for ur reply....
Attention to detail...? Didn't you read the whole post? $2 Paypal to the first DP member to correctly verify the work was done right. $4 Paypal to the first DP member who finds the verifier made a mistake (within one hour of the first verification), and finishes the easy work correctly. Thank you
Hi, You can make a new entry, or verify what the other guy did (and still make money if you're accurate) ````````````` * I will probably be off-line for several hours, and promise the money will be paid ASAP.
I have posted my work here and its 110 % correct u can verify member.php line 9 find: $Id: member.php 3596 2008-01-20 08:27:39Z Tikitiki $ replace with: $Id: member.php 3739 2008-03-22 02:38:56Z dennis $ line 950 find: else if($mybb->input['logoutkey'] != $mybb->user['logoutkey']) replace with: else if(!$mybb->input['sid'] && $mybb->input['logoutkey'] != $mybb->user['logoutkey']) line 1218 find: if($displaygroup['usertitle']) replace with: if(trim($memprofile['usertitle']) != '') { // User has custom user title $usertitle = $memprofile['usertitle']; } elseif(trim($displaygroup['usertitle']) != '') line 1219 add: // User has group title line 1221 remove: $stars = $displaygroup['stars']; line 1224 add: // No usergroup title so get a default one line 1236 add: if($displaygroup['stars']) { $stars = $displaygroup['stars']; } line 1252 remove: if(trim($memprofile['usertitle']) != '') { $usertitle = $memprofile['usertitle']; } --------------------------------------------------------------------------------------------------------- moderation.php line 9 find: $Id: moderation.php 3596 2008-01-20 08:27:39Z Tikitiki $ replace with: $Id: moderation.php 3641 2008-02-09 16:51:41Z Tikitiki $ line 1156 find: if(is_moderator($fid, "candeleteposts") != "yes") replace with: if(is_moderator($fid, "canmanagethreads") != "yes") ---------------------------------------------------------------------------------------------------------- search.php line 9 find: $Id: search.php 3595 2008-01-09 00:10:57Z Tikitiki $ replace with: $Id: search.php 3887 2008-06-06 23:38:42Z Tikitiki $ line 76 find: case "dateline": replace with: case "subject": line 79 find: $sortfield = "t.dateline"; replace with: $sortfield = "t.subject"; line 83 find: $sortfield = "p.dateline"; replace with: $sortfield = "p.subject"; line 98 add: case "lastpost": line 482 remove: $post['subject'] = htmlspecialchars_uni($post['subject']); line 586 find: $post['subject'] = my_substr($post['subject'], 0, 50)."..."; replace with: $post['subject'] = htmlspecialchars_uni(my_substr($post['subject'], 0, 50)."..."); line 590 find: $post['subject'] = $post['subject']; replace with: $post['subject'] = htmlspecialchars_uni($post['subject']); line 594 find: $prev = htmlspecialchars_uni(my_substr($post['message'], 0, 200)."..."); replace with: $post['message'] = htmlspecialchars_uni(my_substr($post['message'], 0, 200)."..."); line 598 find: $prev = htmlspecialchars_uni($post['message']); replace with: $post['message'] = htmlspecialchars_uni($post['message']); line 599 add: $prev = $post['message']; ------------------------------------------------------------------------------------------------------------------------ inc/functions_post.php line 9 find: $Id: functions_post.php 3531 2007-12-02 01:21:43Z chris $ replace with: $Id: functions_post.php 3635 2008-02-06 23:19:49Z Tikitiki $ --------------------------------------------------------------------------------------------------------------------------- inc/functions_forumlist.php line 39 find: $plugins->run_hooks("build_forumbits_forum"); replace with: $plugins->run_hooks_by_ref("build_forumbits_forum", $forum);
the member.php was also somewhat faulty u forgot to edit/mention line 9-------------- main mistake and incomplete some new comments were added on 1219 and 1224 lines so i have completed that also u can check in my post so i am winning those 5 $ also
this person did not use the add and remove commands at all so thats his mistake , i verified it and also some work left in member.php should be done which is missing and is thus incomplete and wrong i completed all work , posted the correct one and rectified this members work too also i found ur mistake in member.php and am one of the first five members to post i have downloaded the zip file and i will give a try at this , so i am winning all the bonuses waiting for total payment regards
Nice job. This is accurate, and exactly what I was looking for, so you win the $10. Nice try... "changes.txt" (in the zip file) shows how ~20% of the easy job is already done. The other ~80% will be fast, easy, and real similar to the parts I already finished. You did extra, but someone else finished first. I'll gladly pay you this... ...even though you didn't exactly verify the winner. $4 isn't bad for second place, maybe you can win the next time. Please, PM your Paypal email (Edit: I have your email now, thanks) EDIT: I need to look at your feedback from my 'mistake'. Will update soon... Update: "Note: ignoring a new comment does not count as a "mistake"," $4 is very fair, thanks for your entry.
Payment recieved , thanks a lot i have question though sent u pm please check it its about member.php line 9 had a mistake u did not include it in ur changes.txt
Both people I paid ended up getting banned. To anyone subscribed to this thread: I'm starting a fresh, clean thread with a new contest, will update in ~5 minutes. Here is the new thread Thanks