wapdesire v2 xhtml (teaze-n-plz.com)

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

    please helpme? clubs/genproc.php This page does not, help please

    Object not found!

    Comment


      Why does no one help me?
      something you wanted very difficult?
      I do not know coding
      Last edited by eynesilli; 21.09.11, 18:14.

      Comment


        Originally posted by eynesilli View Post
        please helpme? clubs/genproc.php This page does not, help please

        Object not found!
        http://localhost/chat/clubs/genproc....3b5ec1c0&clid=
        v2 doesn't have /clubs/genproc.php

        Comment


          Originally posted by woody View Post
          v2 doesn't have /clubs/genproc.php


          yes my friend she does not file

          I've downloaded the file does not exist in the folder

          Comment


            you can easily code it into v2

            Comment


              when i open register its regdirect to http://www.google.com/%3C/a

              Comment


                Originally posted by sailbrah12 View Post
                when i open register its regdirect to http://www.google.com/%3C/a
                i have some problem to but i register myself on phpmyadmin almost all box in script regdirect to http://www.google.com/%3C/a
                error log in phpthumb folder ([12-Oct-2012 11:59:46 UTC] PHP Deprecated: Function ereg() is deprecated in /home/sitename/public_html/x/phpThumb/phpThumb.config.php on line 30)
                in whole site i have
                this image when i codes from torch explorer i have this code (
                Code:
                 <html lang=en>
                  <meta charset=utf-8>
                  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
                  <title>Error 404 (Not Found)!!1</title>
                  <style>
                    *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}
                  </style>
                  <a href=//www.google.com/</a>
                </div>
                )
                thanks for help
                Last edited by rohelat; 12.10.12, 14:57.

                Comment


                  Check Tutorials subforum for that Deprecated function.
                  <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

                  Comment


                    Guys help. I am not able to register despite of all the solutions here. When i put php.ini file my site takes to Internal server error page. Please help me.

                    Comment


                    • something else
                      something else commented
                      Editing a comment
                      If you are using PHP 5.4.0 or over Globals have been completely removed due to security issues. There is a quick fix for registering Globals here: http://coding-talk.com/forum/main-fo...gister_globals

                      I would normally suggest to use $_GET and $_POST instead of Globals but wapdesire v2 original script has worse security problems with it. Such as any user can easily crash the whole site by causing infinitive php loops + many more very bad security issues.

                    Wapdesire one of the best lavaire site of all times
                    http://myfacepals.com
                    MYFACEPALS SOCIAL NETWORKsigpic

                    Comment


                      Guys help. I am not able to register despite of all the solutions here. When i put php.ini file my site takes to Internal server error page. Please help me.
                      1. Chmod 777
                      2. Upload php.ini
                      3. Upload .htaccess
                      4. Change value register 0 to 1 in database

                      Pls help me. Do this script not suitable to current hosting or phpmyadmin?

                      Comment


                        Don't upload php.ini if it is causing internal server error.
                        (It is more than likely that it is trying to turn globals on when it no longer exists in your php version)

                        Here is a globals work around posted by subzero a while back:
                        PHP Code:
                        //GLOBALS OFF WORK ROUND
                        if (!ini_get('register_globals')) {
                        $reg_globals = array($_POST$_GET$_FILES$_ENV$_SERVER$_COOKIE);
                        if (isset(
                        $_SESSION)) {
                        array_unshift($reg_globals$_SESSION);
                        }
                        foreach (
                        $reg_globals as $reg_global) {
                        extract($reg_globalEXTR_SKIP);
                        }

                        The better way would be to use $_GETs and $_POSTs.

                        Comment


                          do i need to copy and paste this in .htaccess?

                          Comment


                            paste it in line 2 of "core/functions.inc"

                            Comment

                            Working...
                            X