Welcome to the Invelos forums. Please read the forum rules before posting.

Read access to our public forums is open to everyone. To post messages, a free registration is required.

If you have an Invelos account, sign in to post.

    Invelos Forums->General: General Discussion Page: 1... 3 4 5 6 7 8  Previous   Next
Those banners that show recently watched movies
Author Message
DVD Profiler Unlimited Registrantxjames
Registered: April 6, 2007
Brazil Posts: 39
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
sorry mithy, i don't know the behavior for this option.

Why don't you try exporting your collection without the wishlist? There's this option on the DVDP "export" dialogue boxes...
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Hi Mithi!

There is no option in localsiteconfig.php to suppress the wishlist. It's pretty trivial to add; I'm curious why you'd want to do that?

The TABS sentence is attempting to indicate the following:
phpDVDProfiler handles tags named TABS in a special manner: it makes pseudo-collections out of profiles with the same Tabs. In my collection, for example, the drop-down shows Fox Studio Classics in addition to Onwed, Wishlist, etc. This is a feature to allow users to partition their collection in a configurable manner.

The $removetabbed variable controls whether or not profiles which fall into pseudo-collections are also displayed in the owned (for example) collection.
(I'm not sure that makes it any clearer )
-fred
DVD Profiler Unlimited RegistrantStar ContributorMithi
Sushi Annihilator
Registered: March 13, 2007
Reputation: Superior Rating
Germany Posts: 2,216
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting FredLooks:
Quote:
There is no option in localsiteconfig.php to suppress the wishlist. It's pretty trivial to add; I'm curious why you'd want to do that?

Because I don't really use the wishlist as a wishlist, but more as a scratchpad for looking up profiles if someone has question for one etc. So it's not really of any deep value.
Quote:
phpDVDProfiler handles tags named TABS in a special manner: it makes pseudo-collections out of profiles with the same Tabs.

That sounds interesting (my Anime Collection & Criterion could thus be tabbed). How exactly does this work? A tag "TABS" with childtags "Foobar", "Barfoo" and so on for the respective pseudotab? Or is only one possible?

cya, Mithi
Mithi's little XSLT tinkering - the power of XML --- DVD-Profiler Mini-Wiki
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting Mithi:
Quote:
Because I don't really use the wishlist as a wishlist, but more as a scratchpad for looking up profiles if someone has question for one etc. So it's not really of any deep value.

Ah! This makes excellent sense. I'll rough in support and send you a diff if it isn't too convoluted ...
Quote:
That sounds interesting (my Anime Collection & Criterion could thus be tabbed). How exactly does this work? A tag "TABS" with childtags "Foobar", "Barfoo" and so on for the respective pseudotab? Or is only one possible?

It is as you describe, there is only one level (so "Tabs/Fox Studio Classics", "Tabs/The Criterion Collection", "Tabs/For Sale", etc. but not "Tabs/Anime/Hentai" for example ...)
-fred
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
ok, pretty trivial really. My version is different from the currently available version, so I'll just describe the changes ...

in global.php initialise a variable $hidewishlist = false; somewhere in the block of inits around line 60-ish.

in index.php two changes:
around line 2094, change:
Quote:
        if ($numincollection['wishlist'] != 0)
                $optionwishlist = "<option value=wishlist$sel_wishlist>$lang[WISHLIST]</option>";

to:
Quote:
        if (!$hidewishlist && $numincollection['wishlist'] != 0)
                $optionwishlist = "<option value=wishlist$sel_wishlist>$lang[WISHLIST]</option>";


and around line 2560 change:
Quote:
        if ($numincollection['wishlist'] != 0) echo <<<EOT


to:
Quote:
        if (!$hidewishlist && $numincollection['wishlist'] != 0) echo <<<EOT


and after those changes, setting $hidewishlist=true; in localsiteconfig.php will hide your wishlist. It isn't foolproof or anything, it's more along the lines of a display hint

I'll add variables for the other default collections so that people can display only pseudo-collections if they want ...
-fred
DVD Profiler Unlimited RegistrantStar ContributorMithi
Sushi Annihilator
Registered: March 13, 2007
Reputation: Superior Rating
Germany Posts: 2,216
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting FredLooks:
Quote:
ok, pretty trivial really.

Jepp, thought of this solution myself ... NOT  ... 
Thanks for the fast help, looks fine to me.

Any thoughts about the error while updating?

cya, Mithi
Mithi's little XSLT tinkering - the power of XML --- DVD-Profiler Mini-Wiki
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Sorry, which error? They zapped my username after the second time I blew past the SQL query limit on the account and I haven't gotten around to starting over (to be fair, I had to write a program to get my 50MB collection.xml installed, and they might have taken exception to that )
-fred
DVD Profiler Unlimited RegistrantStar ContributorMithi
Sushi Annihilator
Registered: March 13, 2007
Reputation: Superior Rating
Germany Posts: 2,216
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quote:
When I update (full update) i always get:
Total Processing time (seconds): 1,029.434 (1,008.814 + 20.620)[/i]
Verifying Imageupdate version....Cannot connect !!!

and that's it. Everything works just fine, what Imageupdate is it that doesn't work?


cya, Mithi
Mithi's little XSLT tinkering - the power of XML --- DVD-Profiler Mini-Wiki
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Oh, that one.  According to the source, the fsocketopen() call is failing. According to a phpinfo() from the site, that is one of the many disabled functions (which makes sense if they want to minimise warez and spammers). Can't do much about it, i don't think ...
-fred
DVD Profiler Desktop and Mobile RegistrantBill MacNeill
Bill
Registered: March 13, 2007
United States Posts: 360
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
All is working but 2 error with jpgraphs. Under site statistics I get 2 errors that read  Font file .jpgraphs/fonts/truetype/ariel.ttf is not readable or does not exist. and the second error is the same but for the font cour.ttf  I can navigate to the folder and see that the fonts do exist. Is there something that can be done to correct this error. Also how to change the background color of the banner to white instead of black and then the font to black instead of white?

Thanks all
 Last edited: by Bill MacNeill
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Actually, the audio statistics are broken. Weird. It looks like it is just dumping out the same stat 4 times.

Can you use the admin tool to query the statstable? I'm curious if what is stored is the data 4 times ...

The query should be:

SELECT stattype,namestring1 AS AudioFormat, counts AS Total FROM DVDPROFILER_dvd_stats WHERE stattype LIKE 'AudioFormat%';

Thanks

EDIT: Oh yeah, in localsiteconfig.php, for the $profiles variable,  I expect you have bgcolor=>'000000' and fontcol => 'FFFFFF'. To make the background white, set bgcolor => 'FFFFFF' and to make the font color black, set fontcol => '000000' ... HTH
-fred
 Last edited: by FredLooks
DVD Profiler Desktop and Mobile RegistrantBill MacNeill
Bill
Registered: March 13, 2007
United States Posts: 360
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Found the admin tool in cpanel and tried to run the query on the stat table. Is telling me I have to choose a column to display. Not sure what it is asking me to do.
 Last edited: by Bill MacNeill
DVD Profiler Desktop and Mobile Registrantpauls42
Reg: 31/01/2003
Registered: March 13, 2007
United Kingdom Posts: 2,692
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting wtmac:
Quote:
All is working but 2 error with jpgraphs. Under site statistics I get 2 errors that read  Font file .jpgraphs/fonts/truetype/ariel.ttf is not readable or does not exist. and the second error is the same but for the font cour.ttf  I can navigate to the folder and see that the fonts do exist. Is there something that can be done to correct this error. Also how to change the background color of the banner to white instead of black and then the font to black instead of white?

Thanks all


I had the identical problem to you..

To fix it I did the following..

1) Change JPG-CONFIG.INC.PHP so that // DEFINE("TTF_DIR","/usr/X11R6/lib/X11/fonts/truetype/");
becomes
DEFINE("TTF_DIR","fonts/");

2) crreate a fonts directory in phpdvdprofiler directory

3) copied the following fonts from my windows directory to the fonts directory..

arial.ttf
arialbd.ttf
cour.ttf
Paul
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting wtmac:
Quote:
Found the admin tool in cpanel and tried to run the query on the stat table. Is telling me I have to choose a column to display. Not sure what it is asking me to do.

In the suggested SQL query, the columns being displayed are: stattype, namestring1, and counts. The query was also indicating that it is only interested in rows where the stattype column starts with the string 'AudioFormat'. Sorry I'm not familiar with the tool you're being asked to use ...
-fred
DVD Profiler Desktop and Mobile RegistrantBill MacNeill
Bill
Registered: March 13, 2007
United States Posts: 360
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Ok got the fonts thing working. Thanks for the help Paul. Now I lost my top ten reports and graphs.

Arggghhhhh

Suggestions???
DVD Profiler Unlimited RegistrantFredLooks
phpDVDProfilerDude D5/7/2
Registered: March 13, 2007
Canada Posts: 350
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
I think you zapped the stats table in mysql somehow. To recreate those, make any change to any profile and do an update (the stats are only re-calculated if a profile changes). Stats are stored in the stats table so that the server doesn't get the %^&* kicked out of it every time someone hits your statistics page; they're pre-calculated at profile import time.
-fred
    Invelos Forums->General: General Discussion Page: 1... 3 4 5 6 7 8  Previous   Next