Apache schmiert ab

nolimitek

Registered User
Hallo alle zusammen.

Hab seit ein paar Tagen das Problem das sich der Apache immer wieder verabschiedet.

System: Server4You RH9

Hier ein Auszug meiner error_log

chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted
chmod: changing permissions of `/var/www/web7/html/catalog//images/imagecache': Operation not permitted

Das ganze kommt von einem osc shop weiß aber nicht warum
chmod iist bei images und imagecache auf 777

wäre nett wenn ihr mir weiterhelfen könntet

mfg Chris
 
Weiß ja nicht ob das Problem inzwischen gelöst wurde, aber es kommt definitv von der OSCommerce Contribution Automatic Thumbnailer. Dein Server ist deshalb wohl nicht abgestürzt, da ich auch 2 Shops am laufen habe, die den selben Fehler in der apache error_log haben. Bis jetzt! habs gelöst. Liegt einfach an den Rechten.

Lösche den kompletten Ordner imagecache. Beim nächsten Aufruf des Skripts, erstellt es den Ordner automatisch neu (mit den richtigen Rechten und dem Besitzer "root")

Code:
chmod: changing permissions of `/srv/www/vhosts/shopname.com/httpdocs/shop//images/imagecache': Operation not permitted

Du solltest außerdem noch den DoppelSlash entfernen in dem du die folgende Zeile
Code:
$src=thumbimage(DIR_FS_CATALOG . '/' .$src, $width, $height, 1, 1, DIR_FS_CATALOG . '/' . DIR_WS_IMAGES . 'imagecache');
durch diese ersetzt:
Code:
$src=thumbimage(DIR_FS_CATALOG . '/' .$src, $width, $height, 1, 1, DIR_FS_CATALOG . '' . DIR_WS_IMAGES . 'imagecache');
hat auf jeden Fall bei mir geholfen!

:) So jetzt hab ich auch mal geholfen. Top Forum! Hier gibt's alle Antworten, auch wenn's manchmal etwas länger dauert!
 
Last edited by a moderator:
Back
Top