- Posts: 15
- Thank you received: 0
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question Kunena 1.5.5 Mesaj İçerisindeki Resim Boyutlandırma Sorunu
- Firardaxman
-
Topic Author
- Offline
- Junior Member
-
Less
More
16 years 6 months ago #27309
by Firardaxman
Kunena 1.5.4 sürümünden Kunena 1.5.5 sürümüne güncelleştirme yaptığımda normalde mesaj alanına göre otomatik boyutlanan resimler sadece link olarak görünmekte siz sevgili Kunena yöneticilerinden soruna çözüm bulmalarını bekliyorum. Geçici çözümü ben yaptım. Kunena 1.5.4 sürümündeki components/com_kunena/lib/kunena.parser.php dosyasını kullandığımda sorun kalmıyor ama aynı dosya içerisinde Kunena 1.5.5 sürümünde bir çok değişiklik yapıldığından yeni sürümdeki soruna çözüm bulunmuş olarak kullanmak istiyorum.
Please Log in or Create an account to join the conversation.
16 years 6 months ago #27666
by oxijen
Replied by oxijen on topic Re:Kunena 1.5.5 Mesaj İçerisindeki Resim Boyutlandırma Sorunu
Aynı sorunu ben 1.5.4'te yaşıyorum. Foruma resim yüklendiğinde otomatik boyutlandırarak küçültüyor fakat orjinal boyut kadar forum temasında yer açıyor bu yüzden tema sağa sola genişlliyor dışarı taşıyor. Nasıl düzeltebilirim?
Please Log in or Create an account to join the conversation.
- Firardaxman
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 15
- Thank you received: 0
16 years 6 months ago #27701
by Firardaxman
Replied by Firardaxman on topic Re:Kunena 1.5.5 Mesaj İçerisindeki Resim Boyutlandırma Sorunu
Bende Kunena 1.5.4'de sorun yok. Kunena 1.5.5'de resimler sadece link olarak görünüyor. Resim hiç gözükmüyor. Sabırsızlıkla ilgilenmelerini bekliyorum.
Please Log in or Create an account to join the conversation.
16 years 5 months ago #29827
by teomanyak
Replied by teomanyak on topic Re:Kunena 1.5.5 Mesaj İçerisindeki Resim Boyutlandırma Sorunu
İlk resmi gösterip ikinci resmi göstermeme sorunu [IMG] diye göstermesi sorununun çözümü aşağıdakileri yapmanızla hallolur.
Şu dosyayı açın
/components/com_kunena/lib/kunena.parser.php lines: 345-348
Önceki Kod:
Code:
$file_ext = explode(',', $params->get('upload_extensions'));
preg_match('/\.([\w\d]+)$/', $between, $matches);
}
if (!in_array(strtolower($matches[1]), $file_ext)) break;
Bu şekilde değiştirin:
Code:
$file_ext = explode(',', $params->get('upload_extensions'));
}
preg_match('/\.([\w\d]+)$/', $between, $matches);
if (!in_array(strtolower($matches[1]), $file_ext)) break;
Şu dosyayı açın
/components/com_kunena/lib/kunena.parser.php lines: 345-348
Önceki Kod:
Code:
$file_ext = explode(',', $params->get('upload_extensions'));
preg_match('/\.([\w\d]+)$/', $between, $matches);
}
if (!in_array(strtolower($matches[1]), $file_ext)) break;
Bu şekilde değiştirin:
Code:
$file_ext = explode(',', $params->get('upload_extensions'));
}
preg_match('/\.([\w\d]+)$/', $between, $matches);
if (!in_array(strtolower($matches[1]), $file_ext)) break;
Please Log in or Create an account to join the conversation.
Time to create page: 0.266 seconds