Dragonfly CMS - German Community  
Toggle Content
Toggle Content Navigation

Toggle Content Wer ist wo
 Bots:
1: Google > Forum 9.x
 Visitors:
1: Forum 9.x
2: Forum 9.x

Toggle Content Languages

Toggle Content Design
Each user can view the site with a different theme.
Themes marked with a * also change the forum look.

Toggle Content Downloads (Top)

Forum 9.x > > Dragonfly CMS 9.x > > Installation & Upgrades 9.x > > bildergalerie - bei manchen bildern e und x anzeige
bildergalerie - bei manchen bildern e und x anzeige
Fragen rund um die Installation und Upgrades

View previous topic :: View next topic  
Author Message
mrexecutive
Agent
Agent


Joined: Jan 20, 2006
Posts: 56
Location: Wien

PostPosted: 09.06.2006 22:54    Post subject: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

Hallo!

Bei meiner Coppermine Gallerie funktionieren einige Bilder nicht wenn ich sie aufrufen möchte. Anstatt des Bildes kommt dann nur ein e (edit) und darunter ein x (löschen) und das ganze in einem kleinen kasterl umrahmt. ich sehe aber kein bild! was muss ich denn da machen? album noch mal raufladen?
ausserdem meldet mir das system wenn ich einen batch hinzufügen will dass keine bilder in dem ausgewählten ordner vorhanden sind obwohl der ordner laut ftp programm sehr wohl bilder enthält und die rechte auf chmod 777 gesetzt sind.

Hier der Testlink: www.rk-unterach.org/in...t=0&pos=18


Danke

Frederik


mrexecutive's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
http://www.schueler-at-stift-kremsmuenster.at/PHP Version 4.3.10/MySQL Version 4.0.17-log/CMS Version 9.0.6.1
Back to top
View user's profile Visit poster's website
mskphi
Agent
Agent


Joined: Jul 15, 2004
Posts: 99

PostPosted: 03.07.2006 16:23    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

ich würd sagen, auf deiner seite ist so einiges in coppermine schief.

hast dir scheinbar dein cpg durch die misslungenen batch-uploads zerschossen. ich würd sowohl die relevanten db-tabellen leeren, als auch die fotos löschen und dann nochmal von vorne. erstmal mit wenigen bildern, bis du raus hast, wie das mit dem batch-upload funzt...

keine guten nachrichten? sorry... trotzdem viel erfolg.

(p.s.: ferndiagnose ohne ftp-zugang und ohne kenntnisse, wie du den upload gemacht hast, ist halt auch schwer...;))

_________________
mskphi @ jabber.ccc.de

mskphi's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache1.3.33/PHP 4.4.7/MySQL 4.0.27/CPG 9.1.2.1
Back to top
View user's profile Visit poster's website
Ido82
Investigator
Investigator


Joined: Jun 04, 2006
Posts: 7

PostPosted: 22.07.2006 08:42    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

Hallo, genau das selber Problem habe ich auch doch das ist bei mir schon seit beginn der installation... warum?


Ido82's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache 2.0 Handler / PHP Version 4.3.10 / MySQL 4.1.10a / CPG Dragonfly9.0.6.1
Back to top
View user's profile
Ido82
Investigator
Investigator


Joined: Jun 04, 2006
Posts: 7

PostPosted: 24.07.2006 20:28    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

kann es sein, dass es am server liegt?

oder wo kann ich als admin die bilder aktivieren bzw. freischalten, wenn ich folgende meldung bekomme:

Es wird nach der Bestätigung durch den Admin sichtbar sein.


Ido82's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache 2.0 Handler / PHP Version 4.3.10 / MySQL 4.1.10a / CPG Dragonfly9.0.6.1
Back to top
View user's profile
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 04.08.2006 22:05    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

Hallo leute

das problem habe ich fast einem jahr aber haute habe ich irgend wir hingekriegt ich aus der daten bank compermine tabellen gelöscht.

inder phymyadmin/SQL/SQL-Befehl(e) in Datenbank dein_db ausführen: folgende kode eingefügt:
Quote::
-- phpMyAdmin SQL Dump
-- version 2.6.4-pl3
-- www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 04. August 2006 um 22:12
-- Server Version: 4.0.23
-- PHP-Version: 4.4.1
--
-- Datenbank: `DeinDB`
--

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_albums`
--

CREATE TABLE `cms_cpg_albums` (
`aid` int(11) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`visibility` int(11) NOT NULL default '0',
`uploads` enum('YES','NO') NOT NULL default 'NO',
`comments` enum('YES','NO') NOT NULL default 'YES',
`votes` enum('YES','NO') NOT NULL default 'YES',
`pos` int(11) NOT NULL default '0',
`category` int(11) NOT NULL default '0',
`pic_count` int(11) NOT NULL default '0',
`thumb` int(11) NOT NULL default '0',
`last_addition` datetime NOT NULL default '0000-00-00 00:00:00',
`stat_uptodate` enum('YES','NO') NOT NULL default 'NO',
PRIMARY KEY (`aid`),
KEY `alb_category` (`category`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Daten für Tabelle `cms_cpg_albums`
--


-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_categories`
--

CREATE TABLE `cms_cpg_categories` (
`cid` int(11) NOT NULL auto_increment,
`owner_id` int(11) NOT NULL default '0',
`catname` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`pos` int(11) NOT NULL default '0',
`parent` int(11) NOT NULL default '0',
`subcat_count` int(11) NOT NULL default '0',
`alb_count` int(11) NOT NULL default '0',
`pic_count` int(11) NOT NULL default '0',
`stat_uptodate` enum('YES','NO') NOT NULL default 'NO',
PRIMARY KEY (`cid`),
KEY `cat_parent` (`parent`),
KEY `cat_pos` (`pos`),
KEY `cat_owner_id` (`owner_id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Daten für Tabelle `cms_cpg_categories`
--

INSERT INTO `cms_cpg_categories` VALUES (1, 0, 'User galleries', 'This category contains albums that belong to Coppermine

users.', 0, 0, 0, 0, 0, 'NO');

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_comments`
--

CREATE TABLE `cms_cpg_comments` (
`pid` mediumint(9) NOT NULL default '0',
`msg_id` mediumint(9) NOT NULL auto_increment,
`msg_author` varchar(25) NOT NULL default '',
`msg_body` text NOT NULL,
`msg_date` datetime NOT NULL default '0000-00-00 00:00:00',
`author_md5_id` varchar(32) NOT NULL default '',
`author_id` int(11) NOT NULL default '0',
`msg_raw_ip` tinytext,
`msg_hdr_ip` tinytext,
PRIMARY KEY (`msg_id`),
KEY `com_pic_id` (`pid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Daten für Tabelle `cms_cpg_comments`
--


-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_config`
--

CREATE TABLE `cms_cpg_config` (
`name` varchar(40) NOT NULL default '',
`value` varchar(255) NOT NULL default '',
PRIMARY KEY (`name`)
) TYPE=MyISAM;

--
-- Daten für Tabelle `cms_cpg_config`
--

INSERT INTO `cms_cpg_config` VALUES ('albums_per_page', '12');
INSERT INTO `cms_cpg_config` VALUES ('album_list_cols', '2');
INSERT INTO `cms_cpg_config` VALUES ('display_pic_info', '1');
INSERT INTO `cms_cpg_config` VALUES ('alb_list_thumb_size', '50');
INSERT INTO `cms_cpg_config` VALUES ('allowed_file_extensions', 'GIF/PNG/JPG/JPEG/TIF/TIFF');
INSERT INTO `cms_cpg_config` VALUES ('allowed_img_types', 'JPG/GIF/PNG/TIFF');
INSERT INTO `cms_cpg_config` VALUES ('allow_private_albums', '1');
INSERT INTO `cms_cpg_config` VALUES ('allow_user_registration', '0');
INSERT INTO `cms_cpg_config` VALUES ('allow_duplicate_emails_addr', '0');
INSERT INTO `cms_cpg_config` VALUES ('caption_in_thumbview', '1');
INSERT INTO `cms_cpg_config` VALUES ('charset', 'language file');
INSERT INTO `cms_cpg_config` VALUES ('cookie_name', 'cpg');
INSERT INTO `cms_cpg_config` VALUES ('cookie_path', '/ibili/');
INSERT INTO `cms_cpg_config` VALUES ('debug_mode', '1');
INSERT INTO `cms_cpg_config` VALUES ('default_sort_order', 'na');
INSERT INTO `cms_cpg_config` VALUES ('ecards_more_pic_target', 'www.sazkursu.com/ibili/');
INSERT INTO `cms_cpg_config` VALUES ('enable_smilies', '1');
INSERT INTO `cms_cpg_config` VALUES ('filter_bad_words', '0');
INSERT INTO `cms_cpg_config` VALUES ('forbiden_fname_char', '$/:*?"''<>|`');
INSERT INTO `cms_cpg_config` VALUES ('fullpath', 'modules/coppermine/albums/');
INSERT INTO `cms_cpg_config` VALUES ('gallery_admin_email', 'webmaster@sazkursu.com');
INSERT INTO `cms_cpg_config` VALUES ('gallery_description', 'Your online photo album');
INSERT INTO `cms_cpg_config` VALUES ('gallery_name', 'Coppermine Photo Gallery');
INSERT INTO `cms_cpg_config` VALUES ('im_options', '-antialias');
INSERT INTO `cms_cpg_config` VALUES ('impath', '');
INSERT INTO `cms_cpg_config` VALUES ('jpeg_qual', '80');
INSERT INTO `cms_cpg_config` VALUES ('keep_votes_time', '30');
INSERT INTO `cms_cpg_config` VALUES ('lang', 'english');
INSERT INTO `cms_cpg_config` VALUES ('main_page_layout',

'breadcrumb/catlist/alblist/lastalb,1/lastup,1/lastcom,1/topn,1/toprated,1/random,1/anycontent/favpics,3');
INSERT INTO `cms_cpg_config` VALUES ('main_table_width', '100%');
INSERT INTO `cms_cpg_config` VALUES ('make_intermediate', '1');
INSERT INTO `cms_cpg_config` VALUES ('max_com_lines', '10');
INSERT INTO `cms_cpg_config` VALUES ('max_com_size', '512');
INSERT INTO `cms_cpg_config` VALUES ('max_com_wlength', '38');
INSERT INTO `cms_cpg_config` VALUES ('max_img_desc_length', '512');
INSERT INTO `cms_cpg_config` VALUES ('max_tabs', '12');
INSERT INTO `cms_cpg_config` VALUES ('max_upl_size', '1024');
INSERT INTO `cms_cpg_config` VALUES ('max_upl_width_height', '2048');
INSERT INTO `cms_cpg_config` VALUES ('min_votes_for_rating', '1');
INSERT INTO `cms_cpg_config` VALUES ('normal_pfx', 'normal_');
INSERT INTO `cms_cpg_config` VALUES ('picture_table_width', '600');
INSERT INTO `cms_cpg_config` VALUES ('picture_width', '400');
INSERT INTO `cms_cpg_config` VALUES ('randpos_interval', '5');
INSERT INTO `cms_cpg_config` VALUES ('read_exif_data', '0');
INSERT INTO `cms_cpg_config` VALUES ('reg_requires_valid_email', '1');
INSERT INTO `cms_cpg_config` VALUES ('subcat_level', '2');
INSERT INTO `cms_cpg_config` VALUES ('theme', 'default');
INSERT INTO `cms_cpg_config` VALUES ('thumbcols', '4');
INSERT INTO `cms_cpg_config` VALUES ('thumbrows', '3');
INSERT INTO `cms_cpg_config` VALUES ('thumb_method', 'gd2');
INSERT INTO `cms_cpg_config` VALUES ('thumb_pfx', 'thumb_');
INSERT INTO `cms_cpg_config` VALUES ('thumb_width', '100');
INSERT INTO `cms_cpg_config` VALUES ('userpics', 'modules/coppermine/albums/userpics/');
INSERT INTO `cms_cpg_config` VALUES ('user_field1_name', '');
INSERT INTO `cms_cpg_config` VALUES ('user_field2_name', '');
INSERT INTO `cms_cpg_config` VALUES ('user_field3_name', '');
INSERT INTO `cms_cpg_config` VALUES ('user_field4_name', '');
INSERT INTO `cms_cpg_config` VALUES ('display_comment_count', '0');
INSERT INTO `cms_cpg_config` VALUES ('display_film_strip', '1');
INSERT INTO `cms_cpg_config` VALUES ('max_film_strip_items', '5');
INSERT INTO `cms_cpg_config` VALUES ('samename', '0');
INSERT INTO `cms_cpg_config` VALUES ('first_level', '1');
INSERT INTO `cms_cpg_config` VALUES ('show_private', '0');
INSERT INTO `cms_cpg_config` VALUES ('thumb_use', 'ht');
INSERT INTO `cms_cpg_config` VALUES ('comment_email_notification', '0');
INSERT INTO `cms_cpg_config` VALUES ('disable_flood_protection', '0');
INSERT INTO `cms_cpg_config` VALUES ('nice_titles', '1');
INSERT INTO `cms_cpg_config` VALUES ('seo_alts', '0');
INSERT INTO `cms_cpg_config` VALUES ('read_iptc_data', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_favorites', '1');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_filename', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_album_name', '1');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_file_size', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_dimensions', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_count_displayed', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_URL', '0');
INSERT INTO `cms_cpg_config` VALUES ('picinfo_display_URL_bookmark', '1');
INSERT INTO `cms_cpg_config` VALUES ('allow_anon_fullsize', '1');
INSERT INTO `cms_cpg_config` VALUES ('right_blocks', '0');
INSERT INTO `cms_cpg_config` VALUES ('avatar_private_album', '0');
INSERT INTO `cms_cpg_config` VALUES ('watermark', '0');
INSERT INTO `cms_cpg_config` VALUES ('fullsize_slideshow', '0');

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_exif`
--

CREATE TABLE `cms_cpg_exif` (
`filename` varchar(255) NOT NULL default '',
`exifData` text NOT NULL,
UNIQUE KEY `filename` (`filename`)
) TYPE=MyISAM;

--
-- Daten für Tabelle `cms_cpg_exif`
--


-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_installs`
--

CREATE TABLE `cms_cpg_installs` (
`cpg_id` tinyint(4) NOT NULL auto_increment,
`dirname` varchar(20) NOT NULL default '',
`prefix` varchar(20) NOT NULL default '',
`version` varchar(10) default NULL,
PRIMARY KEY (`cpg_id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Daten für Tabelle `cms_cpg_installs`
--

INSERT INTO `cms_cpg_installs` VALUES (1, 'coppermine', 'cms_cpg_', '1.3.1');

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_pictures`
--

CREATE TABLE `cms_cpg_pictures` (
`pid` int(11) NOT NULL auto_increment,
`aid` int(11) NOT NULL default '0',
`filepath` varchar(255) NOT NULL default '',
`filename` varchar(255) NOT NULL default '',
`filesize` int(11) NOT NULL default '0',
`total_filesize` int(11) NOT NULL default '0',
`pwidth` smallint(6) NOT NULL default '0',
`pheight` smallint(6) NOT NULL default '0',
`hits` int(11) NOT NULL default '0',
`mtime` timestamp(14) NOT NULL,
`ctime` int(11) NOT NULL default '0',
`owner_id` int(11) NOT NULL default '0',
`owner_name` varchar(40) NOT NULL default '',
`pic_rating` int(11) NOT NULL default '0',
`votes` int(11) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`caption` text NOT NULL,
`keywords` varchar(255) NOT NULL default '',
`approved` enum('YES','NO') NOT NULL default 'NO',
`user1` varchar(255) NOT NULL default '',
`user2` varchar(255) NOT NULL default '',
`user3` varchar(255) NOT NULL default '',
`user4` varchar(255) NOT NULL default '',
`url_prefix` tinyint(4) NOT NULL default '0',
`randpos` int(11) NOT NULL default '0',
`pic_raw_ip` tinytext,
`pic_hdr_ip` tinytext,
PRIMARY KEY (`pid`),
KEY `pic_hits` (`hits`),
KEY `pic_rate` (`pic_rating`),
KEY `aid_approved` (`aid`,`approved`),
KEY `randpos` (`randpos`),
KEY `pic_aid` (`aid`),
FULLTEXT KEY `search` (`title`,`caption`,`keywords`,`filename`,`user1`,`user2`,`user3`,`user4`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Daten für Tabelle `cms_cpg_pictures`
--


-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_usergroups`
--

CREATE TABLE `cms_cpg_usergroups` (
`group_id` int(11) NOT NULL auto_increment,
`group_name` varchar(255) NOT NULL default '',
`group_quota` int(11) NOT NULL default '0',
`has_admin_access` tinyint(4) NOT NULL default '0',
`can_rate_pictures` tinyint(4) NOT NULL default '0',
`can_send_ecards` tinyint(4) NOT NULL default '0',
`can_post_comments` tinyint(4) NOT NULL default '0',
`can_upload_pictures` tinyint(4) NOT NULL default '0',
`can_create_albums` tinyint(4) NOT NULL default '0',
`pub_upl_need_approval` tinyint(4) NOT NULL default '1',
`priv_upl_need_approval` tinyint(4) NOT NULL default '1',
PRIMARY KEY (`group_id`)
) TYPE=MyISAM AUTO_INCREMENT=5 ;

--
-- Daten für Tabelle `cms_cpg_usergroups`
--

INSERT INTO `cms_cpg_usergroups` VALUES (1, 'Administrators', 0, 1, 1, 1, 1, 1, 1, 0, 0);
INSERT INTO `cms_cpg_usergroups` VALUES (2, 'Registered', 1024, 0, 1, 1, 1, 1, 1, 1, 0);
INSERT INTO `cms_cpg_usergroups` VALUES (3, 'Anonymous', 0, 0, 1, 0, 0, 0, 0, 1, 1);
INSERT INTO `cms_cpg_usergroups` VALUES (4, 'Banned', 0, 0, 0, 0, 0, 0, 0, 1, 1);

-- --------------------------------------------------------

--
-- Tabellenstruktur für Tabelle `cms_cpg_votes`
--

CREATE TABLE `cms_cpg_votes` (
`pic_id` mediumint(9) NOT NULL default '0',
`user_md5_id` varchar(32) NOT NULL default '',
`vote_time` int(11) NOT NULL default '0',
PRIMARY KEY (`pic_id`,`user_md5_id`)
) TYPE=MyISAM;

--
-- Daten für Tabelle `cms_cpg_votes`
--

und funtioniertt perfeckt Very Happy


SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 04.08.2006 22:28    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

zu früh gefreut Sad es ist gegangen aber als ich mich aus und wieder eingelogt habe, habe wieder keine admin rechte und das compermine bild inder admin bereich sit auch weg?

so was blödes lamgsam habe ich kein gedult Twisted Evil


SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Klas
Moderator
Moderator


Joined: Apr 14, 2004
Posts: 293

PostPosted: 14.08.2006 13:38    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

SAZKURSU wrote:
... habe wieder keine admin rechte und das compermine bild inder admin bereich sit auch weg?...
Hier hilft meistens ein Install des Albums: Bei den modulen auf uninstall gehen und in der Adressleiste des Browsers das uninstall durch install erstzen. Die Bilder bleiben erhalten, es werden nur fehlende DB Einträge dazugeschrieben.
Probleme mit dem Vorschaubild hatte ich auch wenn in der Beschreibung ein " auftauchte (zB. hier: www.terralights.de/ter...p;pid=1354 ) ich hab dann das " durch ' ersetzt: In displayimage.php um Zeile 217
Code::
$pic_title = VIEW_FS . "\n ============== \n" . $pic_title; //added by gaugau
durch
Code::
$pic_title = VIEW_FS . "\n ============== \n" . str_replace('"', '\'', $pic_title); //added by gaugau //terralights.de
erstzen.

_________________
Bitte lies dies bevor du fragst.

Klas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 15.08.2006 23:15    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

Hallo Klass Danke für deine mit hilfe
aber beim modulen bereich steht kein uninstall (ich kann den modul nicht deaktivieren !

_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Klas
Moderator
Moderator


Joined: Apr 14, 2004
Posts: 293

PostPosted: 16.08.2006 13:35    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

einfach

admin.php?op=modules&install=coppermine

in der Adressszeile eingeben Wink

_________________
Bitte lies dies bevor du fragst.

Klas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 16.08.2006 21:38    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

heyyyy klas du bist echt klasse man Smile es geht jetzt ich hoffe das so immer bleibt Wink Graciassssss

_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Klas
Moderator
Moderator


Joined: Apr 14, 2004
Posts: 293

PostPosted: 18.08.2006 11:48    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

¡de nada! Wink

_________________
Bitte lies dies bevor du fragst.

Klas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
Ido82
Investigator
Investigator


Joined: Jun 04, 2006
Posts: 7

PostPosted: 20.10.2006 22:47    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

es ist schön, dass es bei einigen jetzt funkt. doch be mir klappt es immer noch nicht... meint ihr es liegt am server (Hoster)?


Ido82's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache 2.0 Handler / PHP Version 4.3.10 / MySQL 4.1.10a / CPG Dragonfly9.0.6.1
Back to top
View user's profile
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 29.01.2007 13:53    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

also bei mir hat es paar monate gut funktioniert aber taucht das blöde fehler wieder Sad wieder kleine x

bald werde ich das ganze system wechseln glaube ich,es nerft alles langsam ....

_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
begg
Agent
Agent


Joined: May 27, 2007
Posts: 50
Location: St. Gallen - Schweiz

PostPosted: 31.05.2007 13:23    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

in welchem format liegen denn die bilder vor? und allenfalls komprimiert oder roh-dateien?

_________________
I just overracted....

begg's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
freundeskreis-stgallen.ch / Vers. 5.2.5 / Mysql DB 5.0.27 (viàPHPMyadmin) / 9.2.1
Back to top
View user's profile Send e-mail Visit poster's website
SAZKURSU
Doppel-Null-Agent
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPosted: 01.06.2007 01:35    Post subject: Re: bildergalerie - bei manchen bildern e und x anzeige Reply with quote

begg also seit längerem zeit geht alles wieder normal Wink ich weiss auch nicht warum ab und zu mir dieser fehler passiert

aber jetz geht wieder Wink

_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic   Printer Friendly Page    Forum Index > > Installation & Upgrades 9.x
Page 1 of 1
All times are GMT + 1 Hour



Jump to:  


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum



Interactive software released under GNU GPL, Code Credits, Privacy Policy