- Posts: 3
- Thank you received: 0
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
Question How does Kunena work?
So how does kunena interact with the database (mysql right)?
How are categories, and threads created and stored in the database?
Thanks for your time.
Please Log in or Create an account to join the conversation.
- grumblemarc
-
- Offline
- Elite Member
-
- Still making trouble
- Posts: 1107
- Thank you received: 3
We love stars on the Joomla Extension Directory .
Please Log in or Create an account to join the conversation.
The Kunena scripts are written in php, a scripting language that communicates with MySQL databases and with your web browser.
Think of the php scripts as sitting between your browser and the database, frantically moderating the conversation between you and the db. The scripts can create tables in the database, add data to the tables, delete data from the tables, control access to the database, and maybe most importantly do complex retrieval of data. Once it gets its hands on the data, the scripts package up the results in readable and attractive (maybe) form and send them back to you.
It's actually nothing you couldn't do yourself by hand if you had an infinite amount of time to respond to a forum message!
Since php and MySQL are open source you can find all sorts of resources to learn how they work on the web.
Please Log in or Create an account to join the conversation.
My question is how does Kunena interact with the database on the code level. What classes are being used? How does data move from the user's message to the database and how does that data get from the database to the web page?
As I stated before, i was unable to find any technical documentation that describes how things work. No flow diagrams, nothing.
As for the car example, first thing most people do is get a manual for their car that describes all of the parts and how they fit together. Once you understand the components of your car, then you can modify them.
Thanks
Please Log in or Create an account to join the conversation.
- grumblemarc
-
- Offline
- Elite Member
-
- Still making trouble
- Posts: 1107
- Thank you received: 3
We love stars on the Joomla Extension Directory .
Please Log in or Create an account to join the conversation.
Hello,My question is how does Kunena interact with the database on the code level. What classes are being used? How does data move from the user's message to the database and how does that data get from the database to the web page?
As I stated before, i was unable to find any technical documentation that describes how things work. No flow diagrams, nothing.
Thanks
For get or inserted datas in the database use this by example, it's a specific thing with joomla :
You can read this : docs.joomla.org/How_to_use_the_database_classes_in_your_script
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.