Hosted uploading videos issues
Design and Skin Customization
Hello Micheal. .thanks for the feedback.
Quote:
DASHBOARD -> QUEUE VIEWER
The verify video found 25 local uploaded videos. When I checked in the Queue Viewer, it is empty.DASHBOARD -> QUEUE VIEWER
Quote:
https://www.ecuahits.com/videos
but the server re-routes it to:
https://www.ecuahits.com/modules/jrCore/router.php?_uri=videos
This error is fixed. There was a typo error in the site builder.https://www.ecuahits.com/videos
but the server re-routes it to:
https://www.ecuahits.com/modules/jrCore/router.php?_uri=videos
This is what I have in the .taccess file
# Jamroom 5 Apache .htaccess file
DirectoryIndex index.html index.php sitemap.xml modules/jrCore/router.php
Options +FollowSymLinks
Options -MultiViews -Indexes
# Use ETags
<IfModule mod_headers.c>
Header unset ETag
FileETag None
# Expires for CSS, JS and Images
<FilesMatch ".(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2018 20:00:00 GMT"
</FilesMatch>
</IfModule>
# Compress everything we can
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript text/javascript-x application/javascript
</IfModule>
# All requests through the router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# php -- BEGIN cPanel-generated handler, do not edit
# This domain inherits the “PHP” package.
# php -- END cPanel-generated handler, do not edit
Thank You
updated by @luis789: 06/14/17 06:32:02AM