![]() |
MovieLib - Your movie database on web - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: MovieLib - Your movie database on web (/showthread.php?tid=167893) |
RE: MovieLib - Your movie database on web - heml - 2017-03-15 How do I add a checkout button? The button would add the currently viewed / selected TV/Movie to a text/html list this would let me know which movies/shows my friends/family are interested in watching. that I could later review by logging into an admin page or something. RE: MovieLib - Your movie database on web - hallohome - 2017-03-18 (2017-03-14, 23:30)hallohome Wrote: Hi, with the latest Version I get this error. I run it on a Qnap NAS. If I load "login.php" direct i can enter my password and everything works. If i delete: ini_set('display_errors',1); ini_set('display_startup_errors',1); error_reporting(-1); in the index.php it works, but the kodi plugin can not connect to the site anymore. I think it is because of your php7 changes. 2.8.2 worked fine. I never tried 2.9. I only have php 5.6.29 on my Qnap. How can I get this to work ? Thanx RE: MovieLib - Your movie database on web - Regss - 2017-03-18 Code: ini_set('display_errors',1); This code only enable reporting errors in php Try change line 37: Code: if ($_SESSION['logged'] !== true) { to: Code: if (!isset($_SESSION['logged']) or $_SESSION['logged'] !== true) { RE: MovieLib - Your movie database on web - hallohome - 2017-03-18 (2017-03-18, 19:22)Regss Wrote: That worked for me. Everything is fine. thanks for your work. RE: MovieLib - Your movie database on web - heml - 2017-03-26 after entering the password as xbmc and clicking ok on the installer page I get the following message: Code: No such file or directory I am not sure what logs to check, or debug procedures to follow, anyone have any pointers for me? RE: MovieLib - Your movie database on web - Regss - 2017-03-26 Check that the script created the db.php file. Check that tables have been created in the database. Try edit install.php and in line 106 remove @ character. This show error if script can't create db.php: Code: $fp = @fopen('db.php', 'w'); RE: MovieLib - Your movie database on web - Regss - 2017-03-26 Unfortunately I do not know linux file system but when you go through the installation process in last step script must create db.php file. Maybe some write permission must be set? After remove @ character do you start install process again? Do you have tables in mysql database? Try login to phpmyadmin and check this. RE: MovieLib - Your movie database on web - darkside40 - 2017-03-26 (2017-03-26, 17:17)xekon Wrote: Thank you for the reply Regss, I removed the @ character from line 106 so that it now reads: Could be a permission problem. Try chown -R www-data:www-data /var/www/movielib and restart your webserver. RE: MovieLib - Your movie database on web - xekon - 2017-03-27 well the admin panel appears to be fully working, I generated the auth token, and installed the movielib addon in kodi, i can see that movielib scanned my stuff while in kodi. I tried viewing the library at the page: http://192.168.1.140/movielib/ but I get this error: Fatal error: Uncaught Error: Call to undefined function mb_strtoupper() in /var/www/html/movielib/index.php:110 Stack trace: #0 {main} thrown in /var/www/html/movielib/index.php on line 110 RE: MovieLib - Your movie database on web - darkside40 - 2017-03-27 Did you install php7.0-mbstring? If not you should do it along with php7.0-gd and php7.0-curl. RE: MovieLib - Your movie database on web - heml - 2017-03-27 Thank you darkside40, I am fully up and running now at both my house and my friends ![]() RE: MovieLib - Your movie database on web - heml - 2017-03-27 (2017-03-13, 22:30)darkside40 Wrote: Great another thing i noticed. I got TLS working using this guide: https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-nginx-in-ubuntu-16-04 it involved using a self signed cert, however if you did anything differently or better darkside40 then I would still be very interested in seeing it. RE: MovieLib - Your movie database on web - heml - 2017-03-27 cool, everything is working now, since I didnt have php7.0-gd installed at first I will probably need to clear the database and rescan, plus I disabled background fanart, so if I clear the DB then those files would not need to be scanned in. RE: MovieLib - Your movie database on web - darkside40 - 2017-03-27 Here you can see my nginx site config for Movielib, looking a bit ugly but works. If you want to get rid of the self signed cert use Lets Encrypt. Code: server { RE: MovieLib - Your movie database on web - heml - 2017-03-27 Thank you very much for sharing yours, I am going to compare. |