Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

This is a locked category

Question [Merged topic] General testing of K 1.6 features

More
13 years 2 months ago - 13 years 2 months ago #271 by redneon
Replied by redneon on topic so what can kunena do?
Hi,
Does Kunena have the following features?

  1. Meets WCAG accessibility requirements.
  2. Ability to search using global categories, tags and keywords within the forum.


Thanks!
Michelle
Last edit: 13 years 2 months ago by redneon.

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #272 by IINoddyII
Replied by IINoddyII on topic images
How does it handle large images?

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #273 by IINoddyII
Replied by IINoddyII on topic Re: images
nice B)

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #274 by gladys.mi
Replied by gladys.mi on topic foro privado
Pruebas foro privado

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #275 by Pastor Lawrence
How do I connect Youtube videos

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #276 by naesse
and how do I post videos.?

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #277 by naesse
Attachments:

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago - 13 years 2 months ago #278 by kensikora
Replied by kensikora on topic multiple images in 1.6
Test




Attachments:
Last edit: 13 years 2 months ago by kensikora.

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #279 by kensikora
Replied by kensikora on topic test 2
Attachments:

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago - 13 years 2 months ago #280 by andi
Replied by andi on topic Re: test 2
Code:
<? # Create Google Sitemap for 4images # Created by Mai Minh ([email protected] http://www.vna2z.com) # Modified by Oliver van der Werf ([email protected] http://www.flash-webdesign.de) # Date: 28/11/2006 | 02.01.2007 # You can send ping to Google with this request: http://www.google.com/webmasters/sitemaps/ping?sitemap=URL_TO_YOUR_SITEMAP #--------------------------------- require("config.php"); $link=mysql_connect("$db_host","$db_user","$db_password"); mysql_select_db("$db_name") or die ("Cannot connect database!"); # 4images top page (with trailing slash) $gallery_url = 'http://www.picsforfree.de/'; # Priotity //select between 0.0 and 1.0 //0.0 identifies the lowest priority page(s) on your website //1.0 identifies the highest priority page(s) on your website $prio_img = 0.5; $prio_cat = 0.8; $prio_profile = 0.3; # Frequency //"always", "hourly", "daily", "weekly", "monthly", "yearly" or "never" $freq_img = 'yearly'; $freq_cat = 'daily'; $freq_profile = 'daily'; # Use Short URLs $shortURL = 1; // 0 or 1 # Print XML header xml_head(); # Print URLs $categories = mysql_query('SELECT cat_id FROM ' . $table_prefix . 'categories'); while ($category = mysql_fetch_array($categories)) { $catid = $category['cat_id']; if ($shortURL == 1) { $cat_url = $gallery_url.'cat'.$catid.'.htm'; }else { $cat_url = $gallery_url.'categories.php?cat_id='.$catid; } print_xml($cat_url,$prio_cat,'',$freq_cat); } $images = mysql_query('SELECT image_id,image_active,image_date FROM ' . $table_prefix . 'images '); while ($image = mysql_fetch_array($images)) { if ($image['image_active'] == 1) { $imgid = $image['image_id']; $date = $image['image_date']; $date = date("Y-m-d",$date)."T".date("H:i:s",$date)."+00:00"; if ($shortURL == 1) { $img_url = $gallery_url.'img'.$imgid.'.htm'; }else{ $img_url = $gallery_url.'details.php?image_id='.$imgid; } print_xml($img_url,$prio_img,$date,$freq_img); } } $profiles = mysql_query('SELECT user_id, user_lastaction FROM ' . $table_prefix . 'users WHERE user_id >= "1"'); while ($profile = mysql_fetch_array($profiles)) { $profileid = $profile['user_id']; $date = $profile['user_lastaction']; $date = date("Y-m-d",$date)."T".date("H:i:s",$date)."+00:00"; $profile_url = $gallery_url.'member.php?action=showprofile&amp;user_id='.$profileid; print_xml($profile_url,$prio_profile,$date,$freq_profile); } # Print XML footer xml_foot(); function xml_head() { $freq = 'daily'; $priority = '1.0'; $mod = date("Y-m-d")."T".date("H:i:s")."+00:00"; echo "<?xml version='1.0' encoding='UTF-8'?> <urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd\">"; } #----------------------------------------------- # xml_foot #----------------------------------------------- function xml_foot() { echo " </urlset>"; } #----------------------------------------------- # print_xml #----------------------------------------------- function print_xml($url,$priority,$lastmod,$changefreq) { $temp = "<url> <loc>$url</loc>"; $temp .= " <priority>$priority</priority>"; if ($lastmod != '') { $temp .=" <lastmod>$lastmod</lastmod>"; } $temp .= " <changefreq>$changefreq</changefreq> </url>"; echo $temp; } ?>

Unable to display Google Map.


Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test

Warning: Spoiler!
Attachments:
Last edit: 13 years 2 months ago by andi.

Please Log in or Create an account to join the conversation.

Time to create page: 0.606 seconds