How to fix this Vote Module of MU Core 1.8

Results 1 to 7 of 7
  1. #1
    -( . ) ( . )- clerigz is offline
    MemberRank
    Mar 2012 Join Date
    1,365Posts

    ! How to fix this Vote Module of MU Core 1.8

    Hi to everyone here in Ragezone community here to ask some help for all of you..

    hoy to fix Vote module? Cause i'm having some problem with this module

    when you click the Vote Now button there's nothing happen..




  2. #2
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    Re: How to fix this Vote Module of MU Core 1.8

    what nothing happened???

    did you installed the vote module SQL and SQL queries?

  3. #3
    RaGEZONER Since 2004 I Am NoLimiT is offline
    MemberRank
    Jul 2004 Join Date
    Ha-HaciendaLocation
    1,025Posts

    Re: How to fix this Vote Module of MU Core 1.8

    Maybe he installed it correctly but forgot something related with MU Core 1.8 Vote 4 Credits.

    Here you go mate,Just copy paste this on your template index.php first line.

    <?
    mssql_connect($core['db_host'],$core['db_user'],$core['db_password']);
    mssql_select_db($core['db_name']);
    ?>


    Then save and restart xampp.Then try again.

  4. #4
    Proficient Member crosdev is offline
    MemberRank
    Jul 2013 Join Date
    160Posts

    Re: How to fix this Vote Module of MU Core 1.8

    Execute this in Query use MuOnline

    Code:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[MUCore_VoteCredits]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[MUCore_VoteCredits]
    GO
    
    
    CREATE TABLE [dbo].[MUCore_VoteCredits] (
        [vote_id] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
        [username] [varchar] (10) COLLATE Modern_Spanish_CI_AS NULL ,
        [vote_time] [bigint] NULL 
    ) ON [PRIMARY]
    GO
    and
    Code:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[MUCore_VoteCreditsIp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[MUCore_VoteCreditsIp]
    GO
    
    
    CREATE TABLE [dbo].[MUCore_VoteCreditsIp] (
        [username] [varchar] (50) COLLATE Chinese_PRC_CI_AS NOT NULL ,
        [deletetime] [bigint] NULL ,
        [ip] [varchar] (50) COLLATE Chinese_PRC_CI_AS NULL 
    ) ON [PRIMARY]
    GO
    Enter in XAMPP/htdocs/templates/YOURTEMPLATE/index.php
    and add

    Code:
    <?
    mssql_connect($core['db_host'],$core['db_user'],$core['db_password']);
    mssql_select_db($core['db_name']);
    ?>

  5. #5
    -( . ) ( . )- clerigz is offline
    MemberRank
    Mar 2012 Join Date
    1,365Posts

    Re: How to fix this Vote Module of MU Core 1.8

    when i click the Vote Now there will no pop of the vote site... ive already run the sql scripts for the vote

  6. #6
    Alpha Member 2009x2014 is offline
    MemberRank
    Dec 2009 Join Date
    2,765Posts

    Re: How to fix this Vote Module of MU Core 1.8

    He talk about

    if there's no ip found on MUCore_VoteCreditsIP

    first it's adding IP & then on 2nd click it's starting to adding Votes to database

    So it's working just, when no ip, it's gonna work on 2nd click.

    @clerigz

    Just add notice it's first checking for ip so on first button need 2x click.


    other way it isn't correctly installed.
    Last edited by 2009x2014; 06-08-13 at 12:45 AM.

  7. #7
    -( . ) ( . )- clerigz is offline
    MemberRank
    Mar 2012 Join Date
    1,365Posts

    Re: How to fix this Vote Module of MU Core 1.8

    so what can i do for this i will installed it again to work it properly??

    yeah sir when i click the vote now button there's nothing happen and when i click the vote now for the second time it will appear the site MMORPG & MPOG Top 100 site.. how to fix this???



Advertisement