Automatic votes on web site

This is a discussion on "Automatic votes on web site" within the JavaScript Forum section. This forum, and the thread "Automatic votes on web site are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 26th, 2008, 01:13
New Member
Join Date: Jun 2008
Location: Here
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Automatic votes on web site

There is this site totalpopstar.com/?profile/video/&1044,5163. if you go to this site you will see an icon vote. I would like to know if it is possible to create an script to refresh an click this icon automatically. Thank you in advanced for any help you can give.
Reply With Quote

  #2 (permalink)  
Old Jun 26th, 2008, 03:47
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,203
Blog Entries: 9
Thanks: 2
Thanked 37 Times in 37 Posts
Re: Automatic votes on web site

You want to look into AJAX
__________________
CloudedVision, WebForumz Moderator
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed
Last Blog Entry: Hilarious Rapper (Jul 29th, 2008)
Reply With Quote
  #3 (permalink)  
Old Jun 26th, 2008, 23:56
New Member
Join Date: Jun 2008
Location: Here
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Automatic votes on web site

Anything can help me, before saturday 28...
Regards
Reply With Quote
  #4 (permalink)  
Old Jun 27th, 2008, 01:18
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,203
Blog Entries: 9
Thanks: 2
Thanked 37 Times in 37 Posts
Re: Automatic votes on web site

So basically your trying to cheat the system? Not gonna help you there.
__________________
CloudedVision, WebForumz Moderator
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed
Last Blog Entry: Hilarious Rapper (Jul 29th, 2008)
Reply With Quote
  #5 (permalink)  
Old Jun 27th, 2008, 23:38
New Member
Join Date: Jun 2008
Location: Here
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Automatic votes on web site

No, I'm doing a project about use of technology in manipulation of results and this is an excellent oportunity for getting an A+. But I need to build this script, I need to show how it is possible. If you can help, will be great. btw, I'm not going to change results, but I need to show how this happens. Really greatful if you can help me...
Reply With Quote
  #6 (permalink)  
Old Jun 27th, 2008, 23:45
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,203
Blog Entries: 9
Thanks: 2
Thanked 37 Times in 37 Posts
Re: Automatic votes on web site

Well, basically the first problem is bypassing the multi-vote firewall. It could be via cookie, IP address, etc. You just gotta find that out.
__________________
CloudedVision, WebForumz Moderator
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed
Last Blog Entry: Hilarious Rapper (Jul 29th, 2008)
Reply With Quote
  #7 (permalink)  
Old Jun 28th, 2008, 17:33
New Member
Join Date: Jun 2008
Location: Here
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Automatic votes on web site

Actually, there is no firewall, there is no such restriction by IP or cookie. You are totally allowed to vote as many times as you want. Just refresh page and you can vote again, please your help…
Reply With Quote
  #8 (permalink)  
Old Jun 28th, 2008, 17:43
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 1,203
Blog Entries: 9
Thanks: 2
Thanked 37 Times in 37 Posts
Re: Automatic votes on web site

Look through the code. Find out exactly where the request to add your vote is sent and with what post data.
__________________
CloudedVision, WebForumz Moderator
Web Design And Development: Other Road Design | Problems with IE6?: KApp | My Blog: Only Nerds Allowed
Last Blog Entry: Hilarious Rapper (Jul 29th, 2008)
Reply With Quote
  #9 (permalink)  
Old Jun 28th, 2008, 17:56
New Member
Join Date: Jun 2008
Location: Here
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Automatic votes on web site

And thank you for at least taking the time to answer me. I appreciate it.
I think is this:

Code: Select all
<script type="text/javascript">
          var usrId = '523'
            jQuery(function($) { 
                $("#voteButton").children().click(function(){
                    $.ajax({ 
                      type: "POST" 
                      ,url: "/?profile/vote" 
                      ,dataType: "script" 
                      ,data: "id=" + usrId 
                      ,beforeSend: function(){
                          $("#voteButton").hide();
                      }
                    });
                    return false;
                });
            });
        </script>

Last edited by CloudedVision; Jun 28th, 2008 at 18:29. Reason: Code tags please
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Automatic votes on web site IBTTL Web Page Design 1 Jun 26th, 2008 01:14
Help required with Unique Online Votes jakenaude Website Planning 7 May 29th, 2008 12:44
Automatic calculations josephman1988 JavaScript Forum 7 Dec 22nd, 2006 17:44
Automatic Backups Gee Bee Databases 9 Jan 22nd, 2006 02:48
automatic redirects benbacardi Classic ASP 2 Sep 13th, 2004 09:02


All times are GMT. The time now is 19:34.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43