Kein Upload möglich

Apache, Lighttpd, nginx, Cherokee
Post Reply
Anonymous
 

Kein Upload möglich

Post by Anonymous »

Hallo,
ich betreibe auf meiner Seite seit mehreren Jahren eine Gallerie. Jetzt bin ich vor kurzem auf einen neuen Root-Server umgezogen und seitdem ein Problem.


In der Gallerie können die User ihre eigenen Bilder hochladen, welches allerdings durch den Serverumzug nicht mehr funktioniert. Die User bekommen nach einem anscheinenden Upload, durch das Uploadscript folgende Fehlermeldung: Bitte Bilddatei auswählen.

In diesem Forum hab ich als unregistrierter Nutzer seit 2 Wochen sämtliche Threads und Anpassungen der php.ini sowie der einzelnen *.conf Dateien durchgegangen, ohne Erfolg.

Jetzt hab mich mal Registriert um eine Hilfe zu bekommen.

Systemkonfiguration: SuSeLinux 9.0, PHP 4.3.3, Apache 2.0.48 und Confixx Premium

Inhalt httpd.conf:

Code: Select all

### Virtual server configuration ############################################
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs-2.0/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
Include /etc/apache2/vhosts.d/*.conf
AccessFileName .htaccess
# Note: instead of adding your own configuration here, consider
#       adding it in your own file (/etc/apache2/httpd.conf.local)
#       putting its name into APACHE_CONF_INCLUDE_FILES in
#       /etc/sysconfig/apache2 -- this will make system updates
#       easier :)
## CONFIXX
<Directory "/srv/www/htdocs/confixx/html">
 AllowOverride None
</Directory>
NameVirtualHost 62.75.178.82:80
<VirtualHost 62.75.178.82:80>
ServerName oslo082.server4you.de
Alias /phpmyadmin /srv/www/htdocs/phpMyAdmin
#User confixx
#Group users
DocumentRoot /srv/www/htdocs/confixx/html
php_admin_value safe_mode_exec_dir /srv/www/htdocs/confixx/bin
php_admin_value upload_tmp_dir /srv/www/htdocs/confixx/tmp
php_admin_value open_basedir none
#php_admin_value safe_mode off
ScriptAlias /cgi-bin/ /srv/www/htdocs/confixx/html/cgi-bin/
CustomLog /var/log/apache2/confixx_access.log "%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i""
ErrorLog /var/log/apache2/confixx_error.log
</VirtualHost>
Include /etc/apache2/confixx_vhost.conf
<Directory "/srv/www/htdocs/web1/">
AllowOverride All
</Directory>
# - Dieser Eintrag sollte unbedingt am Ende der Datei bleiben
## /CONFIXX
Inhalt confixx_vhost.conf:
#### CONFIXX APACHE VHOST FILE ####
### created Tue Sep 28 18:42:00 2004 ###
NameVirtualHost 62.75.178.82:80
php_admin_flag safe_mode On
php_admin_value safe_mode_exec_dir /srv/www/htdocs/empty
UseCanonicalName Off
LogFormat "%V:#:%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx
LogFormat "%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"" confixx2
CustomLog |/usr/local/confixx/pipelog.pl confixx
<Directory "/srv/www/htdocs">
<Files ~ "^.ht">
deny from all
</Files>
AllowOverride All
AllowOverride Indexes AuthConfig Limit FileInfo
Options None
Options -FollowSymLinks -SymLinksIfOwnerMatch +Includes
</Directory>
<Directory "/srv/www/htdocs/web1/html">
Options +Indexes
</Directory>
<VirtualHost 62.75.178.82:80>
ServerName 62.75.178.82
DocumentRoot /srv/www/htdocs/confixx/html/gesperrt
</VirtualHost>
<VirtualHost 62.75.178.82:80>
ServerName web1.oslo082.server4free.de
ServerAlias web1.oslo082.server4you.de http://www.web1.oslo082.server4free.de
DocumentRoot /srv/www/htdocs/web1/html
SuexecUserGroup web1 ftponly
ScriptAlias /cgi-bin/ /srv/www/htdocs/web1/html/cgi-bin/
php_admin_value open_basedir /srv/www/htdocs/web1/:/srv/www/htdocs/phpMyAdmin/:/srv/www/htdocs/confixx/html/gesperrt/
php_admin_value upload_tmp_dir /srv/www/htdocs/web1/phtml/
php_admin_value safe_mode off
php_admin_flag register_globals On
</VirtualHost>
Inhalt der php.ini
dogholiday
Posts: 17
Joined: 2004-09-30 16:36
 

Re: Kein Upload möglich

Post by dogholiday »

Sicher das es nicht an irgendwelchen verz. rechten liegt?? Das würde ich eher mal schätzen.
svenuser
Posts: 9
Joined: 2004-10-05 19:49
 

Re: Kein Upload möglich

Post by svenuser »

Liegt sicher eher am Safe_Mode = On!
Post Reply