Diese Website verwendet Cookies, um sicherzustellen, dass Sie die bestmögliche Erfahrung auf unserer Website erhalten. Mehr erfahren
Kein Signal
All Tutorials
Dreamweaver
Autor: EliteBär Level:
 
Title: Neu Instalation oder Template wechsel!
Autor: EliteBär
Level: Normal
Programm: Dreamweaver
Comments: 4 Hits: (67523)
26.01.2013 - 12:18
Dreamweaver
Autor: EliteBär Level:
 
Title: Datenbank Externes Zugreifen z.B gameserver
Autor: EliteBär
Level: Very Easy
Programm: Dreamweaver
Comments: 2 Hits: (21107)
16.01.2013 - 06:25
DZCP
Autor: EliteBär Level:
 
Title: TS3 Auf der DZCP Homepage sichtbar machen!
Autor: EliteBär
Level: Very Easy
Programm: DZCP
Comments: 5 Hits: (29420)
08.01.2013 - 02:59
Dreamweaver
Autor: Bulletproof Level:
 
Title: Social Networks animieren mit JQuery
Autor: Bulletproof
Level: Easy
Programm: Dreamweaver
Comments: 5 Hits: (31381)
12.03.2011 - 12:58
Dreamweaver
Autor: F4n Level:
 
Title: CSS Teil 1 Einführung
Autor: F4n
Level: Very Easy
Programm: Dreamweaver
Comments: 2 Hits: (25219)
24.06.2010 - 11:09
All Downloads
DZCP 1.5.4
Downloads: 14778 Size: 2.34 MB
DZCP 1.5.4 Template #08
Downloads: 8813 Size: 7.24 MB
webSPELL Template #01
Downloads: 8052 Size: 1.88 MB
Logo #12
Downloads: 7723 Size: 4.3 MB
DZCP 1.5.4 Template #05
Downloads: 6821 Size: 7.75 MB
All Votings
no active poll

show polls
All Partners





 
Messageboard » DZCP » Allgemein » Galerie mit FreeBSD wird nicht angezeigt

Sort:     printview
  Author:   Message:
apollo13  offline
Forumrang: Plappermaul
registered: 25.12.2010
11 Posts
02.06.2013, 13:15, U
quote 

Support Information:
CMS & Version: 1.5.5.4
Template & Version: GT_DZCP_v1.5.5.4_12_blue wurde aber auf der Testseite deaktiviert
Website: http://db.faceblogger....ery/?action=show&id=6




Hallo,

ich habe kürzlich meinen Server auf FreeBSD umgestellt, und wir wollen mit unserer Clanseite auf den neuen Server umziehen. Nun habe ich bemerkt, das in unserer Gallery des DZCP CMS keine Bilder bzw. keine Tumpnails angezeigt werden.

Wie man sieht, sieht man nur weiße Felder ==== http://db.faceblogger....ery/?action=show&id=6 an.

Hier mal ein Auszug aus meiner conf.d


Code:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
server {
  listen localhost:80;
  server_name db.faceblogger.de;
  rewrite ^ http://db.faceblogger.de$request_uri?;
}
server {
  listen 80;
  server_name db.faceblogger.de;
  server_name_in_redirect off;
  root /var/www/vhost2/dust-fighter.de;

  proxy_cache_valid 200 302 1h;
  proxy_cache_valid 301 24h;
  proxy_cache_valid any 10m;

  location ~* \.(jpeg|jpg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|swf|avi|mp3|mov|docx|pptx|xlsx|cfg|odt)$ {
    expires 864000;
  }
  location / {
    index index.php index.html index.htm;
    try_files $uri $uri/ /index.php?q=$uri&$args;
  }
  location ~ \.php$ {
    fastcgi_param GEOIP_COUNTRY_CODE $geoip_country_code;
    fastcgi_param GEOIP_COUNTRY_NAME $geoip_country_name;
    limit_req zone=flood burst=15 nodelay;
    fastcgi_pass unix:/var/run/php-fpm.sock;
    proxy_cache_key "$scheme://$host$request_uri $do_not_cache";
    proxy_cache staticfilecache;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_split_path_info ^(.+\.php)(.*)$;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  /var/www/vhost2/dust-fighter.de$fastcgi_script_name;
    include fastcgi_params;
    fastcgi_intercept_errors        on;
    fastcgi_ignore_client_abort     off;
    fastcgi_connect_timeout 60;
    fastcgi_send_timeout 180;
    fastcgi_read_timeout 180;
    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
  }
  location ~ /\.ht {
    deny all;
  }
}



Hier noch die nginx.conf:

Code:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
worker_processes 8;

events {
  worker_connections 2048;
}
http {
  geoip_country /opt/conf/GeoIP.dat;
  include /usr/local/etc/nginx/mime.types;
  default_type application/octet-stream;
  access_log off;
  server_tokens off;
  sendfile on;
  client_max_body_size 200m;
  client_body_buffer_size 1m;
  keepalive_timeout 4;
  port_in_redirect off;
  gzip on;
  gzip_http_version 1.1;
  gzip_vary on;
  gzip_comp_level 6;
  gzip_proxied any;
  gzip_types text/plain text/css application/json application/x-javascript application/xml application/xml+rss text/javascript;
  gzip_buffers 16 8k;
  gzip_disable "MSIE [1-6].(?!.*SV1)";
  limit_req_zone $binary_remote_addr zone=flood:10m rate=10r/s;
  proxy_cache_path /usr/local/etc/nginx/cache levels=1:2 keys_zone=staticfilecache:50m  max_size=300m;
  proxy_temp_path /usr/local/etc/nginx/proxy;
  proxy_cache_key "$scheme://$host$request_uri";
  proxy_cache_valid 200 60m;
  include /usr/local/etc/nginx/conf.d/*.conf;
}



Extensions.ini

Code:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
extension=ctype.so
extension=session.so
extension=filter.so
extension=mbstring.so
extension=json.so
extension=apc.so
extension=bz2.so
extension=gd.so
extension=mcrypt.so
extension=openssl.so
extension=pdf.so
extension=xml.so
extension=zip.so
extension=zlib.so
extension=mysqli.so
extension=exif.so
extension=mysql.so
extension=bcmath.so
extension=dom.so
extension=ftp.so
extension=hash.so
extension=iconv.so
extension=pdo.so
extension=pdo_sqlite.so
extension=phar.so
extension=posix.so
extension=simplexml.so
extension=sqlite3.so
extension=tokenizer.so
extension=xmlreader.so
extension=xmlwriter.so



Auszug aus Log:

Code:
1.
2013/06/02 12:50:36 [error] 70002#0: *145 FastCGI sent in stderr: "PHP message: PHP Warning:  imagejpeg(): Filename cannot be empty in /var/www/vhost2/dust-fighter.de/thumbgen.php on line 20" while reading response header from upstream, client: 108.162.229.37, server: db.faceblogger.de, request: "GET /thumbgen.php?img=gallery/images/6_140.jpg HTTP/1.1", upstream: "fastcgi://unix:/var/run/php-fpm.sock:", host: "db.faceblogger.de", referrer: "http://db.faceblogger.de/gallery/?action=show&id=6"


Aus rechtilichen Gründen habe ich das standard Teplate aktiviert. Da das gekaufte Template nur für die Seite www.dustfighter.de Gültigkeit hat

Vielleicht hat jemand eine Idee woran es liegen könnte?

Wäre dankbar für jeden Lösungsansatz.

MfG Apollo

Sort:     printview


To start or to reply to a topic you have to be registered and logged in!

register now
login
All Showrooms

n/a
by: n/a
Views: n/a
 
Posts: n/a
 
Last post by: n/a
 
 
 
All Topics
DZCP Installation schläg... | 6
Fragen zum DZCP
DZCP Installation schlägt dauernt fehl
Author: astk15
Last post: Lanacs
Board: Fragen zum DZCP
Catagorie: DZCP - Alles zu dem CMS DZCP
11.04.2018 - 18:28
Besucherzähler zählt jed... | 3
Fragen
Besucherzähler zählt jeden Homepage klick nicht jeden besucher
Author: astk15
Last post: Daeem
Board: Fragen
Catagorie: Allgemein - Alles Allgemein
05.04.2018 - 19:11
DZCP 1.6 Template | 29
DZCP Template Support
DZCP 1.6 Template
Author: exxs
Last post: Daeem
Board: DZCP Template Support
Catagorie: DZCP - Alles zu dem CMS DZCP
30.03.2018 - 13:06
DZCP und GT_DZCP_v1.5.5.... | 4
DZCP Template Support
DZCP und GT_DZCP_v1.5.5.2_10
Author: astk15
Last post: Daeem
Board: DZCP Template Support
Catagorie: DZCP - Alles zu dem CMS DZCP
16.03.2018 - 19:37
möcht mich mal vorstelle... | 2
Spambereich
möcht mich mal vorstellen
Author: Gyzmou
Last post: Gyzmou
Board: Spambereich
Catagorie: Allgemein - Alles Allgemein
20.12.2017 - 07:51
Fehler in der Mysql Date... | 1
DZCP Template Support
Fehler in der Mysql Datenbank?
Author: faine1312
Last post: Daeem
Board: DZCP Template Support
Catagorie: DZCP - Alles zu dem CMS DZCP
13.10.2017 - 18:11
Latest registered users | 0
DZCP Template Support
Latest registered users
Author: demiro86
Last post: demiro86
Board: DZCP Template Support
Catagorie: DZCP - Alles zu dem CMS DZCP
25.06.2017 - 19:32
All News
Wahnsinns kostenloses Clan...
Date: 29.07.2013     Comments: 5
Ein neues DZCP Free Templa...
Date: 26.01.2013     Comments: 7
Fröhliche Weihnachten und ...
Date: 24.12.2012     Comments: 5
Ein neues DZCP Free Templa...
Date: 15.10.2012     Comments: 4
Gewinne ein Headset im wer...
Date: 11.10.2012     Comments: 2
 
 
 
 
FORUM
IMAGEHOSTER
SUPPORT
LIZENZEN
 
 
 
 
3194
3854
3278788
34410
0
40
4
248931