php info

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lazo

    #1

    php info

    Please help ...

    We have authorized ftp access to our clients apache-php server. Alas
    our clients administrators has recently decided to block the phpinfo()
    function.

    Is there any way to simulate that built-in function. Maybe somebody
    has the same function written in php.



    Thanks.
  • Pedro Graca

    #2
    Re: php info

    lazo wrote:[color=blue]
    > We have authorized ftp access to our clients apache-php server. Alas
    > our clients administrators has recently decided to block the phpinfo()
    > function.
    >
    > Is there any way to simulate that built-in function. Maybe somebody
    > has the same function written in php.[/color]

    It might be possible to build something similar using other
    info-gathering functions (ini_get(), get_loaded_exte nsions(), ...) *if*
    they are not blocked.

    Check http://www.php.net/manual/en/ref.info.php
    --
    --= my mail box only accepts =--
    --= Content-Type: text/plain =--
    --= Size below 10001 bytes =--

    Comment

    • lazo

      #3
      Re: php info

      Pedro Graca <hexkid@hotpop. com> wrote in message news:<c1l71e$1k d6i2$1@ID-203069.news.uni-berlin.de>...[color=blue]
      > lazo wrote:[color=green]
      > > We have authorized ftp access to our clients apache-php server. Alas
      > > our clients administrators has recently decided to block the phpinfo()
      > > function.
      > >
      > > Is there any way to simulate that built-in function. Maybe somebody
      > > has the same function written in php.[/color]
      >
      > It might be possible to build something similar using other
      > info-gathering functions (ini_get(), get_loaded_exte nsions(), ...) *if*
      > they are not blocked.
      >
      > Check http://www.php.net/manual/en/ref.info.php[/color]

      Thank you for your help. The server apparently isn't blocked for these
      commands and I hope it stays that way.
      Do you have an idea of how to find out the GD version?

      Comment

      • B. Johannessen

        #4
        Re: php info

        -----BEGIN PGP SIGNED MESSAGE-----
        Hash: SHA1

        lazo wrote:[color=blue]
        > Do you have an idea of how to find out the GD version?[/color]

        Retrieve information about the currently installed GD library



        Bob




        -----BEGIN PGP SIGNATURE-----
        Comment: B. Johannessen <bob@db.org> - http://db.org/contact/en/

        iD8DBQFAPzw7ooi sUyMOFlgRAqisAJ 48Yah9PRdtFXYAQ HIoGHIvzk81YACf VJdE
        pYISV8dIIqJcmYu 7qzn81MU=
        =kPKy
        -----END PGP SIGNATURE-----

        Comment

        • R. Rajesh Jeba Anbiah

          #5
          Re: php info

          matejl@volja.ne t (lazo) wrote in message news:<9739d00.0 402260820.51001 b93@posting.goo gle.com>...[color=blue]
          > Please help ...
          >
          > We have authorized ftp access to our clients apache-php server. Alas
          > our clients administrators has recently decided to block the phpinfo()
          > function.
          >
          > Is there any way to simulate that built-in function. Maybe somebody
          > has the same function written in php.[/color]

          Perhaps, print_r($GLOBAL S);??

          --
          "Success is not what you achieve, but it is what you die for"
          If you live in USA, please support John Edwards.
          Email: rrjanbiah-at-Y!com

          Comment

          • lazo

            #6
            Re: php info

            Thanks everybody,

            now I can get all information, that I needed to work normal.

            Comment

            Working...