91
92
Γενικά Θέματα για το Elxis CMS / Link άρθρου στο messenger
« Last post by eliasbou on July 30, 2025, 20:26:52 »Καλησπέρα. Στην προσπάθεια να στείλω ένα Link ενός άρθρου στο messenger για εικόνα μου εμφανίζει πάντα την ελληνική σημαία, αλλάζει αυτό.
93
Elxis 4.x/5.x DEV / DeepL API 403
« Last post by seadhna on July 15, 2025, 21:47:39 »Hi there,
I was able to use DeepL API translation but it doesn't seem to be working anymore, I have tested on several Elxis installations on different hosts.
I get a 403 authentication error.
I have tried with valid FREE and PRO API keys, but the same error. Google translate and MyMemory are working.
I'm wondering if anyone else has had the same problem, maybe something has changed on the DeepL side?
I was able to use DeepL API translation but it doesn't seem to be working anymore, I have tested on several Elxis installations on different hosts.
I get a 403 authentication error.
I have tried with valid FREE and PRO API keys, but the same error. Google translate and MyMemory are working.
I'm wondering if anyone else has had the same problem, maybe something has changed on the DeepL side?
94
General / Re: XML parameter types - attribute to allow HTML tags?
« Last post by seadhna on July 15, 2025, 21:44:43 »Ok, I have used some jQuery
95
Elxis 4.x/5.x DEV / Re: Upcoming Elxis 5.6 information
« Last post by seadhna on July 15, 2025, 21:43:47 »That's great about the module ID!
96
Elxis 4.x/5.x DEV / Elxis 5.6 - Password policy enforcement and brute-force attacks
« Last post by datahell on July 14, 2025, 19:46:48 »Elxis 5.6 automatically enforces selected password expiration policy. When a user login and has not changed his password for the configured period then Elxis displays him a special page to change his password. The change of the password is required and the user cannot escape this procedure. Also the password must meet the configured complexity pattern. For this feature it was required to develop a new exit page (like 403, 404, etc) called pwchange.
Also in Elxis 5.6: If you try to login 3 times without success Elxis locks your account temporary for 5 minutes. This feature implemented to prevent brute-force attacks (required by security standards).
Also in Elxis 5.6: If you try to login 3 times without success Elxis locks your account temporary for 5 minutes. This feature implemented to prevent brute-force attacks (required by security standards).
97
General / Re: XML parameter types - attribute to allow HTML tags?
« Last post by datahell on July 12, 2025, 09:18:46 »Writing HTML, and therefor javascript, in parameters is unsafe. Also it is very likely for someone to break the HTML of the page. If you want something like that you must do it elsewhere, eg with something like bbcode or find the replace.
98
Elxis 4.x/5.x DEV / Re: Upcoming Elxis 5.6 information
« Last post by datahell on July 11, 2025, 19:09:29 »Done. All modules in Elxis 5.6 have now an ID declared in their wrapper DIV element.
Example:
<div class="module" id="moduleX">
...
</div>
Where X is the module ID. So you can create links like href="#module14"
Attention: If you include the same module twice in the same page (eg in 2 module positions) you will end with duplicated IDs in the same page which is an HTML error.
Example:
<div class="module" id="moduleX">
...
</div>
Where X is the module ID. So you can create links like href="#module14"
Attention: If you include the same module twice in the same page (eg in 2 module positions) you will end with duplicated IDs in the same page which is an HTML error.
99
Security / Re: Banned when adding an image via code view
« Last post by datahell on July 11, 2025, 18:50:39 »I just tested it, although the reason is obvious as I already said.
I included an image the way you wrote and saved normally. See the screenshots.
The reason is 100% the one I wrote. The session token is been overwritten and token gets altered. If you haven't opened a secondary window then you must search for the reason in your browser, in an anti-virus or similar. Something might interfere between the site and the browser.
The reason is obvious as you have a very specific error code: E403-CCON-0013
This is from component content, controller file aarticle.php line 1036
if (($token == '') || ($sess_token == '') || ($sess_token != $token)) {
exitPage::make('403', 'CCON-0013', $eLang->get('REQDROPPEDSEC'));
}
I included an image the way you wrote and saved normally. See the screenshots.
The reason is 100% the one I wrote. The session token is been overwritten and token gets altered. If you haven't opened a secondary window then you must search for the reason in your browser, in an anti-virus or similar. Something might interfere between the site and the browser.
The reason is obvious as you have a very specific error code: E403-CCON-0013
This is from component content, controller file aarticle.php line 1036
if (($token == '') || ($sess_token == '') || ($sess_token != $token)) {
exitPage::make('403', 'CCON-0013', $eLang->get('REQDROPPEDSEC'));
}
100
General / Re: XML parameter types - attribute to allow HTML tags?
« Last post by seadhna on July 11, 2025, 14:32:42 »Why do such a thing? An example from your Five template: frontpage slider. Imagine, in the Caption field for a slide, if I want to write "17th event" but I want the "th" to be superscript.

Recent Posts