wapdesire error plz help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    wapdesire error plz help

    i upload wapdesire n configured it evething ohk but i cant regis even i trie php.ini n htacces i got 500 eror with htacces tried everything but not able to regis plz help my site is CHAT ZONE
    ComputerForumz - Latest Tech News


    Mobbest.tk-Free Mobile Downloads

    #2
    what exactly is it saying when u cant register ??
    Wapchat4u


    Topsites4u

    Comment


      #3
      Nothing. Needs register globals on to work. Where did they find these outdated things anyway...
      <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

      Comment


        #4
        Check your database if your registration is off
        Did I help you?
        You can help me too
        Your donations will help me finance my studies.

        Comment


          #5
          registration is on but register globals are of in my host tried to use htacess file got 500 eror used php.ini file to turn golbals on nothing happend when try to regis nothing hapeens n i stay on registration page ? plzhelp me
          ComputerForumz - Latest Tech News


          Mobbest.tk-Free Mobile Downloads

          Comment


            #6
            Originally posted by rajveer View Post
            registration is on but register globals are of in my host tried to use htacess file got 500 eror used php.ini file to turn golbals on nothing happend when try to regis nothing hapeens n i stay on registration page ? plzhelp me
            Put on .htaccess php_flag register_globals off

            if won't work try turn it on.

            does ur hosting support .htaccess? if not

            try this in php.ini

            register_globals=on/off

            gud luckk
            sigpic
            Visit my WEBSITE Project: http://www.aspirewap.net

            Comment


              #7
              Originally posted by m4ster_v4 View Post
              Put on .htaccess php_flag register_globals off

              if won't work try turn it on.

              does ur hosting support .htaccess? if not

              try this in php.ini

              register_globals=on/off

              gud luckk
              or try register_globals 1 or 0

              Comment


                #8
                First row should be
                [PHP]

                then second row should be
                register_globals = Off

                turn On if you want to on.
                Did I help you?
                You can help me too
                Your donations will help me finance my studies.

                Comment


                  #9
                  i have to put php.ini file in every foder or only in main directory ?

                  Added after 5 minutes:

                  Tried everything but always get redircted to regis page
                  Last edited by rajveer; 15.05.11, 03:38.
                  ComputerForumz - Latest Tech News


                  Mobbest.tk-Free Mobile Downloads

                  Comment


                    #10
                    Insert this into /core/functions.inc


                    Code:
                    function register_globals($order = 'egpcs')
                    {
                        // define a subroutine
                        if(!function_exists('register_global_array'))
                        {
                            function register_global_array(array $superglobal)
                            {
                                foreach($superglobal as $varname => $value)
                                {
                                    global $$varname;
                                    $$varname = $value;
                                }
                            }
                        }
                       
                        $order = explode("\r\n", trim(chunk_split($order, 1)));
                        foreach($order as $k)
                        {
                            switch(strtolower($k))
                            {
                                case 'e':    register_global_array($_ENV);        break;
                                case 'g':    register_global_array($_GET);        break;
                                case 'p':    register_global_array($_POST);        break;
                                case 'c':    register_global_array($_COOKIE);    break;
                                case 's':    register_global_array($_SERVER);    break;
                            }
                        }
                    }
                    and then in /core/main.inc add this line after the incfiles

                    Code:
                    register_globals();

                    Comment


                      #11
                      Can u Plz tell any code to show on my site Index main page there is only online users can i add guest online n registers user means showing code online user8 geust 2 total register12o that way

                      Added after 5 minutes:

                      thnx u very much i am getting registerd now
                      Last edited by rajveer; 16.05.11, 01:46.
                      ComputerForumz - Latest Tech News


                      Mobbest.tk-Free Mobile Downloads

                      Comment


                        #12
                        Originally posted by rajveer View Post
                        Can u Plz tell any code to show on my site Index main page there is only online users can i add guest online n registers user means showing code online user8 geust 2 total register12o that way
                        Added after 5 minutes:
                        thnx u very much i am getting registerd now
                        what trick u use to registration working ?

                        Added after 50 minutes:

                        Originally posted by woody View Post
                        Insert this into /core/functions.inc
                        Code:
                        function register_globals($order = 'egpcs')
                        {
                            // define a subroutine
                            if(!function_exists('register_global_array'))
                            {
                                function register_global_array(array $superglobal)
                                {
                                    foreach($superglobal as $varname => $value)
                                    {
                                        global $$varname;
                                        $$varname = $value;
                                    }
                                }
                            }
                           
                            $order = explode("\r\n", trim(chunk_split($order, 1)));
                            foreach($order as $k)
                            {
                                switch(strtolower($k))
                                {
                                    case 'e':    register_global_array($_ENV);        break;
                                    case 'g':    register_global_array($_GET);        break;
                                    case 'p':    register_global_array($_POST);        break;
                                    case 'c':    register_global_array($_COOKIE);    break;
                                    case 's':    register_global_array($_SERVER);    break;
                                }
                            }
                        }
                        and then in /core/main.inc add this line after the incfiles
                        Code:
                        register_globals();
                        in functions.inc where i put that code ?
                        Last edited by Pavan; 27.05.11, 05:55.

                        Comment

                        Working...
                        X