Romulus

  •  ·  Premium
  • 30 friends
  • G

    32 followers
  • 7519 views
  • 2 votes
  • More
·
Added a discussion

Is it possible to write posts using LaTeX format with mathematical formulas within the UNA framework? If yes, what would be the best way to implement or support that?

  • 219
  • 2
·
Added a discussion

A form field element should have an id or name attribute

A form field element has neither an id nor a name attribute. This might prevent the browser from correctly autofilling the form.

  1. To fix this issue, add a unique id or name attribute to a form field. This is not strictly needed, but still recommended even if you have an autocomplete attribute on the same element.
  2. Affected Resources
  • 101 resources

Exemple in : modules/boonex/timeline/template/jump_to.html

This warning indicates a problem with certain form input fields lacking the necessary id or name attributes for proper browser handling, accessibility, and autofill. The warning is flagging a total of 101 such instances across the scanned resources, and the file modules/boonex/timeline/template/jump_to.html is provided as an example of where one or more of these instances occur.

Let’s look specifically at the example found within the jump_to.html file. The problematic HTML snippet is located in the  block:

<bx_if:show_list>
    <div class="__style_prefix__-jump-to-cnt">
        <bx_text:_bx_timeline_txt_or_jump_to />&nbsp;<bx_repeat:links><bx_if:show_link><a href="javascript:void(0)" onclick="__onclick__" title="__title__">__content__</a></bx_if:show_link><bx_if:show_text>__content__</bx_if:show_text><span class="__style_prefix__-jt-divider">, </span></bx_repeat:links>
    </div>
</bx_if:show_list>
<bx_if:show_calendar>
    <div class="__style_prefix__-jump-to-cnt flex items-center flatpickr">
        <bx_text:_bx_timeline_txt_or_jump_to />
        <div class="bx-form-input-wrapper bx-form-input-wrapper-datetime w-32 mx-2">
            <input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input />
        </div>
        <a class="bx-btn __style_prefix__-jump-to-switch" href="javascript:void(0)" onclick="__onclick__" data-toggle><i class="sys-icon calendar-alt"></i></a>
    </div>
</bx_if:show_calendar>

(Specifically, the  element within the second div)

Explanation of the Fix for this Example: Adding a unique id and a descriptive name attribute to this input field in jump_to.html is the standard and recommended way to address this specific instance of the issue. The name attribute is used for form submission, while the id attribute is important for accessibility and helps browsers and password managers correctly identify the field for autofill.

Proposed Code Change for the input in jump_to.html: Add id="jumpToDateInput" and name="jumpToDate" (or similar descriptive names) to the input tag:

        <bx_text:_bx_timeline_txt_or_jump_to />
        <div class="bx-form-input-wrapper bx-form-input-wrapper-datetime w-32 mx-2">
            <!-- Proposed change: Add id and name attributes -->
            <input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input id="jumpToDateInput" name="jumpToDate" />
        </div>
        <a class="bx-btn __style_prefix__-jump-to-switch" href="javascript:void(0)" onclick="__onclick__" data-toggle><i class="sys-icon calendar-alt"></i></a>

Applying this Specific Fix via SSH using sed (No Backup):

For advanced users who wish to apply this fix to this specific input field in jump_to.html directly via the command line without creating backup files, you can use the sed -i command.

First, connect to your server via SSH and navigate to the root directory of your UNA CMS installation. Replace /path/to/your/una/cms/root with the actual, absolute path on your server where UNA CMS is installed.

cd /path/to/your/una/

Once in the correct directory, use the following commands:

1. Command to Apply the Change (Add id and name) to the input in jump_to.html:

sed -i 's|<input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input />|<input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input id="jumpToDateInput" name="jumpToDate" />|g' modules/boonex/timeline/template/jump_to.html

2. Command to Revert the Change (Go back to Original) for the input in jump_to.html:

sed -i 's|<input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input id="jumpToDateInput" name="jumpToDate" />|<input class="bx-def-font-inputs bx-form-input-datetime __style_prefix__-jump-to-calendar" type="text" data-input />|g' modules/boonex/timeline/template/jump_to.html

WARNING: 

Using sed -i without a backup extension means that the original content is overwritten immediately. If the command fails or if you make a mistake, it can potentially corrupt or delete the file without an easy way to recover the previous version from the server itself (unless you have a separate system-level backup). Proceed with extreme caution.

NOTE: 

These commands provide a fix for a specific instance of the warning found in the jump_to.html file, which is presented as an example. They are for advanced users only. Do not use this code if you don’t know what you are doing. Addressing the other 100 instances of this warning across the codebase would require identifying them individually in their respective files and applying similar fixes.

  • 3880
·
Added a discussion

These functions have long since stopped working on modern browsers but are used in UNA 14.0.0. I don’t understand why UNA 14 should still include code that is not functional for the past year. What is the rationale or justification for UNA 14’s continued inclusion of code that has been non-functional in modern browsers for the past year? Can someone enlighten me?”

Chrome error:

[Deprecation] Listener added for a 'DOMNodeInserted' mutation event. Support for this event type has been removed, and this event will no longer be fired. See for more information.Understand this error

gzip_loader.php?file=bx_templ_js_ccde4f8d24c2357138b4d559b1894ace.js:1435 [Deprecation] Listener added for a 'DOMNodeInserted' mutation event. Support for this event type has been removed, and this event will no longer be fired. See https://chromestatus.com/feature/5083947249172480 for more information.

Mutation Events, including `DOMSubtreeModified`, `DOMNodeInserted`, `DOMNodeRemoved`, `DOMNodeRemovedFromDocument`, `DOMNodeInsertedIntoDocument`, and `DOMCharacterDataModified`, are quite bad for page performance, and also significantly increase the complexity of adding new features to the Web. These APIs were deprecated from the spec (

iconSpec: UI Events ) in 2011, and were replaced (in 2012) by the much better-behaved Mutation Observer API. Usage of the obsolete Mutation Events must now be migrated to Mutation Observer.

Mutation event support will be disabled by default starting in Chrome 127, around July 30, 2024. Code should be migrated before that date to avoid site breakage. If more time is needed, there are a few options:

- The Mutation Events Deprecation trial (https://developer.chrome.com/origintrials/#/view_trial/919297273937002497) can be used to re-enable the feature for a limited time on a given site. This can be used through Chrome 134, ending March 25, 2025.

- A MutationEventsEnabled enterprise policy (https://chromeenterprise.google/policies/#MutationEventsEnabled) can also be used for the same purpose, also through Chrome 134.

Please see this blog post for more detail:

https://developer.chrome.com/blog/mutation-events-deprecation

Report bugs here: https://issues.chromium.org/new?component=1456718&template=1948649

  • 3631
·
Added a product

CUSTOM LANGUAGE PACK FOR UNA CMS – AI TRANSLATION

Enhance your UNA site with custom AI-generated translations.

Powered by Coozila! AGI – Hypatia AI, we provide language packs for UNA CMS in virtually any language you need.

FEATURES

  • Custom Language Packs: Complete AI-generated translation of your UNA CMS interface in the desired language.
  • Advanced AI Technology: Translations created by Coozila! AGI – Hypatia AI for accurate and consistent results.
  • Supports Most Languages: We can translate into almost any language. Before placing an order, please contact us via chat to confirm if your desired language is available.
  • Full App Coverage: Translates all site interface elements buttons, menus, alerts, forms, titles including both free and paid UNA apps.
  • Guaranteed Compatibility: Fully compatible with the latest UNA CMS versions.

HOW IT WORKS

  1. Contact Us First: Use the chat option to check if your required language is currently available.
  2. Order Confirmation: Once confirmed, place your order for the custom language pack.
  3. AI Translation Process: The translation is automatically generated by Coozila! AGI – Hypatia AI.
  4. Delivery: You will receive the completed language pack, ready for installation, within 7 days after payment.

UPDATES AND MAINTENANCE

Updates for your language pack can be provided either monthly or annually, based on your chosen update plan.

We will ensure your custom translation remains fully compatible with the latest UNA CMS versions both major and minor updates (v14.X.X, v15.X.X, etc.).

Contact us via chat to arrange your preferred update option.

INSTALLATION

  • Manual Installation:
  • Upload the provided language folder to your server:
  • /una/modules/coozila/[language]/
  • Activate it in UNA Studio.

IMPORTANT NOTES

  • Reviews: This product includes AI-generated translations only. Human reviews are not available in any language.
  • Language Availability: Some languages may not currently be supported. Please ask via chat before ordering to confirm availability.

💬 SUPPORT

For any questions, assistance, or custom translation requests:

  • 4207
·
Added a product

ROMANIAN LANGUAGE PACK FOR UNA CMS

PROFESSIONAL FULL INTERFACE TRANSLATION – CORE, FREE & PRO APPS

Elevate your UNA website with a complete Romanian translation powered by Coozila! AGI – Hypatia AI, reviewed by a human for accuracy and fluency.

FEATURES:

  • Complete Coverage: Translates all interface elements – buttons, menus, alerts, forms, titles – across all Core, Free, and Pro Apps.
  • Built on Official UNA Standards: Based on the original Russian module by UNA Inc., fully localized in natural Romanian.
  • AI-Powered & Human-Refined: Generated with Coozila! AGI – Hypatia AI, then carefully reviewed by a human for clarity and correctness.
  • Up-to-Date: Maintained regularly and updated with each major UNA release (e.g., v14, v15).
  • Tested & Trusted: Fully tested and verified to work flawlessly on UNA 14.0.0.

ANNUAL PACKAGE UPDATES

  • We regularly update this package to ensure compatibility with the latest major UNA CMS versions, improving performance and fixing any bugs. Stay tuned for annual updates!
  • Up-to-Date: Maintained regularly and updated with each major UNA release (e.g., v14, v15).

INSTALLATION:

For manual instalation:

  1. Download and upload to your server
  2. Create folder: una/modules/coozila
  3. Place the Romanian folder inside: una/modules/coozila/romanian
  4. Activate it in the UNA studio.

For automatic installation:

Download and activate the Romanian translation application directly from the studio.

💬 NEED HELP?

Contact us for support: lab@coozila.com or Contact Coozila! - We're here to help you make your platform speak Romanian!

ARE YOU AN NGO?

Contact us and we’ll provide any of our products for free and offer support or installation services at 50% off! Within the limits of our available time!

VERSION SUPPORT MATRIX

+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA SUPPORT  | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 14 LTS   |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 15       |      |      |      |      |      |      || 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 16 LTS   |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 17       |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 18 LTS   |      |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 19       |      |      |      |      |      |      |      |      |      |       | 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+

Legend:

  • ✅ = Active Support Period (Bug Fixes + Security Patches)
  • ❌ = Expired Support Period (No bug fixes or security patches provided)
  • 🟦 = Release Date (The official release date of the version)
  • 🔴 = Security Support (The period when security patches are available)

Note:

The higher versions of UNA 14 are currently planned and are not yet available. The timeline and features for these versions are estimates and may be subject to changes, so the planning is illustrative.

SOFTWARE TESTAMENT

In the event that I am unable to respond to support requests and it is concluded that I have abandoned the project, I hereby declare the following:

  • Open-Source Transition: My application shall be released as open-source software under the MIT License.
  • Authorization: I grant UNA Inc. the authority to publish and maintain the application under the MIT License, ensuring its continued availability and development by the community.
  • Abandonment Clause: If I am unresponsive to support inquiries for a continuous period of three (3) months and no longer actively maintain the project, it shall be considered abandoned and transitioned to open-source status as outlined above.
  • Free Access Provision: Upon determination of project abandonment, the application's sale price shall be adjusted to free, allowing anyone to download it without charge.
  • GitHub Repository Access: I will provide UNA Inc. with access to a private fork of the application's GitHub repository. In the event of project abandonment, UNA Inc. is authorized to make this repository public to facilitate community development and maintenance. If UNA Inc. is unable to obtain access to my GitHub repository, they are permitted to create a new repository using the application files available from the UNA Market.
  • Account Status: My account shall remain active and not be suspended solely due to the project's transition to open-source status, ensuring continued access for users and developers.
  • Scope of Application: These clauses apply to any application I have published on the UNA Market that has achieved at least one sale. For applications without any sales, UNA Inc. is authorized to remove them from the Market at their discretion.

PACHET DE LIMBĂ ROMÂNĂ PENTRU UNA CMS

TRADUCERE COMPLETĂ PROFESIONALĂ – APPLICAȚII CORE, GRATUITE ȘI PRO

Transformă-ți platforma UNA într-o experiență complet localizată pentru publicul din România, cu ajutorul Coozila! AGI – Hypatia AI, urmat de o revizie umană profesională.

CARACTERISTICI:

  • Acoperire Completă: Traduce toate elementele interfeței – butoane, meniuri, alerte, formulare, titluri – pentru toate aplicațiile UNA.
  • Bazată pe Standardul Oficial UNA: Inspirată de modulul original Russian de la UNA Inc., localizată complet în română nativă.
  • Inteligență Artificială & Control Uman: Generată cu Coozila! AGI – Hypatia AI și revizuită manual pentru acuratețe și coerență.
  • Actualizată Constant: Sincronizată cu toate versiunile majore UNA (ex: v14, v15).
  • Testată și Confirmată: Funcționează perfect pe UNA 14.0.0.

ACTUALIZĂRI ANUALE ALE PACCHETULUI

  • Actualizăm regulat acest pachet pentru a asigura compatibilitatea cu cele mai recente versiuni ale UNA CMS, îmbunătățind performanța și corectând eventualele erori. Rămâi conectat pentru actualizările anuale!
  • La zi: Menținut și actualizat regulat cu fiecare versiune majoră a UNA (de ex., v14, v15).

INSTALARE :

  1. Pentru instalare manuală:Creează folderul: una/modules/coozila
  2. Plasează folderul romanian în: una/modules/coozila/romanian
  3. Activează traducerea din panoul de administrare UNA.

Pentru instalare automată:

Descarcă și activează direct din studio aplicația de traducere în română.

💬 SUPORT TEHNIC:

Contactează-ne pentru suport: lab@coozila.com sau Contact Coozila! - Răspundem cu plăcere!

EȘTI UN ONG?

Contactează-ne și îți vom oferi orice produs al nostru gratuit, iar serviciile de asistență sau instalare, în limita timpului disponibil, la 50% reducere!

MATRICEA SUPORTULUI VERSIUNILOR

+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA SUPPORT  | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 14 LTS   |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 15       |      |      |      |      |      |      || 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 16 LTS   |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 17       |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 18 LTS   |      |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 19       |      |      |      |      |      |      |      |      |      |       | 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+

Legendă:

  • ✅ = Perioadă de Suport Activ (Corecturi de erori + Patch-uri de securitate)
  • ❌ = Perioadă de Suport Expirată (Nu se oferă corecturi de erori sau patch-uri de securitate)
  • 🟦 = Data lansării (Data oficială de lansare a versiunii)
  • 🔴 = Suport de Securitate (Perioada în care sunt disponibile patch-uri de securitate)

Notă:

Versiunile superioare de UNA 14 sunt momentan planificate și nu sunt încă disponibile. Cronologia și caracteristicile acestor versiuni sunt estimative și pot suferi modificări, deci planificarea este ilustrativă.

SOFTWARE TESTAMENT

În cazul în care nu mai pot răspunde solicitărilor de suport și se ajunge la concluzia că am abandonat proiectul, declar următoarele:

  • Trecerea la Open-Source: Aplicația mea va fi publicată ca software open-source sub Licența MIT.
  • Autorizare: Acord companiei UNA Inc. autoritatea de a publica și întreține aplicația sub Licența MIT, asigurând astfel disponibilitatea și dezvoltarea ei continuă de către comunitate.
  • Clauza de Abandon: Dacă nu răspund solicitărilor de suport timp de trei (3) luni consecutive și nu mai întrețin activ proiectul, acesta va fi considerat abandonat și va fi trecut la statutul de open-source, conform celor de mai sus.
  • Acces Gratuit: După constatarea abandonului, prețul aplicației va fi ajustat la „gratuit”, permițând oricui să o descarce fără cost.
  • Acces la Repository GitHub: Voi oferi companiei UNA Inc. acces la un fork privat al repository-ului GitHub al aplicației. În caz de abandon, UNA Inc. este autorizată să facă acest repository public pentru a facilita dezvoltarea și mentenanța comunitară. Dacă UNA Inc. nu poate obține acces la repository-ul meu GitHub, are permisiunea să creeze un nou repository folosind fișierele aplicației disponibile în UNA Market.
  • Statusul Contului: Contul meu va rămâne activ și nu va fi suspendat exclusiv din cauza tranziției proiectului la open-source, asigurând astfel accesul continuu pentru utilizatori și dezvoltatori.
  • Domeniul de Aplicare: Aceste clauze se aplică oricărei aplicații publicate de mine în UNA Market care a realizat cel puțin o vânzare. Pentru aplicațiile fără vânzări, UNA Inc. este autorizată să le elimine din Market la discreția lor.
  • 4178
·
Added a product

ITALIAN LANGUAGE PACK FOR UNA CMS

PROFESSIONAL FULL INTERFACE TRANSLATION – CORE, FREE & PRO APPS

Elevate your UNA website with a complete Italian translation powered by Coozila! AGI – Hypatia AI, reviewed by a human for accuracy and fluency.

FEATURES:

  • Complete Coverage: Translates all interface elements – buttons, menus, alerts, forms, titles – across all Core, Free, and Pro Apps.
  • Built on Official UNA Standards: Based on the original Russian module by UNA Inc., fully localized in natural Italian.
  • AI-Powered & Human-Refined: Generated with Coozila! AGI – Hypatia AI, then carefully reviewed by a human for clarity and correctness.
  • Tested & Trusted: Fully tested and verified to work flawlessly on UNA 14.0.0.

ANNUAL PACKAGE UPDATES

  • We regularly update this package to ensure compatibility with the latest UNA CMS versions, improving performance and fixing any bugs. Stay tuned for annual updates!
  • Up-to-Date: Maintained regularly and updated with each major UNA release (e.g., v14, v15).

INSTALLATION:

For manual instalation:

  1. Download and upload to your server
  2. Create folder: una/modules/coozila
  3. Place the Italian folder inside: una/modules/coozila/italian
  4. Activate it in the UNA studio.

For automatic installation:

Download and activate the Italian translation application directly from the studio.

💬 NEED HELP?

Contact us for support: lab@coozila.com or Contact Coozila! - We're here to help you make your platform speak Italian!

ARE YOU AN NGO?

Contact us and we’ll provide any of our products for free and offer support or installation services at 50% off! Within the limits of our available time!

VERSION SUPPORT MATRIX

+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA SUPPORT  | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 14 LTS   |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 15       |      |      |      |      |      |      || 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 16 LTS   |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 17       |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 18 LTS   |      |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 19       |      |      |      |      |      |      |      |      |      |       | 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+

Legend:

  • ✅ = Active Support Period (Bug Fixes + Security Patches)
  • ❌ = Expired Support Period (No bug fixes or security patches provided)
  • 🟦 = Release Date (The official release date of the version)
  • 🔴 = Security Support (The period when security patches are available)

Note:

The higher versions of UNA 14 are currently planned and are not yet available. The timeline and features for these versions are estimates and may be subject to changes, so the planning is illustrative.

SOFTWARE TESTAMENT

In the event that I am unable to respond to support requests and it is concluded that I have abandoned the project, I hereby declare the following:

  • Open-Source Transition: My application shall be released as open-source software under the MIT License.
  • Authorization: I grant UNA Inc. the authority to publish and maintain the application under the MIT License, ensuring its continued availability and development by the community.
  • Abandonment Clause: If I am unresponsive to support inquiries for a continuous period of three (3) months and no longer actively maintain the project, it shall be considered abandoned and transitioned to open-source status as outlined above.
  • Free Access Provision: Upon determination of project abandonment, the application's sale price shall be adjusted to free, allowing anyone to download it without charge.
  • GitHub Repository Access: I will provide UNA Inc. with access to a private fork of the application's GitHub repository. In the event of project abandonment, UNA Inc. is authorized to make this repository public to facilitate community development and maintenance. If UNA Inc. is unable to obtain access to my GitHub repository, they are permitted to create a new repository using the application files available from the UNA Market.
  • Account Status: My account shall remain active and not be suspended solely due to the project's transition to open-source status, ensuring continued access for users and developers.
  • Scope of Application: These clauses apply to any application I have published on the UNA Market that has achieved at least one sale. For applications without any sales, UNA Inc. is authorized to remove them from the Market at their discretion.


PACCHETTO LINGUA ITALIANA PER UNA CMS

TRADUZIONE COMPLETA E PROFESSIONALE – APPLICAZIONI CORE, GRATUITE E PRO

Trasforma la tua piattaforma UNA in un'esperienza completamente localizzata per il pubblico italiano, grazie a Coozila! AGI – Hypatia AI, seguita da una revisione umana professionale.

CARATTERISTICHE:

  • Copertura Completa: Traduce tutti gli elementi dell’interfaccia – pulsanti, menu, avvisi, moduli, titoli – per tutte le applicazioni UNA.
  • Basata sullo Standard Ufficiale UNA: Ispirata al modulo originale russo di UNA Inc., completamente localizzata in italiano nativo.
  • Intelligenza Artificiale & Controllo Umano: Generata con Coozila! AGI – Hypatia AI e revisionata manualmente per garantire precisione e coerenza.
  • Testata e Confermata: Funziona perfettamente con UNA 14.0.0.

AGGIORNAMENTI ANNUI DEL PACCHETTO

  • Aggiorniamo regolarmente questo pacchetto per garantire la compatibilità con le ultime versioni di UNA CMS, migliorando le prestazioni e risolvendo eventuali bug. Resta sintonizzato per gli aggiornamenti annui!
  • Manteniamo regolarmente il pacchetto e lo aggiorniamo con ogni nuova versione importante di UNA, incluse le versioni beta (es: v14, v15).

📅 PERIODO DI PROVA GRATUITO DI 15 GIORNI

Approfitta di un periodo di prova gratuito di 15 giorni! Il download è completamente gratuito per esplorare tutte le funzionalità del nostro prodotto.

INSTALLAZIONE:

Per installazione manuale:

  1. Crea la cartella: una/modules/coozila
  2. Inserisci la cartella italian in: una/modules/coozila/italian
  3. Attiva la traduzione dal pannello di amministrazione UNA.

Per installazione automatica:

Scarica e attiva direttamente dallo Studio l'applicazione di traduzione in italiano.

💬 SUPPORTO TECNICO:

Contattaci per assistenza: lab@coozila.com oppure Contact Coozila! – Saremo felici di aiutarti!

SEI UN’ORGANIZZAZIONE NO-PROFIT?

Contattaci e ti forniremo gratuitamente qualsiasi nostro prodotto, con i servizi di assistenza o installazione al 50% di sconto (nei limiti della disponibilità).

MATRICE DI SUPPORTO DELLE VERSIONI

+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA SUPPORT  | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | 2026 | 2027 | 2028 | 2029 | 2030 | 2031 | 2032 | 2033 | 2034 | 2035 | 2036 |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 14 LTS   |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 15       |      |      |      |      |      |      || 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 16 LTS   |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  | ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 17       |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 18 LTS   |      |      |      |      |      |      |      |      |      |  🟦  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ✅  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+
| UNA 19       |      |      |      |      |      |      |      |      |      |       | 🟦  |  ✅  |  ✅  |  🔴  |  🔴  |  ❌  |  ❌  |
+--------------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+------+

Legenda:

✅ = Periodo di Supporto Attivo (Correzioni di bug + Patch di sicurezza)

❌ = Periodo di Supporto Scaduto (Non vengono fornite correzioni di bug o patch di sicurezza)

🟦 = Data di rilascio (Data ufficiale di rilascio della versione)

🔴 = Supporto Sicurezza (Periodo in cui sono disponibili patch di sicurezza)

Nota:

Le versioni successive a UNA 14 sono attualmente in fase di pianificazione e non sono ancora disponibili. La cronologia e le funzionalità di queste versioni sono stimate e soggette a modifiche, pertanto la pianificazione è illustrativa.

TESTAMENTO SOFTWARE

Nel caso in cui non possa più rispondere alle richieste di supporto e si giunga alla conclusione che il progetto è stato abbandonato, dichiaro quanto segue:

  • Transizione all'Open-Source: La mia applicazione sarà pubblicata come software open-source sotto licenza MIT.
  • Autorizzazione: Concedo alla società UNA Inc. l’autorità di pubblicare e mantenere l’applicazione sotto licenza MIT, garantendone così la disponibilità e lo sviluppo continuo da parte della comunità.
  • Clausola di Abbandono: Se non rispondo alle richieste di supporto per un periodo consecutivo di tre (3) mesi e non mantengo attivamente il progetto, questo sarà considerato abbandonato e verrà convertito in open-source, secondo quanto sopra.
  • Accesso Gratuito: Dopo la constatazione dell’abbandono, il prezzo dell’applicazione sarà modificato a “gratuito”, consentendo a chiunque di scaricarla senza costi.
  • Accesso al Repository GitHub: Fornirò a UNA Inc. l’accesso a un fork privato del repository GitHub dell’applicazione. In caso di abbandono, UNA Inc. è autorizzata a rendere pubblico tale repository per facilitare lo sviluppo e la manutenzione da parte della comunità. Se UNA Inc. non riesce ad accedere al mio repository GitHub, è autorizzata a crearne uno nuovo utilizzando i file disponibili nel UNA Market.
  • Stato dell'Account: Il mio account rimarrà attivo e non sarà sospeso esclusivamente a causa della transizione del progetto a open-source, garantendo così l’accesso continuo per utenti e sviluppatori.
  • Ambito di Applicazione: Queste clausole si applicano a qualsiasi applicazione pubblicata da me su UNA Market che abbia effettuato almeno una vendita. Per le applicazioni senza vendite, UNA Inc. è autorizzata a rimuoverle dal Market a sua discrezione.

  • 4089
·
Added a discussion

What is happening? The icons of the products launched this month are getting deformed.

Is UNA moving forward or backwards?

In the image, the product icons on UNA Market were displayed as perfect circles for the products posted last month. However, in the current version, when using the same icon file for products posted this month, they appear stretched and oval-shaped. It seems like a UI inconsistency introduced with the latest updates.

What's even more interesting is that on my test site it's the other way around the previously posted products have become oval and today's ones are round.. 🎅

It seems that the development team is undecided whether to make the icons oval or round. Will you let us know when you decide?

  • 3811
·
Added a product

Professional UNA CMS Installation & Server Setup

Looking to launch a powerful online community or business platform using the flexible UNA CMS? Setting up the CMS, configuring server components, and integrating essential modules can be complex. Let us handle the technical side with our professional, one-time installation service.

Service Overview

This is an independent service, not affiliated with UNA Inc. Our work focuses on the installation of the UNA CMS on your self-hosted servers and related services.

Client Responsibility for Licenses:

You are responsible for acquiring all necessary software licenses (UNA CMS, modules, etc.) directly from their respective vendors. Our service covers installation and configuration only.

What’s Included in the Single Server Installation Package

Our standard package provides a solid, secure technical foundation for one server, configured to your specifications.

Data Migration, Backup & Recovery: Full migration, backup, and recovery for up to 5 TB of data included. For larger volumes, please request a custom offer.

UNA Core & Essential Modules: Installation of the UNA CMS core and key modules for basic functionality, routed through Nginx proxy and Caddy reverse proxy to ensure enhanced acceleration and performance.

Jot & Meet Servers: Complete installation and setup, routed through port 443 via Caddy reverse proxy for enhanced acceleration and security.

Database Setup:  Installation and configuration of a MariaDB server, fully integrated with the caching layer (Memcache or DragonflyDB via Mcrouter) to optimize database performance and reduce load.

PHP Setup: Installation and configuration, including Memcached PHP extensions, fully integrated with your preferred caching layer (Memcache or DragonflyDB via Mcrouter). Traffic is managed by Nginx as the primary load balancer and forwarded to Caddy, which acts as a secure reverse proxy with integrated Redis for request caching and SSL/TLS management. This setup ensures optimized request handling, seamless cache operations, and accelerated content delivery.

Proxy Server: NGINX proxy setup, integrated with the caching layer upstream instance or cluster of your choice (Memcache or DragonflyDB via Mcrouter) for optimized request handling and improved site performance.

Secure Reverse Proxy: Installation of Caddy Server for advanced security, automatic SSL/TLS certificate management, and secure reverse proxy configuration. This setup includes also a Redis instance for request caching and acceleration, significantly improving response times and optimizing data flow between your server and visitors.

Cron Jobs: Configuration of all necessary scheduled tasks.

Automated Backups: Daily, weekly, monthly, and annual automated backup configuration.

Security Layer: Protection against cyber attacks with monitoring and proactive measures.

One DB Caching Layer: A powerful caching setup included by default: one instance of Memcached or DragonflyDB (please note: this instance is installed by us but not managed or supported by our team. You are responsible for its administration, or you can request assistance directly from the DragonflyDB team, as per their licensing terms), working together with a Mcrouter instance for efficient cache routing and distribution. This setup ensures faster content delivery, reduced database load, and improved website responsiveness even under heavy traffic.

Optional:

Domain Transfer & Management

You can optionally transfer for free your domain name to Coozila! Small Business (not mandatory). If you choose to, you’ll receive access to a new, easy-to-use control panel for managing DNS servers and additional services.

You’ll also get:

  • 90-Day Free Trial Titan Email: 2 custom email accounts @yourdomain.com
  • DNS Management: Lifetime free DNS service with globally distributed, redundant infrastructure.
  • Bulk Tools: Easily register, renew, transfer, and manage multiple domain names.
  • Domain Forwarding: Redirect your domain to another site with or without masking and SEO options.
  • Domain Theft Protection: Free protection against unauthorized domain transfers.
  • Easy-to-use Control Panel: Intuitive dashboard for domain, email, and service management.

Transfer your website to Coozila Small Business Servers:

Next-level Performance and Reliability with Simplified Management in Coozila! Small Business (not mandatory)

  • Blazing-Fast Load Time: Benefit from full SSD storage, highly optimized servers, and state-of-the-art NGINX caching to deliver your website at best-in-class speeds.
  • Instant Scaling: No need to migrate your hosting when your traffic grows. Instantly increase your server’s RAM and CPU resources with a single click no reboot required.
  • cPanel for Management: Enjoy the simplicity of cPanel. Manage your website, email accounts, sub-domains, and other services with the same intuitive interface used in traditional shared hosting.
  • Fully Managed Servers: Our team handles server management, updates, patches, and security fixes so you can focus entirely on growing your community or business.
  • Quick Setup: Your Cloud Hosting package is ready to use the moment your order is complete. No waiting, no complex configurations just instant deployment.
  • 1-Click Application Installer: Deploy over 100+ popular applications and CMS platforms in seconds. Choose your favorite tools and get your website live in record time.

If you are a Coozila! Small Business customer, you can find the available documentation here.

Recommended Installation Method

For maximum performance, security, and isolation, we recommend containerized installation using Docker. Direct server installations are available upon special request but are less ideal for UNA products.

Optional Ongoing Support

  • Standard Support Package: Includes 2 hours of online assistance per month for server and related service issues, including server monitoring and updates.
  • Additional Support: Available at rates starting from $50/hour.

💬 Need Help?

For inquiries or assistance, contact Coozila! Labs by e-mail or use our contact form.

Server Administration & Other Services available upon tailored request:

We primarily manage servers hosted in Hetzner data centers or servers provided by Coozila! Small Business. Other providers may be considered upon request. (Note: we are not affiliated with Hetzner, but trust their infrastructure.)

  • Performance Caching (On Request): DragonflyDB Cluster or Memcached Cluster implementation. Example: DragonflyDB Cluster Basic
  • Additional IT Services: Cloud servers, managed hosting, domain registration, mail servers, security packages, and more.
  • AI-Powered Translation Services: Custom language packs for UNA CMS
  • Docker Swarm Cluster (on request) for multi-server setups.
  • Enterprise Cloud Stack Solutions : custom-built stacks for enterprise-grade customers
  • Small Private Cloud with Openstack: with minimum three servers, you need to purchase this service three times.
  • Multicloud and Global Cloud Infrastructure Management : with Kubernetes Clusters & Karmada for multicloud container orchestration
  • Modern Reverse Proxies : deployment and configuration of advanced proxy solutions such as Caddy, Tengine, OpenResty, and enhanced NGINX setups
  • Kubernetes Clusters : scalable, resilient, containerized infrastructure management for mission-critical applications
  • Artificial Intelligence Integration : enhance your website with AI-powered features like chatbots, recommendation engines, content personalization, and more
  • CodeGuard: Cloud backup for your website
  • SiteLock Malware Detector

More details available at:

About Us

Coozila! Small Business has been providing domain registration, cloud hosting, managed and dedicated server services, and related solutions since 2009.

Trademarks and Copyright

Any software listing is packaged by Coozila! All trademarks mentioned are the property of their respective owners, and their use does not imply any affiliation or endorsement.

Important Notes

  • This is a one-time installation service for a single server.
  • We do not offer support or assistance for UNA CMS software itself, only for the infrastructure and server setup. For any issues or support related to UNA CMS, please contact the official UNA Team directly.
  • Does not include server rental or hosting costs.
  • For multiple servers, purchase the service multiple times.
  • Custom quotes are available for additional services or integrations.
  • There is no documentation provided for custom server installations, as these are tailored services handled directly by our team during setup. This is a fully managed installation and server setup service no documentation, configuration guides, or technical manuals are supplied. We fully manage the technical aspects for you, and upon completion, you’ll receive your access credentials and a fully operational, ready-to-use environment.
  • Before ordering, ensure your website contains legal content. We reserve the right to refuse service for any illegal or unethical activities hosted on your servers.
  • 4096
·
Added a discussion

Eror on deleting space:

[4] /delete-space-profile/technology Database query error
  Error: Table 'db.bx_photos_cmts_notes' doesn't exist
  Query: SELECT `cmt_id`, `cmt_parent_id` FROM bx_photos_cmts_notes WHERE `cmt_author_id` = ? AND `cmt_replies` = 0
  Account ID: 1i 

also in groups

[3] /delete-group-profile/community-group Database query error
 Error: Table '1400.bx_photos_cmts_notes' doesn't exist
 Query: SELECT `cmt_id`, `cmt_parent_id` FROM bx_photos_cmts_notes WHERE `cmt_author_id` = ? AND `cmt_replies` = 0
 Account ID: 1

I never intended to use the Photos module, or I may have installed it in the past by mistake and then uninstalled it. Although I don't have this module installed, I have this error. For these two modules to work, is the photos module a dependency?

  • 3824