lostkid
Active member
- Mar 18, 2021
- 131
- 54
- 28
- 25
Are you using a vps? Also check the read permission of your htaccess file
Are you using a vps? Also check the read permission of your htaccess file
No, I'm on Shared Hosting. How do I do that?Are you using a vps? Also check the read permission of your htaccess file
Either try adding this to your htaccess file <FilesMatch "\.(php)$">No, I'm on Shared Hosting. How do I do that?
I made sure the file permission for the htaccess file is 644 and it's not missing in the public_html directory. What could possibly be happening?
Unfortunately, after trying this, it doesn't work still. When I changed the renamed the htaccess.example file to .htaccess, it worked but the homepage loaded with the preloader and a blank page shows up after. Then other URLs like the admin are throwing 500 Internal Server Error.Either try adding this to your htaccess file <FilesMatch "\.(php)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
Check if the htaccess file in the public folder is readable.
Or copy the htaccess.exmple file and rename it as .htaccess
Ok. Let me give this another try with this command.RewriteBase /
RewriteCond %{HTTP_HOST} !^subdomain
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
RewriteCond %{HTTP_HOST} ^subdomain
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/ [L]
Working?Ok. Let me give this another try with this command.
Thanks to @bhuszilard @lostkid & @Shadav. You guys have really been helpful. I tried a new installation and it all works fine.Working?
Yes, you can.Hi
Can many movies/series can be imported? Type Bulk?
Or it is only possible to add one by one?
Hi, How did you fix the problem, can you share. I read everything, but unfortunately nothing helped.Thanks to @bhuszilard @lostkid & @Shadav. You guys have really been helpful. I tried a new installation and it all works fine.![]()
I'll look into itDoes anyone know how to fix the social sharer buttons?
It produces ".comtitles" instead of the proper ".com/titles" share link.
Maybe I'm wrong? But I think it's based on thefilesCode:main.51d3ab87516a2e615d53
Found it. In the main.js file search for this.url.generate(this.mediaItem) before it just add '/' + and it will work.THANKS, MATE! Much appreciated!!!!!![]()
//change
shareUsing(o){const d=this.settings.getBaseUrl()+this.url.generate(this.mediaItem).replace(/^\//,"");if("mail"===o)
//to
shareUsing(o){const d=this.settings.getBaseUrl()+'/'+this.url.generate(this.mediaItem).replace(/^\//,"");if("mail"===o)