Ip direkt auf verzeichnis Verlinken

BaNaNaBeck

New Member
Hallo,

ich habe einen Root-Server. Nun habe ich mir was installiert und möchte nun direkt über die Ip des Server auf die index.php zugreifen.

Das ganze liegt, wenn ich mich root einloge, in den Ordnern: /var/www/ipc/indx.php

Was muss ich nun einstellen das die IP direkt auf diese Seite geht?

mfg
BaNaNaBeck
 
Du brauchst musst den vorhandenen VirtualHost-Eintrag für deine IP 111.222.333.444 (Beispiel!) ändern.
Suche mal nach:
<VirtualHost 111.222.333.444>
Und ändere dort:
DocumentRoot /var/www/ipc
DocumentIndex index.php

Nachdem ich nicht genau weiß, welches Betriebssystem du hast, schau mal unter /etc/httpd/conf.d nach der Datei zz010_psa_httpd.conf.
Ändere dort und
dann starte den Apache-Server neu.
 
Last edited by a moderator:
Ich hab nun die Datei gefunden... muss ich alles ändern oder was genau?

Code:
NameVirtualHost 111.222.333.444:80
NameVirtualHost 111.222.333.444:443
ServerName mike020.xxx.de
ServerAdmin [email protected]

DocumentRoot /var/www/vhosts/default/htdocs

<IfModule mod_logio.c>
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" plesklog
</IfModule>
<IfModule !mod_logio.c>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" plesklog
</IfModule>
TraceEnable off

<Directory "/var/www/vhosts">
	AllowOverride All
	Options SymLinksIfOwnerMatch
	Order allow,deny
	Allow from all
	<IfModule mod_php4.c>
	php_admin_flag engine off
	</IfModule>
	<IfModule mod_php5.c>
	php_admin_flag engine off
	</IfModule>
</Directory>

<Directory "/usr/lib/mailman">
	AllowOverride All
	Options SymLinksIfOwnerMatch
	Order allow,deny
	Allow from all
	<IfModule mod_php4.c>
	php_admin_flag engine off
	</IfModule>
	<IfModule mod_php5.c>
	php_admin_flag engine off
	</IfModule>
</Directory>

<IfModule mod_userdir.c>
	UserDir disabled
</IfModule>
Include /var/www/vhosts/test12.mike020.xxx.de/conf/httpd.include

<VirtualHost \
			111.222.333.444:80 \
			>
	ServerName default
	UseCanonicalName Off
	DocumentRoot /var/www/vhosts/default/htdocs
	ScriptAlias /cgi-bin/ "/var/www/vhosts/default/cgi-bin/"
	<IfModule mod_ssl.c>
		SSLEngine off
	</IfModule>
	<Directory "/var/www/vhosts/default/cgi-bin/">
		AllowOverride None
		Options None
		Order allow,deny
		Allow from all
	</Directory>
	<Directory /var/www/vhosts/default/htdocs>
	<IfModule mod_php4.c>
		php_admin_flag engine on
		php_admin_flag safe_mode on
		php_admin_value open_basedir "/var/www/vhosts/default/htdocs:/tmp"
	</IfModule>
	<IfModule mod_php5.c>
		php_admin_flag engine on
		php_admin_flag safe_mode on
		php_admin_value open_basedir "/var/www/vhosts/default/htdocs:/tmp"
	</IfModule>
	</Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost 111.222.333.444:443 >
	ServerName default-85-25-12-11
	UseCanonicalName Off
	DocumentRoot /var/www/vhosts/default/httpsdocs
	ScriptAlias /cgi-bin/ "/var/www/vhosts/default/cgi-bin/"
	SSLEngine on
	SSLVerifyClient none
	SSLCertificateFile /opt/psa/var/certificates/certar18783
	<Directory "/var/www/vhosts/default/cgi-bin/">
		AllowOverride None
		Options None
		Order allow,deny
		Allow from all
	</Directory>
	<Directory /var/www/vhosts/default/httpsdocs>
		SSLRequireSSL
	</Directory>
</VirtualHost>

</IfModule>

<VirtualHost \
			111.222.333.444:80 \
			>
	DocumentRoot /var/www/vhosts/default/htdocs
	ServerName lists
	ServerAlias lists.*
	UseCanonicalName Off
	ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
	ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
	Alias /icons/ /var/lib/mailman/icons/
	Alias /pipermail/ /var/lib/mailman/archives/public/
	Alias /images/ /usr/share/images/
	<Directory /var/lib/mailman/archives/>
		Options FollowSymLinks
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost \
			111.222.333.444:443 \
			>
	DocumentRoot /var/www/vhosts/default/httpsdocs
	ServerName lists
	ServerAlias lists.*
	UseCanonicalName Off
	ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
	ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
	Alias /icons/ /var/lib/mailman/icons/
	Alias /pipermail/ /var/lib/mailman/archives/public/
	Alias /images/ /usr/share/images/
	<Directory /var/lib/mailman/archives/>
		Options FollowSymLinks
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>


</IfModule>

Include /var/www/vhosts/test.mike020.xxx.de/conf/httpd.include
 
Ich habe nun die Datei geändert in:

Code:
DocumentRoot /var/www

<IfModule mod_logio.c>
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" plesklog
</IfModule>
<IfModule !mod_logio.c>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" plesklog
</IfModule>
TraceEnable off

<Directory "/var/www">
	AllowOverride All
	Options SymLinksIfOwnerMatch
	Order allow,deny
	Allow from all
	<IfModule mod_php4.c>
	php_admin_flag engine off
	</IfModule>
	<IfModule mod_php5.c>
	php_admin_flag engine off
	</IfModule>
</Directory>

<Directory "/usr/lib/mailman">
	AllowOverride All
	Options SymLinksIfOwnerMatch
	Order allow,deny
	Allow from all
	<IfModule mod_php4.c>
	php_admin_flag engine off
	</IfModule>
	<IfModule mod_php5.c>
	php_admin_flag engine off
	</IfModule>
</Directory>

<IfModule mod_userdir.c>
	UserDir disabled
</IfModule>
<VirtualHost \
			xxx.xxx.xxx.xxx:80 \
			>
	ServerName default
	UseCanonicalName Off
	DocumentRoot /var/www
	ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
	<IfModule mod_ssl.c>
		SSLEngine off
	</IfModule>
	<Directory "/var/www/cgi-bin/">
		AllowOverride None
		Options None
		Order allow,deny
		Allow from all
	</Directory>
	<Directory /var/www>
	<IfModule mod_php4.c>
		php_admin_flag engine on
		php_admin_flag safe_mode on
		php_admin_value open_basedir "/var/www:/tmp"
	</IfModule>
	<IfModule mod_php5.c>
		php_admin_flag engine on
		php_admin_flag safe_mode on
		php_admin_value open_basedir "/var/www:/tmp"
	</IfModule>
	</Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost xxx.xxx.xxx.xxx:443 >
	ServerName default-85-25-12-11
	UseCanonicalName Off
	DocumentRoot /var/www
	ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
	SSLEngine on
	SSLVerifyClient none
	SSLCertificateFile /opt/psa/var/certificates/certar18783
	<Directory "/var/www/cgi-bin/">
		AllowOverride None
		Options None
		Order allow,deny
		Allow from all
	</Directory>
	<Directory /var/www>
		SSLRequireSSL
	</Directory>
</VirtualHost>

</IfModule>

<VirtualHost \
			xxx.xxx.xxx.xxx:80 \
			>
	DocumentRoot /var/www
	ServerName lists
	ServerAlias lists.*
	UseCanonicalName Off
	ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
	ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
	Alias /icons/ /var/lib/mailman/icons/
	Alias /pipermail/ /var/lib/mailman/archives/public/
	Alias /images/ /usr/share/images/
	<Directory /var/lib/mailman/archives/>
		Options FollowSymLinks
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>


<IfModule mod_ssl.c>

<VirtualHost \
			xxx.xxx.xxx.xxx:443 \
			>
	DocumentRoot /var/www
	ServerName lists
	ServerAlias lists.*
	UseCanonicalName Off
	ScriptAlias /mailman/ /usr/lib/cgi-bin/mailman/
	ScriptAlias /cgi-bin/mailman/ /usr/lib/cgi-bin/mailman/
	Alias /icons/ /var/lib/mailman/icons/
	Alias /pipermail/ /var/lib/mailman/archives/public/
	Alias /images/ /usr/share/images/
	<Directory /var/lib/mailman/archives/>
		Options FollowSymLinks
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>


</IfModule>

Allerdings erhalte ich nun lauter Fehlermedlungen wenn ich auf die Ip gehe:
Code:
Informationen:
Warning: file() [function.file]: open_basedir restriction in effect. File(/var/etc/CCcam.cfg) is not within the allowed path(s): (/var/www:/tmp) in /var/www/ipc/page/home.php on line 29

Warning: file(/var/etc/CCcam.cfg) [function.file]: failed to open stream: Operation not permitted in /var/www/ipc/page/home.php on line 29

Warning: fopen() [function.fopen]: open_basedir restriction in effect. File(/var/emu/script/functions.sh) is not within the allowed path(s): (/var/www:/tmp) in /var/www/ipc/page/home.php on line 56

Warning: fopen(/var/emu/script/functions.sh) [function.fopen]: failed to open stream: Operation not permitted in /var/www/ipc/page/home.php on line 56

Warning: fgets(): supplied argument is not a valid stream resource in /var/www/ipc/page/home.php on line 57
 
Danke... es geht vorwärts :)

Code:
Warning: filemtime() [function.filemtime]: open_basedir restriction in effect. File(/var/emu/conf/version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/page/home.php on line 82

Warning: shell_exec() [function.shell-exec]: Cannot execute using backquotes in Safe Mode in /var/www/ipc/page/home.php on line 129

so gehts eben weiter :(

Code:
Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/lsb_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/debian_release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/debian_version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/SuSE-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/UnitedLinux-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/mandrake-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/gentoo-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/redhat-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/redhat_version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/fedora-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/fedora-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/slackware-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/slackware-version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/trustix-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/trustix-version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/eos-version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/arch-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/cobalt-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/lfs-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/rubix-version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/lsb-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/pld-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/redhat-release) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/etc/redhat_version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/os/class.Linux.inc.php on line 57

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/loadavg) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/sys/kernel/hostname) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/version) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/uptime) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/who) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/net/dev) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/cpuinfo) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/acpi/thermal_zone/THRM/temperature) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/lspci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/pci) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/proc/ide) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 384

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/lsscsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/scsi/scsi) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/lsusb) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/bus/usb/devices) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/proc/meminfo) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 353

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/df) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/bin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/sbin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/bin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/sbin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/bin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: is_executable() [function.is-executable]: open_basedir restriction in effect. File(/usr/local/sbin/mount) is not within the allowed path(s): (/var/www:/tmp:/var/etc:/var/emu/script) in /var/www/ipc/phpsysinfo/includes/common_functions.php on line 137

Warning: Cannot modify header information - headers already sent by (output started at /var/www/ipc/phpsysinfo/includes/common_functions.php:137) in /var/www/ipc/phpsysinfo/includes/system_header.php on line 31

Warning: Cannot modify header information - headers already sent by (output started at /var/www/ipc/phpsysinfo/includes/common_functions.php:137) in /var/www/ipc/phpsysinfo/includes/system_header.php on line 35
 
Wenn Du eh kreuz und quer durch's ganze System (/etc, /proc, ...) zugreifen willst, bist Du vielleicht mit einem
Code:
php_admin_flag safe_mode off
php_admin_value open_basedir none
besser bedient. Du solltest halt wissen, was Du tust...

PS: Da ja nun bekannt ist, daß es um phpsysinfo geht - in der README stehts sogar ausdrücklich, daß der Safe mode aus sein soll.
 
Okay...

das ganze trage ich in der php.ini ein? Wenn ja in welche? Hab mehrer auf dem Server? Irgendwie habe ich mich leicht verzettelt.. schei... PLESK



Edit: /etc/php5/apache2/php.ini

Hier leigt sie also.. kann ich dir Zeilen einfach einfügen oder muss ich noch was abändern?
 
Last edited by a moderator:
Back
Top