- Posts: 73
- Thank you received: 2
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 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
If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your
configuration report
when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.
K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.
K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.
Question where has the file kunena.parser.php gone
- Groenteman
-
Topic Author
- Offline
- Junior Member
-
Less
More
13 years 10 months ago #127155
by Groenteman
where has the file kunena.parser.php gone was created by Groenteman
First of all ... thank you so much for this Kunena 2.0 version.
Second .. I can't find the kunena.parser.php
Where has it gone?
Thanks in advance,
Groenteman
Second .. I can't find the kunena.parser.php
Where has it gone?
Thanks in advance,
Groenteman
Please Log in or Create an account to join the conversation.
13 years 10 months ago #127161
by 810
Replied by 810 on topic where has the file kunena.parser.php gone
What do you want to add or change.
Please Log in or Create an account to join the conversation.
- Groenteman
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 73
- Thank you received: 2
13 years 10 months ago #127163
by Groenteman
Replied by Groenteman on topic where has the file kunena.parser.php gone
Hello 810,
I want videos to show in the forum and not the link
documentation.hwdmediashare.co.uk/wiki/A..._in_the_Kunena_forum
Thanks for the question ... but whats the answer
Groenteman
I want videos to show in the forum and not the link
documentation.hwdmediashare.co.uk/wiki/A..._in_the_Kunena_forum
Thanks for the question ... but whats the answer
Groenteman
Please Log in or Create an account to join the conversation.
13 years 9 months ago #127167
by 810
Replied by 810 on topic where has the file kunena.parser.php gone
everything is changed:
you can try here: \administrator\components\com_kunena\libraries\bbcode\bbcode.php
you can try here: \administrator\components\com_kunena\libraries\bbcode\bbcode.php
The following user(s) said Thank You: Groenteman
Please Log in or Create an account to join the conversation.
- Groenteman
-
Topic Author
- Offline
- Junior Member
-
Less
More
- Posts: 73
- Thank you received: 2
13 years 9 months ago #127302
by Groenteman
Replied by Groenteman on topic where has the file kunena.parser.php gone
Thanks for the reply 810
I added this to the bbcode.php
}
if ($config->autoembedyoutube)
{
$runinsert=false;
preg_match('/viewvideo\/(.*?)\//', $task->text, $match);
if (empty($match[1])) {
$sef=false;
preg_match('/video_id=(.*?)"/', $task->text, $match);
if (!empty($match[1])) {
$runinsert=true;
}
} else {
$sef=true;
$runinsert=true;
}
if ($runinsert) {
require_once(JPATH_SITE.DS.'administrator'.DS.'components'.DS.'com_hwdvideoshare'.DS.'helpers'.DS.'initialise.php');
hwdvsInitialise::coreRequire();
hwdvsInitialise::language();
hwdvsInitialise::template();
$db =& JFactory::getDBO();
$query = 'SELECT * FROM #__hwdvidsvideos WHERE id = '.(int)$match[1];
$db->SetQuery( $query );
$row = $db->loadObject();
$player = hwd_vs_tools::generateVideoPlayer($row);
}
// to add a return link under the player then comment out the next line
// $player.= "<div>".hwd_vs_tools::generateVideoLink($row->id, $row->title)."</div>";
if ($runinsert && $sef) {
$task->text = preg_replace('/<a href=(.*?)\/viewvideo\/(.*?)<\/a>/', $player, $task->text);
} else if ($runinsert && !$sef) {
$task->text = preg_replace('/<a href=(.*?)task=viewvideo(.*?)<\/a>/', $player, $task->text);
}
}
if ($config->autoembedebay && isset($params) && strstr($params, '.ebay.')) {
parse_str($params, $query);
I didn't get it working as in the previous Kunena version.
Could anyone give me a lead?
Thanks in advance,
Groenteman
I added this to the bbcode.php
}
if ($config->autoembedyoutube)
{
$runinsert=false;
preg_match('/viewvideo\/(.*?)\//', $task->text, $match);
if (empty($match[1])) {
$sef=false;
preg_match('/video_id=(.*?)"/', $task->text, $match);
if (!empty($match[1])) {
$runinsert=true;
}
} else {
$sef=true;
$runinsert=true;
}
if ($runinsert) {
require_once(JPATH_SITE.DS.'administrator'.DS.'components'.DS.'com_hwdvideoshare'.DS.'helpers'.DS.'initialise.php');
hwdvsInitialise::coreRequire();
hwdvsInitialise::language();
hwdvsInitialise::template();
$db =& JFactory::getDBO();
$query = 'SELECT * FROM #__hwdvidsvideos WHERE id = '.(int)$match[1];
$db->SetQuery( $query );
$row = $db->loadObject();
$player = hwd_vs_tools::generateVideoPlayer($row);
}
// to add a return link under the player then comment out the next line
// $player.= "<div>".hwd_vs_tools::generateVideoLink($row->id, $row->title)."</div>";
if ($runinsert && $sef) {
$task->text = preg_replace('/<a href=(.*?)\/viewvideo\/(.*?)<\/a>/', $player, $task->text);
} else if ($runinsert && !$sef) {
$task->text = preg_replace('/<a href=(.*?)task=viewvideo(.*?)<\/a>/', $player, $task->text);
}
}
if ($config->autoembedebay && isset($params) && strstr($params, '.ebay.')) {
parse_str($params, $query);
I didn't get it working as in the previous Kunena version.
Could anyone give me a lead?
Thanks in advance,
Groenteman
Please Log in or Create an account to join the conversation.
13 years 9 months ago #128871
by Wild Duck
Replied by Wild Duck on topic where has the file kunena.parser.php gone
Hello
First of all, thank you for your hard work and interest in helping the community.
I want to know where to change the config lines of size of youtube videos, previously located on kunena.parser.php
In my old K 1.7.2 version it worked very well, and was in components/com_kunena/lib/
I´m now with K 2.0.1, and can´t find bbcode.php on components\com_kunena\libraries\bbcode\
I´m trying to do like this:
www.kunena.org/forum/154-Miscellaneous-o...deo-on-youtube#86287
Thank you in advance.
First of all, thank you for your hard work and interest in helping the community.
I want to know where to change the config lines of size of youtube videos, previously located on kunena.parser.php
In my old K 1.7.2 version it worked very well, and was in components/com_kunena/lib/
I´m now with K 2.0.1, and can´t find bbcode.php on components\com_kunena\libraries\bbcode\
I´m trying to do like this:
www.kunena.org/forum/154-Miscellaneous-o...deo-on-youtube#86287
Thank you in advance.
Please Log in or Create an account to join the conversation.
Time to create page: 0.270 seconds