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
php how do i disable safe mode
Collapse
X
-
Tags: None
-
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
-
-
To make sure, upload to your server a phpinfo.php file :Originally posted by horseygirlto install a script i found to make comus work
Check in configuration core, about 3/4 down. You will see :PHP Code:<?php phpinfo(); ?>
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 luckI 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
-
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...
Comment
-
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-888Comment
-
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..Comment
-
Definitively easier, but some stay were they are.Originally posted by nakkiSorry, 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..
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 0Last 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



Comment