Search Results (Searched for: message)

11 May 2026 14:32
Does anyone have any ideas?
09 May 2026 10:20
I've tried everything, turned off the basic template, turned off the plugins, nothing helps. Is it possible that my server doesn't allow PHP sendemail, I have to use SMTP email. Although the emails arrive properly.
08 May 2026 20:30
On the forum, when a message is sent, it takes more than ten seconds. If I send a quick reply, it's instant. But if I send a normal reply, it takes a long time.
I tried the basic template. I tried turning off the cache in Joomla.


This message contains confidential information

Database collation check: The collation of your table fields are correct
 

Joomla! SEF: Enabled | Joomla! SEF rewrite: Enabled | FTP layer: Disabled |
   

This message contains confidential information
htaccess: Exists | PHP environment: Max execution time: 30 seconds | Max execution memory: 256M | Max file upload: 

Kunena menu details:

Warning: Spoiler!

Joomla default template details : YOOtheme | author: YOOtheme | version: 5.0.30 | creationdate: April 2026

Kunena default template details : NTS KFora | author: Nice Theme Store Team | version: 7.0.1 | creationdate: 2026-04-25

Kunena template params:

Warning: Spoiler!

Kunena version detailed: Kunena 7.0.4 | 2026-04-19 [ Git Repository ]
    | Kunena detailed configuration:

Warning: Spoiler!
| Kunena integration settings:
Warning: Spoiler!
| Joomla! detailed language files installed:
Warning: Spoiler!

Third-party components: None

Third-party SEF components: None

Plugins: None

Modules: Kunena Latest 6.2.0

02 May 2026 18:57 - 02 May 2026 19:04
I have digged a bit by working on the unminified version of bbcode plugin :

on line 31, i have changed it and added the width and height attibutes : 
Code:
attributesMap = { url: 'href', email: 'mailhref', quote: 'cite', list: 'listType', img: 'height', img: 'width' }; on line 613, i have added var tempImageSize = element.attributes.width;var imageSizes = tempImageSize.split("x");element.attributes.height = imageSizes[0];element.attributes.width = imageSizes[1];

To use it you need to have that in the message column #__kunena_messages_text 

 

It's not keeped when you create/edit your message 

There is a version 3.2.1 of SCeditor and i have updated it in developpement branch :  github.com/Kunena/Kunena-Forum/commit/e1...2451928c95f256e08f0f


that's fine - I will look if there are important changes.
Nevertheless, as SCEditor generates a width x height property there is the  need to change the lKunenaBBCode.php
to allow the 'x' letter  (allow /^\d*x\d*$  line 728), otherwise Kunena would ignore it
(also the change to attribute 'size=' would be useful, so SCEditor could read old message styles)
I had made a Pull Request with your cahnges on this : github.com/Kunena/Kunena-Forum/pull/10051 . I'am waiting your feedback on this
02 May 2026 14:41 - 02 May 2026 15:40

I don't understand why you want change this regex


because of the 2nd problem.
1. is the missing "translation" of image properties to bbcode
2. error when opening CKeditor if img has some attributes added within the tag using whitespace.
(disabling the bbcode does open the editor as it should be, so there must be a problem within bbcode)

for the first I'm ready with the insertation, but as there is the 2nd bug I cannot
test if the bbcode is correctly read and translated to html.

also I'm not shure if the CK bbcode plugin basicly will work with all the special addons like ebay, video etc.

In the demo it works : ckeditor.com/docs/ckeditor4/latest/examples/image.html , so it's probably the bbcode plugin which disable it when used 


that's correct. the original bbcode plugin disables the properties settings of images (see "tab.remove('basic') in the screenshot,
mainly because the there is no implenentation of properties to the bbcode or
the main problem, as each addition (style=  or direct width=) will be added using whitespace in the img tag, which causes problems.

In the moment I have done this:
in the ckeditor_config.js 
config.removePlugins = 'bbcode';  //disable the original bbcode plugin, because included in the big minified file
config.extraPlugins = 'bbcode2';  //just renaming the standalone bbcode to bbcode2, so I can easily edit it 

1st steps:
disabling the remove of properties dialog (see screenshot)
adding properties inclusion

I attach the bbcode2 plugin without any edition, (only the neccearry renaming to bbcode2 in the .add comand line 558) 
- also I packed the plugin-edited.js version with my first test correction for imgsize

basicly I found this statement to the original bbcode plugin.js

The BBCode plugin is more of a showcase plugin which presents how to make your own implementation for bbcode. This is not a full bbcode implementation but more of a jump start code. This plugin doesn't support width for images and it is a user responsibility to add it.

 

File Attachment:

File Name: bbcode2.zip
File Size:20.95 KB

There is a version 3.2.1 of SCeditor and i have updated it in developpement branch :  github.com/Kunena/Kunena-Forum/commit/e1...2451928c95f256e08f0f


that's fine - I will look if there are important changes.
Nevertheless, as SCEditor generates a width x height property there is the  need to change the lKunenaBBCode.php
to allow the 'x' letter  (allow /^\d*x\d*$  line 728), otherwise Kunena would ignore it
(also the change to attribute 'size=' would be useful, so SCEditor could read old message styles)
28 Apr 2026 20:27
Did-you have used this funtionnaliy before ? Can-you please enable the debug mode : www.kunena.org/docs/en/faq/debug-mode to get detailed error message
28 Apr 2026 18:19
Hi,
If I want to moderate two topics to merge them, I get this message:

Rendering Error in layout Topic/Moderate: Class "Kunena\Forum\Site\KunenaUserHelper" not found. Please enable debug mode for more information.

I am using the template NTS KSamurai. If I switch to the standard Kunena template, I do not get this message.
So I suspect it is caused by the Smurai template.
Is that correct or is it something I can solve by changing something in Kunena?

I am using Samurai 7.0.1 and Kunena 7.0.4
28 Apr 2026 14:14
as I have used the {img size=} tag just in the beginning and CKEditor is used here,
an admin will see that editing this message is not possible (not loading the message)
28 Apr 2026 14:09
could figure out the needed corrections for sceditor.
main aspect was to keep old messages (may be from update) in db also work.
old img tag was 
Code:
[img size=xxx]

so 1. edit the bbcode.js from sceditor   (media/kunena/core/js/sceditor/bbcode.js)

        line 566:  (add 'size' attribute name)   attribs = ' size=' + dom.width(element) + 'x' + dom.height(element)
  
          to recognize the new 'size' attribute add these after line 578
       //handle [img size=340x240]url[/img]
         
Code:
if(attrs.size) { match = attrs.size(split(/x/i); width = match[0]; height = match.length ===2 ? match[1] : '';

_important_ 2.   in libraries/src/BBCode/KunenaBBCode.php

         we must define the size connector  'x' to be allowed now (formerly only numbers  \d*)
        
        so line 728  must be edited to:   allow /^\d*x\d*$/[/b]']  

after this images will display in forum view and preview correctly, no matter if they come with
the new style from sceditor [img size=340x240] or from old kunena messages having [img size=340]

the big thing missing in SCEditor is, that the script has no possibility to edit img attributes
(if you activate an image and click the picture icon it does not load the properties of the selected image,
you have to delete and add new to change properties - or use the source code) 


I could find out anything about CKEditor because Kunena has cut out property settings
can anyone help please ???

you can try with the attached files: 

File Attachment:

File Name: newsceditorfiles.zip
File Size:35.69 KB


 
18 Apr 2026 11:37
Hello,

I have made some changes with this new PR : github.com/Kunena/Kunena-Forum/pull/10034

Now if you don't have any text in private tab, you haven't the pm box which are displayed

Can-you test it please ?
17 Apr 2026 11:16 - 17 Apr 2026 11:17
Hi, 
thanks again for your effort.
I tested the code changes and it still does not really fix my issue:

In your line 1616:
Code:
$private->body = Text::_('COM_KUNENA_POST_WITH_PRIVATE_ATTACHMENTS_SAVED_NO_ATTACHEMENTS');
makes no sense to me, because if I don't have a private message or a private attachment, I don't need to set the private message to "No private message has been set". Instead I would want the private message to be deleted. So if I for example change your line 1616 to 
Code:
unset($private->body); unset($private->attachments);
then it will be deleted because of the later 
Code:
if (!$private->body && !$private->attachments) {             try {                 $private->delete();
That would be the behaviour I would expect.
 
15 Apr 2026 21:58
Hello,

I have made an another Pull Request  with others changes :  github.com/Kunena/Kunena-Forum/pull/10032
14 Apr 2026 17:34 - 14 Apr 2026 18:14
thank you

Could be a javascript which is corrupted or could be an issue with the language file for Ckeditor which is a javascript file

the most confusing thing is, that CK Editor works well on all messages #2 and up of a topic,  but NOT on the first (opening) message.
(also as written, SK Editor works on ALL)

so what I'm interested in, from the kunena insiders, if there is some db setting in this new versions 6-7 for the opening (first) message,
which I may have missed during my import  (also because CK Editor works on the first message of the new created kunena 'welcome' message.

so what is the difference on calling the CK Editor on the top, first message  against loading on a following message?

as there are no problems on higher messages the JS files seems to be ok, but as all are minified it is hard to read

thank you

EDIT:

I found out some more details:
it is not the first or second or somthing message, it depends on images.
(as mostly in the first message there are images, I thought just of the first as reason)


it only happens (or better does not :)) if the image is inline, which means included by using a link with the URL tag,
images included as attachment are no problems.

so CK Editor must have a problem with images included the "old way" not using attachment


any ideas ???

 
14 Apr 2026 13:17
Hello,

I will later today to improve my PR, this message in private part is useless is you have something in the normal message part
14 Apr 2026 09:52
Hello,

thanks for your fast answer and pull request.
You are right, I have a public part and just want to delete the private part of the message.

If I just change the if in line 1588 like you provided, the message automatically fallbacks to "No private message has been set, only private attachments" because of line 1612: 
Code:
$private->body = Text::_('COM_KUNENA_POST_WITH_PRIVATE_ATTACHMENTS_SAVED');

Also even if I would unset the $private->body there,
Code:
if (!$private->body && !$private->attachments) {
in line 1621 would still not be true because even if I don't have private attachments, I still have an array $attachIds with 0 = "" which results in $private->attachments being 1.

However if I quickly try to unset both, $private->body and $private->attachments, the private part is deleted as I would expect.
I don't have a Github account at work but I try to find the time to do some more debugging in private and will then answer your pull request.

Thanks again for your help.
Displaying 16 - 30 out of 320 results.
Time to create page: 0.309 seconds