NameSilo

Need help with Mysql... how do I?

Spaceship Spaceship
Watch

DN BROKER

VIP Member
Impact
169
how do i set these settings?

SendMail - (Yes)
PHP safe mode - (OFF)
PHP open_basedir - (OFF)
PHP register globals – (OFF)
PHP open basedir – (OFF)
FFMPEG Support – (ON)
GD Library - (ON)

im confused...

this is the error im getting

Checking PHP Version... 5.2.4 (ok)
Checking System Information... Linux
Checking PHP Server API... apache2handler
Checking Path to 'php.ini'... /etc
Checking PHP GD extension... On
Checking safe_mode... On-Please turn off safe_mode in the php.ini
Checking short_tags... On
Checking file_uploads...On
Checking open base directory...On - Please upload a test file
Checking ffmpeg... ffmpeg extension not loaded
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
MIR said:
how do i set these settings?

SendMail - (Yes)
PHP safe mode - (OFF)
PHP open_basedir - (OFF)
PHP register globals – (OFF)
PHP open basedir – (OFF)
FFMPEG Support – (ON)
GD Library - (ON)

Some of these can't be set unless you've got root access. These are system variables that applies to the server's PHP configuration and makes it vulnerable if changed. You can try to change all of them to see what server settings there are. Create a php-file and paste the following:

Code:
<?php
ini_set('sendmail_path', '/usr/sbin/sendmail -t -i -f [email protected]');
ini_set('safe_mode','0');
ini_set('open_basedir','0');
ini_set('register_globals','0');
?>

GD and FFMPEG must be installed on the server and activated by sysadmin to make it work. These libraries can be downloaded here:

FFMPEG-PHP
GD


GD is usually installed on almost every PHP-system, and you can check the status on your system by using this code:

Code:
<?php
print_r(gd_info());
?>
 
0
•••
hawkaw said:
Some of these can't be set unless you've got root access. These are system variables that applies to the server's PHP configuration and makes it vulnerable if changed. You can try to change all of them to see what server settings there are. Create a php-file and paste the following:

Code:
<?php
ini_set('sendmail_path', '/usr/sbin/sendmail -t -i -f [email protected]');
ini_set('safe_mode','0');
ini_set('open_basedir','0');
ini_set('register_globals','0');
?>

GD and FFMPEG must be installed on the server and activated by sysadmin to make it work. These libraries can be downloaded here:

FFMPEG-PHP
GD


GD is usually installed on almost every PHP-system, and you can check the status on your system by using this code:

Code:
<?php
print_r(gd_info());
?>
PHP:
ini_set('safe_mode','0');
ini_set('open_basedir','0');
ini_set('register_globals','0');

Will not work. These can only be changed in the server's php.ini file.
 
0
•••
SecondVersion said:
PHP:
ini_set('safe_mode','0');
ini_set('open_basedir','0');
ini_set('register_globals','0');

Will not work. These can only be changed in the server's php.ini file.

Probably not, but still worth a shot. They're PHP_INI_SYSTEM-files and shouldn't be able to change this way, though I've seen systems where virtual host-settings allow overriding these variables (found in a user copy of php.ini).
Still, it's a long shot :)
 
0
•••
maybe you can just explain this to your web host hlpdesk service. they are used to solve these things quickly.
 
0
•••
thanks everyone for your help.
 
0
•••

We're social

Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back