5868 comments found.
When selecting Movies from the Movies/Series dashboard I get:
Illuminate \ Database \ QueryException SQLSTATE[HY000]: General error: 126 Incorrect key file for table ’/var/mysqltmp/#sql_3c57_0.MYI’; try to repair it (SQL: SELECT COUNT AS aggregate FROM (select `titles`.* from `titles` where `type` = movie group by `titles`.`id`) AS agg)
Please help, thanks!
Also, after updating to 1.6.3 and unchecked (Automaticlly update featured movies?: it is still updating Movies count!!
Hi, for the error you are most likely running out of space in mysql /temp folder, as for the featured movies, that option only stops the updating for movies in the front page slider.
Thanks for your reply. 1- How to solve the space mysql/temp issue? 2- I Unchecked [Automaticlly update data?:] in the dashboard Options; but the movies in the db still updating, how do I stop it?
- Note: Automaticlly should be Automatically. Thanks!
For the temp issue you should contact your hosting support if you are on shared hosting. As for updating, the above option will only stop updating of data, not scraping of new movies/series if they don’t exist in database yet, if you want to stop all scraping/updating you should chose db as your data provider.
Search:
<section class="row">
<div class="col-sm-6">
<h3>{{{ $data->getTagline() }}}</h3>
<p>{{{ $data->getPlot() }}}</p>
@if ($data->getAwards())
<p class="row well actor-awards" style="background-color:{{ $data->getJumboMenuColor() }}">
<i class="fa fa-trophy" />
{{{ $data->getAwards() }}}
</p>
@endif
@if ($custom = $data->getCustomField())
<p>
{{ $custom }}
</p>
@endif
</div>
Replace by:
<section class="row">
<div class="col-sm-6">
<h3>{{ trans('main.plot') }}</h3>
<p>{{{ $data->getPlot() }}}</p>
@if ($data->getTagline())
<h3>{{ trans('main.tagline') }}</h3>
<p>{{{ $data->getTagline() }}}</p>
@endif
@if ($data->getAwards())
<p class="row well actor-awards" style="background-color:{{ $data->getJumboMenuColor() }}">
<i class="fa fa-trophy" />
{{{ $data->getAwards() }}}
</p>
@endif
@if ($custom = $data->getCustomField())
<p>
{{ $custom }}
</p>
@endif
</div>
This will avoid displaying empty tags and use the language file for titles.
No? you looked
I’ll fix it in next update.
Ok thanks
hello, i want to translate script, i add new folder ka en lang folder how can i make ka main language? i also finde js in script with my language ka.js how make main llanguage ka? and it is possible to make multi langual?
Hi, check documentation ‘configuration’ section.
Error in login page, when I try login with “Remember Me?” unmarked, I have the error: Whoops, looks like something went wrong.
Can you send me your site url via contact form?
Ok
hello can you send me db actor writers and directors thank you
Not sure I understand the question.
for creating new titles through the admin dashboard, you have some nice features, like an image upload button, and a script that counts the characters left for a text area. Editing or creating a new title through the front end, present a form that does not have these features . How can this be fixed, in order to get these helpers (image upload button , character counting ) from the front-end creation?
thanks!
also, whenever i try to run a composer update
I get back :
{error translator does not exist”,file \vendor\\laravel\\framework\\src\\Illuminate\\Container\\Container.php”,line}}
any ideas?
The frond end and back end editing pages are completely different, no way to get those features in front end currently, as for the error you’ll have to replace trans(‘main.brand’) with some text in app/config/mail.php
thanks for the answer, composer update now works as expected.
I’ll see if I can update the view for the front end form and send u a file , maybe you could use it on the next update 
Okay, thanks.
Hi, Can you tell me why I can’t save new settings here: www.site.exm/settings/options/ ? Always blank fields after saving…
Do I need to CHMOD any files to 777?
Try to chmod 777 storage and all the sub folders.
thank you! I will try. And Once more question. Why doesn’t autocomplete at the front page doesn’t search russian movie titles properly?
chmoding 777 storage and all the sub folders doen;t take any efffect… Still doesn’t saving settings…
Can you send me your ftp details via contact form, so I can take a look myself?
No problem! Already send!
@Kabakofta 1. you can change meta description, meta tags, in the file \app\lang\en\main.php 2. for favicon , upload your favicon to /assets/images/favicon.ico 3. for logo name you have to update your brand name in \app\lang\en\main.php 4. if you are planning image for logo you have to change few lines of code.
hi, where i can change, meta description, meta tags, add a logo, add a favicon, thank you, best support here , 
The comment above explained it fairly well 
where change namber of upcoming movies on home page and number of search result
not actual anymore
1 – When you created a film manually in the dashboard, and is updated with ‘update from external’, it duplicates the movie!
2 – It does not recover the good ‘Release Info’ for the country (on Tmdb, description ect… ok).
3 – How to put the dates in the format: day/month/year
I’ll look into 1-2, as for the format you’ll have to edit the relevant view file to change it.
I want to change the format in the movie page, next genera. Where is the file for this?
You can change it in app/lib/presentation/dbPresenter.php in the getReleaseDate() method.
Ok thanks. I made the change and it is operational.
However I am surprised that no page is declared as utf-8 in the header of the pages.
The encoding is sent automatically by the framework as request header.
Ah ok, because in the source of the pages, I do not see.
Hello. “Automaticlly update featured movies” is turned OFF, but everyday it gots reset to the originals. How to fix this quick ?
Try to select it > save, then deselect -> save, might be a visual bug.
Where in the script do i change the standard amazon.com link to example: www.order.com
You can change it for individual movies by entering it in ‘affiliate link’ field when editing them, if you want to change the automatically generated one you will have to edit it in app/lib/services/presentation/dbPresenter.blad.php
thanks
Request: Trailers per season Example: season 4 Game of Thrones has a different trailer than season 1
Request 2: Manual Trailers at top of page
I’ll see what I can do in future update.
Thanks
i hv little query.. i want to entry each and every faeature manullay is it possible bcoz i will devlop this website for regional movie
Yes, it is possible.
Please fix this bug in next update – Actor Edit form , Sex – , User is not able to add more than four characters like female. i fixed by changing SEX length field to 6 VARCHAR in Actor Data Base
Thanks for reporting, will be fixed next update.
How to add more featured trailer? from 8 to 12
You’d have to create another slider in app/views/partials/jumbotron.blade.php
Hello,
How to stop auto updating plot for titles? help me urgent!! I tried to modify the file scrape and not working…
You will have to either remove plot from getGenInfo() in app/lib/repository/data/ImdbData.php or remove it before saving to db in app/lib/services/db/writer.php
. I have a few questions though if you don’t mind.
- Has this script been tested on NGINX?
- How easy is it to add another source (XML-RP API) to scrape from?
- Can the trailers be self-hosted instead of embedded?
1. Can’t guarantee it will work on nginx, .htaccess and pagination specifically.
2. Depends on how well you know php/laravel.
3. Will require some code modifications.
4. With some code modifications.
5. Yes.
6. Yes.
7. It displays movies/series/actors/news you can navigate in the top right corner.
the url for the the series become like this mysite.com/serialai/119-dexter, how can i change it back to mysite.com/series/119-dexter
how can i change serialai to series
Change it in app/lang/en/main.php