Only warning I get now is about favicon.ico which shouldn't be a problem.
Tried increasing apache log level but there doesn't seem to be any other issues. Not sure what else to try
smiffy1989
Senior Member Posts: 245 Joined: Jun 2010 Reputation: 0 |
2012-01-20 14:29
Post: #111
Got rid of those errors by adjusting my php.ini but I still couldnt get past the spinning wheel.
Only warning I get now is about favicon.ico which shouldn't be a problem. Tried increasing apache log level but there doesn't seem to be any other issues. Not sure what else to try
|
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 14:53
Post: #112
Koshu Wrote:Tried again today and the parsing in step 2 is working now (Thats a little weird because i didn't change anything) but now i'm stuck on step 3. The page just doesn't stop loading after I uploaded the sources.xml. The myxbmc database was created and the user table contains one entry, the sources table still is empty.Not at home to confirm the version i use, seem to be even+pvr (sure to use pvr). Can you post here the structure of the 2 tables path (music and video) with phpmyadmin without exporting your data ? |
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 14:55
Post: #113
smiffy1989 Wrote:Got rid of those errors by adjusting my php.ini but I still couldnt get past the spinning wheel. can you post here the content of the files '/etc/logs/apache2/errors.log' and '/etc/logs/apache2/acces.log' or by PM ? I'm sure of the correct paths, i'm at work for the moment... |
| find quote |
smiffy1989
Senior Member Posts: 245 Joined: Jun 2010 Reputation: 0 |
2012-01-20 16:32
Post: #114
tamplan Wrote:can you post here the content of the files '/etc/logs/apache2/errors.log' and '/etc/logs/apache2/acces.log' or by PM ? Managed to get past the spinning wheel! in application/config/config.php there is a base URL. This was set to 192.168.1.10 (my machines internal IP.) I changed this to my domain name and it allowed me past ![]() I think you should set this to localhost/127.0.0.1 as default rather than the machines IP? EDIT: This change is undone as soon as I try upload the advancedsettings.xml. Can I make this change permanent some how? EDIT2: I've removed the write permission on config.php but I can't get past the upload still
(This post was last modified: 2012-01-20 17:09 by smiffy1989.)
|
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 18:46
Post: #115
smiffy1989 Wrote:Managed to get past the spinning wheel! In application/config/config.php, it's the beginning of the url to images, scripts... Download this archive at http://tamplan.free.fr/www2.tar.gz and uncompress in folder where you have the application. Edit 3 files : config.php line 17 http://IP_OR_DOMAIN/ to your domain name, must end with / database.php line 42 to 48 (informations available in your advancedsettings.xml file) xbmc.php line 7 /CHANGE/ to the folder in the server where the thumbnails are, must end with / Drop and recreate the database MyXbmc, then use this code in phpmysql : Code: DROP TABLE IF EXISTS `sources`;In table sources, your have : for the video idPath : idPath in table path when strContent is not null name : the name of the source client_path : equals strPath in table path corresponding to the idPath server_path : real folder in the server side media_db : video or music content : equals strContent in table path corresponding to the idPath scraper : equals strScraper in table path corresponding to the idPath without metadata. and . is replaced by _ settings : use the sample i give to test for the music idPath : idPath in table path corresponding to the path of the source Then use the application I need to recode the wizard. |
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 18:51
Post: #116
Sorry, in config.php line 72 replace $config['language'] = 'french'; by $config['language'] = 'english';
|
| find quote |
smiffy1989
Senior Member Posts: 245 Joined: Jun 2010 Reputation: 0 |
2012-01-20 18:56
Post: #117
I'll give those instructions a whirl when I get home
|
| find quote |
smiffy1989
Senior Member Posts: 245 Joined: Jun 2010 Reputation: 0 |
2012-01-20 20:26
Post: #118
Getting further. I can half see the main page now, just got a load of PHP errors before it that I'm trying to work out:
USE PASTEBIN FOR LOGS PLEASE !!!
(This post was last modified: 2012-01-20 21:01 by ronie.)
|
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 20:44
Post: #119
Hi,
use the data i provide in my previous post to put in the sources table of the MyXbmc database. if the scraper you use is tvdb.com, put in the settings field : Code: O:8:"stdClass":6:{s:14:"absolutenumber";b:0;s:8:"dvdorder";b:0;s:6:"fanart";b:1;s:8:"language";s:2:"fr";s:7:"posters";b:0;s:16:"user_folder_name";b:0;}if the scraper you use is themoviedb.org, put in the settings field : Code: O:8:"stdClass":7:{s:8:"TrailerQ";s:2:"No";s:6:"fanart";b:1;s:10:"imdbrating";b:0;s:17:"keeporiginaltitle";b:0;s:8:"language";s:2:"fr";s:7:"trailer";b:1;s:16:"user_folder_name";b:0;}If you don't manage, send me by PM an export of the table path in your video database where the content is not null, i'll write the correct value for you in PM. |
| find quote |
tamplan
Member Joined: Dec 2009 Reputation: 0 Location: France |
2012-01-20 20:46
Post: #120
This week-end i plan to resolve your issue with a new code, the time for me to write it.
|
| find quote |