JCE Editor Don't Display On Joomla Front End - Question | JoomShaper

JCE Editor Don't Display On Joomla Front End

Stéphane Bernard, BAB Location Véhicules

Stéphane Bernard, BAB Location Véhicules

SP Page Builder 8 hours ago

Hi Team, Impossible to display JCE editor with SP builder on Joomla FO Captures in attachment

http://www.valtari.fr/joomshaperjce.zip Private admin access in Hidden content Best regards and thanks in advance

0
15 Answers
Toufiq
Toufiq
Accepted Answer
Senior Staff 7 hours ago #216717

Hi there,

Thank you for reaching out, and I apologize for any inconvenience caused by this oversight. Click on the System Editor button.

https://prnt.sc/162HU5RqEsN2

Best regards,

Toufiqur Rahman (Team Lead, Support)

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
7 hours ago #216719

I know that, see the last screenshot: Forbidden You don't have permission to access this resource.

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 7 hours ago #216720

I think the problem persists with the third-party extension.

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
6 hours ago #216723

with JCE ? befor your last version all is ok...

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216724

Could be JCE or any other extension.

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
6 hours ago #216726

So how debug ! Do you investigate ?

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216729

Your site works fine on locally. Did you applied any rules on your .htaccess file?

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
6 hours ago #216732

BEGIN EXPIRES CACHING - JCH OPTIMIZE

<IfModule mod_expires.c> ExpiresActive on

# Your document html
ExpiresByType text/html "access plus 0 seconds"

# Data
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType application/json "access plus 0 seconds"

# Feed
ExpiresByType application/rss+xml "access plus 1 hour"
ExpiresByType application/atom+xml "access plus 1 hour"

# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"

# Media: images, video, audio
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/webp "access plus 1 year"
ExpiresByType image/avif "access plus 1 year"
ExpiresByType audio/ogg "access plus 1 year"
ExpiresByType video/ogg "access plus 1 year"
ExpiresByType video/mp4 "access plus 1 year"
ExpiresByType video/webm "access plus 1 year"

# HTC files (css3pie)
ExpiresByType text/x-component "access plus 1 year"

# Webfonts
ExpiresByType image/svg+xml "access plus 1 year"
ExpiresByType font/* "access plus 1 year"
ExpiresByType application/x-font-ttf "access plus 1 year"
ExpiresByType application/x-font-truetype "access plus 1 year"
ExpiresByType application/x-font-opentype "access plus 1 year"
ExpiresByType application/font-ttf "access plus 1 year"
ExpiresByType application/font-woff "access plus 1 year"
ExpiresByType application/font-woff2 "access plus 1 year"
ExpiresByType application/vnd.ms-fontobject "access plus 1 year"
ExpiresByType application/font-sfnt "access plus 1 year"

# CSS and JavaScript
ExpiresByType text/css "access plus 1 year"
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"

<IfModule mod_headers.c>
    <FilesMatch "\.(js|css|ttf|woff2?|svg|png|jpe?g|webp|webm|mp4|ogg)(\.gz)?$">
        Header set Cache-Control "public"   
        Header set Vary: Accept-Encoding
    </FilesMatch>
    #Some server not properly recognizing WEBPs
    <FilesMatch "\.webp$">
        Header set Content-Type "image/webp"
        ExpiresDefault "access plus 1 year"
    </FilesMatch>   
    #Or font files
    <FilesMatch "\.woff2$">
        Header set Content-Type "font/woff2"
        ExpiresDefault "access plus 1 year"
    </FilesMatch>
    <FilesMatch "\.woff$">
        Header set Content-Type "font/woff"
        ExpiresDefault "access plus 1 year"
    </FilesMatch>
</IfModule>

</IfModule>

<IfModule mod_brotli.c> <IfModule mod_filter.c> AddOutputFilterByType BROTLI_COMPRESS text/html text/xml text/plain AddOutputFilterByType BROTLI_COMPRESS application/rss+xml application/xml application/xhtml+xml AddOutputFilterByType BROTLI_COMPRESS text/css AddOutputFilterByType BROTLI_COMPRESS text/javascript application/javascript application/x-javascript AddOutputFilterByType BROTLI_COMPRESS image/x-icon image/svg+xml AddOutputFilterByType BROTLI_COMPRESS application/rss+xml AddOutputFilterByType BROTLI_COMPRESS application/font application/font-truetype application/font-ttf AddOutputFilterByType BROTLI_COMPRESS application/font-otf application/font-opentype AddOutputFilterByType BROTLI_COMPRESS application/font-woff application/font-woff2 AddOutputFilterByType BROTLI_COMPRESS application/vnd.ms-fontobject AddOutputFilterByType BROTLI_COMPRESS font/ttf font/otf font/opentype font/woff font/woff2 </IfModule> </IfModule>

<IfModule mod_deflate.c> <IfModule mod_filter.c> AddOutputFilterByType DEFLATE text/html text/xml text/plain AddOutputFilterByType DEFLATE application/rss+xml application/xml application/xhtml+xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript AddOutputFilterByType DEFLATE image/x-icon image/svg+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/font application/font-truetype application/font-ttf AddOutputFilterByType DEFLATE application/font-otf application/font-opentype AddOutputFilterByType DEFLATE application/font-woff application/font-woff2 AddOutputFilterByType DEFLATE application/vnd.ms-fontobject AddOutputFilterByType DEFLATE font/ttf font/otf font/opentype font/woff font/woff2 </IfModule> </IfModule>

Don't compress files with extension .gz or .br

<IfModule mod_rewrite.c> RewriteRule ".(gz|br)$" "-" [E=no-gzip:1,E=no-brotli:1] </IfModule>

<IfModule !mod_rewrite.c> <IfModule mod_setenvif.c> SetEnvIfNoCase Request_URI .(gz|br)$ no-gzip no-brotli </IfModule> </IfModule>

END EXPIRES CACHING - JCH OPTIMIZE

LITESPEED_CACHE_START - Do not remove this line

<IfModule LiteSpeed> CacheLookup on

Uncomment the following directives if you has a separate mobile view

RewriteEngine On

RewriteCond %{HTTP_USER_AGENT} Mobile|Android|Silk/|Kindle|BlackBerry|Opera\ Mini|Opera\ Mobi [NC]

RewriteRule .* - [E=Cache-Control:vary=ismobile]

Uncomment the following directives to enable login remember me

RewriteCond %{HTTP_COOKIE} ^.joomla_remember_me.$

RewriteCond %{HTTP_COOKIE} !^._lscache_vary.$

RewriteRule .* - [E=cache-control:no-cache]

</IfModule>

LITESPEED_CACHE_END

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216733

Try to check the Joomla default htaccess.txt to .htaccess.

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
6 hours ago #216734

Do you have some one, I don't have it ?

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216735

Tried to rename .htaccess file using phoca commander. Permission issue. Provide me FTP access.

0
Stéphane Bernard, BAB Location Véhicules
Stéphane Bernard, BAB Location Véhicules
Accepted Answer
6 hours ago #216738

The name is good and the files is in root... FTP in hidden content Thanks

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216747

JCE editor occurred the problem.

https://prnt.sc/CsI0-z0Nn0fj

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 6 hours ago #216749

Let me check your site on my test server.

0
Toufiq
Toufiq
Accepted Answer
Senior Staff 4 hours ago #216760

Will you please check your site another server?

0