Help in Vps blank page

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

    Help in Vps blank page

    I m using Vps with kloxo but when i enter path of my some php it shows blank page ...without any error so please tell me how to solve that

    #2
    Send me a message I can help you out, and what distro you are using now?
    com site: http://vampist.net
    download site: http://wapdloads.net
    fb: http://www.facebook.com/pmplx

    Comment


      #3
      enable error output in the script
      Advertise your mobile site for FREE with AdTwirl

      Comment


        #4
        if that fails use this script:

        error.php
        PHP Code:
        <?php
        $page 
        = isset($_GET['page']) ? $_GET['page'] : 'index.php';
        error_reporting  (E_ALL);
        ini_set ('display_errors'true);
        include(
        $page);
        ?>

        Comment


          #5
          oops you added the script to the top of the script which appears to be causing an infinitive loop...
          can you delete these 2 lines:

          $page = isset($_GET['page']) ? $_GET['page'] : 'input.php';
          include($page);

          and see what error it gives then

          Comment


            #6
            create a new page with error.php and then goto error.php?page=input.php and it will show the errors
            change input.php to which ever page is causing problems

            make sure you have those 2 lines that your removed included on error.php

            Comment


              #7
              there is probably some infinite loop in input.php
              Advertise your mobile site for FREE with AdTwirl

              Comment


                #8
                Try Changing error.php to
                PHP Code:
                <?php
                $page 
                = isset($_GET['page']) ? $_GET['page'] : 'index.php';
                error_reporting  (E_ALL);
                ini_set ('display_errors'true);
                include_once(
                $page); // this line has changed
                ?>
                That will avoid the infinitive loop

                Comment


                  #9
                  put the code of input.php here
                  Advertise your mobile site for FREE with AdTwirl

                  Comment


                    #10
                    installed script again and solved

                    Comment

                    Working...
                    X