php how do i disable safe mode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • horseygirl
    Confirmed User
    • Nov 2005
    • 337

    #1

    php how do i disable safe mode

    hi guys. im trying to disable safe mode but have no idea where the php.ini file is and even what to do with it when i find it. im hosted by lycos that will allow it to be changed. please help and keep it simple im a girl. lol xxxx
  • directfiesta
    Too lazy to set a custom title
    • Oct 2002
    • 30135

    #2
    Lycos... You don't have access to that file.

    It would be located at:

    /usr/local/cpanel/3rdparty/etc

    php.ini

    Why do you need access to it ?
    I know that Asspimple is stoopid ... As he says, it is a FACT !

    But I can't figure out how he can breathe or type , at the same time ....

    Comment

    • AdultEUhost
      ORLY?
      • Oct 2005
      • 2579

      #3
      There is another topic about this, use search to find it
      ICQ: 267-443-722 / leon [at] adulteuhost [dotcom]

      Nominated for an XBIZ Award as "Webhost of the Year" in 2007, 2012, 2013 and 2014

      Comment

      • horseygirl
        Confirmed User
        • Nov 2005
        • 337

        #4
        to install a script i found to make comus work

        Comment

        • directfiesta
          Too lazy to set a custom title
          • Oct 2002
          • 30135

          #5
          Originally posted by horseygirl
          to install a script i found to make comus work
          To make sure, upload to your server a phpinfo.php file :

          PHP Code:
          <?php phpinfo(); ?>
          Check in configuration core, about 3/4 down. You will see :

          safe_mode Off Off

          If they are on, you can try to get Lycos to edit their php.ini file, but don't count on it.

          Or change to a normal host that will have everything setup from the start for his clients:

          http://www.pdghosting.com/phpinfo.php


          Good luck
          I know that Asspimple is stoopid ... As he says, it is a FACT !

          But I can't figure out how he can breathe or type , at the same time ....

          Comment

          • ragingdick
            Registered User
            • Nov 2005
            • 8

            #6
            I know you need to turn it off in the php.ini as said above... I'm more than likely wrong but can't it also be overridden using .htaccess?

            maybe i am thinking of register_globals...
            Raging Dick Adult Design Studio

            ICQ 35527997

            Comment

            • grumpy
              Too lazy to set a custom title
              • Jan 2002
              • 9870

              #7
              http://www.php.net/manual/en/function.ini-set.php

              will be something like this string ini_set ( string varname, string newvalue )

              sample
              result=ini_set(safe_mode,false);
              put it at the top of your script.
              Last edited by grumpy; 11-06-2005, 02:11 AM.
              Don't let greediness blur your vision | You gotta let some shit slide
              icq - 441-456-888

              Comment

              • nakki
                Confirmed User
                • May 2001
                • 137

                #8
                Sorry, but it can't be changed with .htaccess, and ini_set won't have any effect either. I don't really see Lycos changing their php.ini either, so think your best bet would be to find a new host that doesn't have safe mode on..
                - adult blog aggregator - sign up here
                NastyLittle.com - trade with an established adult blog

                Comment

                • directfiesta
                  Too lazy to set a custom title
                  • Oct 2002
                  • 30135

                  #9
                  Originally posted by nakki
                  Sorry, but it can't be changed with .htaccess, and ini_set won't have any effect either. I don't really see Lycos changing their php.ini either, so think your best bet would be to find a new host that doesn't have safe mode on..
                  Definitively easier, but some stay were they are.

                  So in thaty case, if safe_mode is ON, you can always add to the apache config file ( or get them to add ....):

                  [HTML]<VirtualHost ***.***.***.***>
                  ServerAlias www.domain.net domain.net
                  ServerAdmin [email protected]
                  DocumentRoot /home/domain/public_html
                  php_admin_flag safe_mode Off
                  BytesLog domlogs/domain.net-bytes_log
                  ServerName www.domain.net
                  User domain
                  Group domain
                  CustomLog domlogs/domain.net combined
                  ScriptAlias /cgi-bin/ /home/domain/public_html/cgi-bin/
                  </VirtualHost>[/HTML]


                  please note the added line:

                  php_admin_flag safe_mode Off


                  or this other one, but not both at the same time:

                  php_admin_value safe_mode 0
                  Last edited by directfiesta; 11-06-2005, 01:53 PM.
                  I know that Asspimple is stoopid ... As he says, it is a FACT !

                  But I can't figure out how he can breathe or type , at the same time ....

                  Comment

                  Working...