jamdb-user Mailing List for JamDB (Page 2)
Status: Beta
Brought to you by:
mschiff
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(14) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(14) |
Feb
(21) |
Mar
|
Apr
(2) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(9) |
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(8) |
Oct
(10) |
Nov
(1) |
Dec
(6) |
2005 |
Jan
(10) |
Feb
(2) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: John P. <jp...@ya...> - 2004-10-31 12:55:46
|
--- Daniel Kröhl <dan...@gm...> wrote: >>A.When I use mozilla to log in if the login is >>successfull >>i get a blank screen and the source code is exactly >>the same as the login's page >>source code. > >If at this point reenter the url in the same > browser > >window i see the blank > >page again and the source code is just this: > ><html><body></body></html> > > > > > Sounds like the PHP-Parser crashs. > Can you make a tail while you try to login? > I don't now which Linux you use but on Fedora the > commando looks like this: > > tail -f /var/log/httpd/error_log > Thanks for your reply Daniel, The think is that nothing new is logged in apache's error log. The tail command didn't output anything new. __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: <dan...@gm...> - 2004-10-31 12:28:08
|
Hi John, John Papapanos schrieb: >--- Marc Schiffbauer <ma...@sc...> wrote: > > > >>Server version: Apache/1.3.32 (Unix) >>should be ok. >> >>hm I never tested jamdb with PHP5. Are there any >>error messages in >>apache's error log? >> >> > >Nop, nothing in the apache's error log. > > > >>since you already enabled DEBUG_MODE >>error_reporting() should >>already be set to E_ALL. Could please verify that it >>really is set >>to this value? maybe there changed something in >>PHP5? >> >> > >Sorry but i'm new to php. I can understand most of >your code due >to my experience in C. >If i get this right you need me to tell you about my >php.ini configuration. >Well this is how error handling is set in my php.ini >file: > >error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT >display_errors = On -> I guess this should display the >errors in the screen >log_errors = On >error_log=filename ->This is commented out.So it has >no affect. > >As i can get it until now i should only see errors in >the output of the >index.php page of jamdb. > >NOTE:Is there a way to set log_error and error_log >directives to log php errors into >the apache error log file. so i can see when an error >is happening and >what request caused it? I know this is a question for >another mailling list :) > > > > >>If the screen is blank after login: what does the >>page source lock >>like? >> >> > >Well this is interesting. > >A.When I use mozilla to log in if the login is >successfull >i get a blank screen and the source code is exactly >the same as the login's page >source code. >If at this point reenter the url in the same browser >window i see the blank >page again and the source code is just this: ><html><body></body></html> > > Sounds like the PHP-Parser crashs. Can you make a tail while you try to login? I don't now which Linux you use but on Fedora the commando looks like this: tail -f /var/log/httpd/error_log >B.When i use netscape to login if the login is >successfull i i don't see a blank >screen, instead an error windiw pops up from netscape >saying the following: >|-Netscape Error >|-The document contains no data >|-Try Again later or contact the system administrator. > > >The same error window appears if i try to view the >source code from Netscape. >If i try to see page info from Netscape i get the >following: > >JamDB - V0.9.7 has the following structure: > >http://localhost/jamdb/htdocs/index.php >Form 1: > Action URL: >http://localhost/jamdb/htdocs/index.php > Encoding: application/x-www-form-urlencoded >(default) > Method: Post > Layer: overDiv > > Location: >http://localhost/jamdb/htdocs/index.php > File MIME Type: Currently Unknown > Source: Not cached >Local cache file: none > Last Modified: Unknown > Last Modified: Unknown > Content Length: Unknown > Expires: No date given > Charset: Unknown > Security: Status unknown > >??? It seems to me something is going on with the >execution of the javascript. >Could there be something missing in the apache or >browser configuration that >makes this javascript not funtioning properly??? > > > >>Is the htpasswd file you use readable by PHP? Try >>make it >>worldreadable for testing... >> >> > >Yes, this file is world readable. The Login procces is >working just fine. >If i give wrong username or password i am propmt to >try again.The blank screen >appears only after a successful log in. > > > > >>PS: are you on the list? do I need to CC you? >> >> > >Nop i'not subsribed in the list. I send this mails to >the users list to though. >I've also openned a thread in the Help forum. No >replies to this from anyone though :( > Daniel |
From: John P. <jp...@ya...> - 2004-10-31 11:55:31
|
--- Marc Schiffbauer <ma...@sc...> wrote: > Server version: Apache/1.3.32 (Unix) > should be ok. > > hm I never tested jamdb with PHP5. Are there any > error messages in > apache's error log? Nop, nothing in the apache's error log. > since you already enabled DEBUG_MODE > error_reporting() should > already be set to E_ALL. Could please verify that it > really is set > to this value? maybe there changed something in > PHP5? Sorry but i'm new to php. I can understand most of your code due to my experience in C. If i get this right you need me to tell you about my php.ini configuration. Well this is how error handling is set in my php.ini file: error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT display_errors = On -> I guess this should display the errors in the screen log_errors = On error_log=filename ->This is commented out.So it has no affect. As i can get it until now i should only see errors in the output of the index.php page of jamdb. NOTE:Is there a way to set log_error and error_log directives to log php errors into the apache error log file. so i can see when an error is happening and what request caused it? I know this is a question for another mailling list :) > If the screen is blank after login: what does the > page source lock > like? Well this is interesting. A.When I use mozilla to log in if the login is successfull i get a blank screen and the source code is exactly the same as the login's page source code. If at this point reenter the url in the same browser window i see the blank page again and the source code is just this: <html><body></body></html> B.When i use netscape to login if the login is successfull i i don't see a blank screen, instead an error windiw pops up from netscape saying the following: |-Netscape Error |-The document contains no data |-Try Again later or contact the system administrator. The same error window appears if i try to view the source code from Netscape. If i try to see page info from Netscape i get the following: JamDB - V0.9.7 has the following structure: http://localhost/jamdb/htdocs/index.php Form 1: Action URL: http://localhost/jamdb/htdocs/index.php Encoding: application/x-www-form-urlencoded (default) Method: Post Layer: overDiv Location: http://localhost/jamdb/htdocs/index.php File MIME Type: Currently Unknown Source: Not cached Local cache file: none Last Modified: Unknown Last Modified: Unknown Content Length: Unknown Expires: No date given Charset: Unknown Security: Status unknown ??? It seems to me something is going on with the execution of the javascript. Could there be something missing in the apache or browser configuration that makes this javascript not funtioning properly??? > Is the htpasswd file you use readable by PHP? Try > make it > worldreadable for testing... Yes, this file is world readable. The Login procces is working just fine. If i give wrong username or password i am propmt to try again.The blank screen appears only after a successful log in. > PS: are you on the list? do I need to CC you? Nop i'not subsribed in the list. I send this mails to the users list to though. I've also openned a thread in the Help forum. No replies to this from anyone though :( __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: Marc S. <ma...@sc...> - 2004-10-30 12:11:47
|
* John Papapanos schrieb am 30.10.04 um 13:36 Uhr: > > Thanks for your feedback, > I'using the following packages: > > -apache: httpd -v > Server version: Apache/1.3.32 (Unix) should be ok. > > -php: php -v > PHP 5.0.2 (cli) (built: Oct 29 2004 17:41:44) > Copyright (c) 1997-2004 The PHP Group > Zend Engine v2.0.2, Copyright (c) 1998-2004 Zend > Technologies hm I never tested jamdb with PHP5. Are there any error messages in apache's error log? since you already enabled DEBUG_MODE error_reporting() should already be set to E_ALL. Could please verify that it really is set to this value? maybe there changed something in PHP5? If the screen is blank after login: what does the page source lock like? Is the htpasswd file you use readable by PHP? Try make it worldreadable for testing... > > -mozilla: mozilla -v > Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) > Gecko/20020408, build 2002040813 > ok > -jamdb: jamdb-0.9.7 ok, but may also try the current cvs version. We will hopefully release it soon. There are some changes in the command line tool pending... configuration will be easier in the next version.. -marc PS: are you on the list? do I need to CC you? -- ********************************************************************** * Unix is like a wigwam: no gates, no windows, only apache inside * ********************************************************************** |
From: John P. <jp...@ya...> - 2004-10-30 11:36:37
|
--- Marc Schiffbauer <ma...@sc...> wrote: > * John Papapanos schrieb am 29.10.04 um 23:34 Uhr: > > Hi, > > i've just installed the latest jamdb. > > I have created and loaded songs into the database. > > I have created a user account. > > > > The problem: > > After logging in with my user account i get a > blank > > screen. What is the problem? I cant see any error > > messages even though i have set the debug option > to > > yes. > > > > I'm sure my m3upaths options are wrong in the > config > > file but i don't think that this is the problem. > > i can't figure out how to set this option properly > > anyway. > > > > Thanks in advance. > > > > could you provide a bit more information about which > versions of > jamdb / apache / php /client-browser you are > running? > > > -marc > > Thanks for your feedback, I'using the following packages: -apache: httpd -v Server version: Apache/1.3.32 (Unix) -php: php -v PHP 5.0.2 (cli) (built: Oct 29 2004 17:41:44) Copyright (c) 1997-2004 The PHP Group Zend Engine v2.0.2, Copyright (c) 1998-2004 Zend Technologies -mozilla: mozilla -v Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020408, build 2002040813 -jamdb: jamdb-0.9.7 Looking forward to your reply. Thanks. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Marc S. <ma...@sc...> - 2004-10-30 10:53:42
|
* John Papapanos schrieb am 29.10.04 um 23:34 Uhr: > Hi, > i've just installed the latest jamdb. > I have created and loaded songs into the database. > I have created a user account. > > The problem: > After logging in with my user account i get a blank > screen. What is the problem? I cant see any error > messages even though i have set the debug option to > yes. > > I'm sure my m3upaths options are wrong in the config > file but i don't think that this is the problem. > i can't figure out how to set this option properly > anyway. > > Thanks in advance. > could you provide a bit more information about which versions of jamdb / apache / php /client-browser you are running? -marc |
From: John P. <jp...@ya...> - 2004-10-29 21:34:30
|
Hi, i've just installed the latest jamdb. I have created and loaded songs into the database. I have created a user account. The problem: After logging in with my user account i get a blank screen. What is the problem? I cant see any error messages even though i have set the debug option to yes. I'm sure my m3upaths options are wrong in the config file but i don't think that this is the problem. i can't figure out how to set this option properly anyway. Thanks in advance. __________________________________ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. http://promotions.yahoo.com/new_mail |
From: Joe B. <z3...@ya...> - 2004-10-04 16:27:41
|
For those unfortunate enough to walk in my footsteps, here is what I did to get things working. I added the port my webserver is running on in my jamdb.conf file, as Marc indicated below. Also, I created a link in my webserver's htdocs which points to the directory my songs actually reside in. Thanks for the help Marc! - JoeB --- Marc Schiffbauer <ma...@sc...> wrote: > From: Marc Schiffbauer <ma...@sc...> > To: jam...@li... > Subject: Re: [jamdb-user] alternate ports and other > questions > Date: Tue, 28 Sep 2004 13:11:53 +0200 > > * Joe Beiter schrieb am 27.09.04 um 20:47 Uhr: > > > > I'm running web services on an alternate unused > port. > > I noticed when trying to play a song, xmms or > > realplayer is trying to connect to my host on port > 80. > > > > ie: I connect to http://hostname:2430/jamdb, pick > out > > a song to listen to, then my mp3 player tries to > > connect back on port 80. Is this port being > defined by > > the server, or the client? > > misconfigurstion? > > > > > Also, when I try to point my player directly to > > http:hostname:2430/mp3/foo/bar/foo.mp3, I get the > > error "[Mon Sep 27 14:37:29 2004] [error] [client > > 169.144.24.3] File does not exist: > /www/htdocs/mp3" > > This seems not to be a JamDB problem... > > > > > > This is my array entry: > > ----------------------------------------- > > $m3u_paths = array("Web" => > > "http://glyph/mp3/", > > "NFS" => > > "/mnt/server/home/mp3/", > > "Samba" => "m:/" > > ); > > ----------------------------------------- > > Her you did not mention the port anywhere like > http://glyph:2430/mp3/ > or something... > > > I get this error whether "mp3" is in my jamdb.conf > > entry or not. There is no file/directory called > mp3 in > > /www/htdocs.. should there be a link to my music > > directory in there? I assumed jamdb would > interpret > > it, based on the entries in jamdb.config. > > But /www/htdocs is your webservers DocRoot, right? > > > > > cutpath entry is: define("CUT_PATH", > "/home/jwb/"); > > > > My mp3 directory is in there. > > ok, but you must be able to browse to your songs > with xour browser, > because your player will try the same... > > Maybe 0.9.9 will have an option to stream songs > without having the > requirement of having direct access to them. > > > > > > > Thirdly... is 0.9.9 available anywhere? The one > with > > the reworked configuration? ;-) > > Its not released yet. > > > -Marc > -- > 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 > > > ------------------------------------------------------- > This SF.Net email is sponsored by: YOU BE THE JUDGE. > Be one of 170 > Project Admins to receive an Apple iPod Mini FREE > for your judgement on > who ports your project to Linux PPC the best. > Sponsored by IBM. > Deadline: Sept. 24. Go here: > http://sf.net/ppc_contest.php > _______________________________________________ > JamDB-User mailing list > Jam...@li... > https://lists.sourceforge.net/lists/listinfo/jamdb-user > __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete - You start. We finish. http://promotions.yahoo.com/new_mail |
From: Marc S. <ma...@sc...> - 2004-09-28 11:11:55
|
* Joe Beiter schrieb am 27.09.04 um 20:47 Uhr: > > I'm running web services on an alternate unused port. > I noticed when trying to play a song, xmms or > realplayer is trying to connect to my host on port 80. > > ie: I connect to http://hostname:2430/jamdb, pick out > a song to listen to, then my mp3 player tries to > connect back on port 80. Is this port being defined by > the server, or the client? misconfigurstion? > > Also, when I try to point my player directly to > http:hostname:2430/mp3/foo/bar/foo.mp3, I get the > error "[Mon Sep 27 14:37:29 2004] [error] [client > 169.144.24.3] File does not exist: /www/htdocs/mp3" This seems not to be a JamDB problem... > > This is my array entry: > ----------------------------------------- > $m3u_paths = array("Web" => > "http://glyph/mp3/", > "NFS" => > "/mnt/server/home/mp3/", > "Samba" => "m:/" > ); > ----------------------------------------- Her you did not mention the port anywhere like http://glyph:2430/mp3/ or something... > I get this error whether "mp3" is in my jamdb.conf > entry or not. There is no file/directory called mp3 in > /www/htdocs.. should there be a link to my music > directory in there? I assumed jamdb would interpret > it, based on the entries in jamdb.config. But /www/htdocs is your webservers DocRoot, right? > > cutpath entry is: define("CUT_PATH", "/home/jwb/"); > > My mp3 directory is in there. ok, but you must be able to browse to your songs with xour browser, because your player will try the same... Maybe 0.9.9 will have an option to stream songs without having the requirement of having direct access to them. > > > Thirdly... is 0.9.9 available anywhere? The one with > the reworked configuration? ;-) Its not released yet. -Marc -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 |
From: Joe B. <z3...@ya...> - 2004-09-27 18:47:39
|
I'm running web services on an alternate unused port. I noticed when trying to play a song, xmms or realplayer is trying to connect to my host on port 80. ie: I connect to http://hostname:2430/jamdb, pick out a song to listen to, then my mp3 player tries to connect back on port 80. Is this port being defined by the server, or the client? Also, when I try to point my player directly to http:hostname:2430/mp3/foo/bar/foo.mp3, I get the error "[Mon Sep 27 14:37:29 2004] [error] [client 169.144.24.3] File does not exist: /www/htdocs/mp3" This is my array entry: ----------------------------------------- $m3u_paths = array("Web" => "http://glyph/mp3/", "NFS" => "/mnt/server/home/mp3/", "Samba" => "m:/" ); ----------------------------------------- I get this error whether "mp3" is in my jamdb.conf entry or not. There is no file/directory called mp3 in /www/htdocs.. should there be a link to my music directory in there? I assumed jamdb would interpret it, based on the entries in jamdb.config. cutpath entry is: define("CUT_PATH", "/home/jwb/"); My mp3 directory is in there. Thirdly... is 0.9.9 available anywhere? The one with the reworked configuration? ;-) Sorry for the wordiness of this message. - JoeB __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail |
From: Marc S. <ma...@sc...> - 2004-09-04 16:06:47
|
* Joe Beiter schrieb am 04.09.04 um 16:35 Uhr: > It looks like my problem might be somewhere else or I > have an additional one. The songs still do not play > and in my httpd logs file I am getting the error: > ---------------------- > [Sat Sep 04 10:18:43 2004] [error] [client > 192.168.1.103] File does not exist: /www/htdocs/mp3 > ---------------------- Seems to me that there is still an error in the config. > > I copied the contents of /etc/jamdb/apache.conf into > my httpd.conf, You may better just include the apache.conf file in your httpd.conf (at the end of the file) > but it doesn't seem to change this > particular behavior. I wasn't sure where to put it so > I just put it after the sections in conf that also had > /Directory directives. > > It seems like I'm close. I use the current cvs version which has many changes regarding configuring jamdb, so maybe you want to try that out... there is still some work to do, but it is close to what version 0.9.9 will look like. and it is stable for me (tm). -marc -- ********************************************************************** * Unix is like a wigwam: no gates, no windows, only apache inside * ********************************************************************** |
From: Joe B. <z3...@ya...> - 2004-09-04 14:35:36
|
It looks like my problem might be somewhere else or I have an additional one. The songs still do not play and in my httpd logs file I am getting the error: ---------------------- [Sat Sep 04 10:18:43 2004] [error] [client 192.168.1.103] File does not exist: /www/htdocs/mp3 ---------------------- I copied the contents of /etc/jamdb/apache.conf into my httpd.conf, but it doesn't seem to change this particular behavior. I wasn't sure where to put it so I just put it after the sections in conf that also had /Directory directives. It seems like I'm close. --- Marc Schiffbauer <ma...@sc...> wrote: > * Joe Beiter schrieb am 02.09.04 um 22:41 Uhr: > > Thanks Marc, > > hi joe, > > > > > That was causing my problem. I didn't have > directories > > defined leading to the music directories. I've > > corrected that to say: > > --------------------------------------- > > define("CUT_PATH", "/home/joeb/mp3/"); > > $m3u_paths = array("Web" => > > "http://glyph", > > "NFS" => > > "/mnt/server/home/mp3/", > > "Samba" => "m:/" > > ); > > > > Now, the correct directory path comes up with one > > exception. What is displayed in xmms info is: > > "http://glyph/%7Ejoeb/mp3/joe_satriani/foo.mp3" > > > > The music files are actually in ~joeb/mp3 but if I > > follow the instructions cited in config (to enter > the > > directory path one level above) then I get > > joeb/mp3/mp3 sent. I'm assuming the %7E is not > > desireable? > > It is. The path is urlencoded ("~" => "%7E") > > is it now working for you? > > -marc > > -- > ° <M3rlin-> what is the legal age to buy > alcoholic in england ? ° > ° <p5Ds13a06> you cant buy alcoholics > ° > ° <p5Ds13a06> but if you wink the right way, > ° > ° some of them will follow you home for > free ° > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic > Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 > today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > JamDB-User mailing list > Jam...@li... > https://lists.sourceforge.net/lists/listinfo/jamdb-user > __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail |
From: Marc S. <ma...@sc...> - 2004-09-03 14:55:56
|
* Joe Beiter schrieb am 02.09.04 um 22:41 Uhr: > Thanks Marc, hi joe, > > That was causing my problem. I didn't have directories > defined leading to the music directories. I've > corrected that to say: > --------------------------------------- > define("CUT_PATH", "/home/joeb/mp3/"); > $m3u_paths = array("Web" => > "http://glyph", > "NFS" => > "/mnt/server/home/mp3/", > "Samba" => "m:/" > ); > > Now, the correct directory path comes up with one > exception. What is displayed in xmms info is: > "http://glyph/%7Ejoeb/mp3/joe_satriani/foo.mp3" > > The music files are actually in ~joeb/mp3 but if I > follow the instructions cited in config (to enter the > directory path one level above) then I get > joeb/mp3/mp3 sent. I'm assuming the %7E is not > desireable? It is. The path is urlencoded ("~" => "%7E") is it now working for you? -marc -- ° <M3rlin-> what is the legal age to buy alcoholic in england ? ° ° <p5Ds13a06> you cant buy alcoholics ° ° <p5Ds13a06> but if you wink the right way, ° ° some of them will follow you home for free ° |
From: Joe B. <z3...@ya...> - 2004-09-02 23:55:43
|
Thanks Marc, That was causing my problem. I didn't have directories defined leading to the music directories. I've corrected that to say: --------------------------------------- define("CUT_PATH", "/home/joeb/mp3/"); $m3u_paths = array("Web" => "http://glyph", "NFS" => "/mnt/server/home/mp3/", "Samba" => "m:/" ); Now, the correct directory path comes up with one exception. What is displayed in xmms info is: "http://glyph/%7Ejoeb/mp3/joe_satriani/foo.mp3" The music files are actually in ~joeb/mp3 but if I follow the instructions cited in config (to enter the directory path one level above) then I get joeb/mp3/mp3 sent. I'm assuming the %7E is not desireable? Thank you, - JoeB --- Marc Schiffbauer <ma...@sc...> wrote: > * Joe Beiter schrieb am 02.09.04 um 19:26 Uhr: > > linux 3.0 > > Mysql 4.0.20 > > Apache 2.0something > > firebird web browser > > jamdb 0.9.8 > > > > When I click on a song to play, my browser calls > xmms. > > It fails with the error "Couldn't look up host". > When > > I view the info on the song, it is displaying for > > filename > > > "http:///home/joeb/mp3/led_zepplin/physical_graffiti_cd_2/down_by_the_seaside.mp3" > > What does your config look like? > > -Marc _______________________________ Do you Yahoo!? Win 1 of 4,000 free domain names from Yahoo! Enter now. http://promotions.yahoo.com/goldrush |
From: Marc S. <ma...@sc...> - 2004-09-02 18:17:36
|
* Joe Beiter schrieb am 02.09.04 um 19:26 Uhr: > linux 3.0 > Mysql 4.0.20 > Apache 2.0something > firebird web browser > jamdb 0.9.8 > > When I click on a song to play, my browser calls xmms. > It fails with the error "Couldn't look up host". When > I view the info on the song, it is displaying for > filename > "http:///home/joeb/mp3/led_zepplin/physical_graffiti_cd_2/down_by_the_seaside.mp3" What does your config look like? -Marc -- BUGS My programs never have bugs. They just develop random features. If you discover such a feature and you want it to be removed: please send an email to bug at links2linux.de |
From: Joe B. <z3...@ya...> - 2004-09-02 17:33:07
|
linux 3.0 Mysql 4.0.20 Apache 2.0something firebird web browser jamdb 0.9.8 When I click on a song to play, my browser calls xmms. It fails with the error "Couldn't look up host". When I view the info on the song, it is displaying for filename "http:///home/joeb/mp3/led_zepplin/physical_graffiti_cd_2/down_by_the_seaside.mp3" I'm not sure where to fix this. It doesn't work remotely or even on the local system where /home is valid. The only thing I can think of is that perhaps Apache 2.0 isn't compatible and I need to load 1.something. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Pedro J A. <pe...@ag...> - 2003-11-19 14:32:04
|
It would be easier to manage, and user friendly. Pedro On Tue, 2003-11-18 at 20:19, Marc Schiffbauer wrote: > * Pedro J Aguayo schrieb am 19.11.03 um 00:04 Uhr: > > Well the idea is that you could create your custom playlist and then > > play it with your media player as you do now using .m3u > > > > > > but where is the advantage of creating the list on the serverside? > I just click the songs that I want and they go into my players > playlist... |
From: Pedro J A. <pe...@ag...> - 2003-11-19 14:30:21
|
Thats right. would be really nifty, sort of like a jukebox. Pedro On Wed, 2003-11-19 at 03:40, "Daniel Kröhl" wrote: > Maybe he mean that: > > You should be able to mark for example 20 Songs from different CDs and add > them to one Playlist. > And then you should be able to download this Playlist as m3u for playing. > > MFG > Daniel > > > * Pedro J Aguayo schrieb am 19.11.03 um 00:04 Uhr: > > > Well the idea is that you could create your custom playlist and then > > > play it with your media player as you do now using .m3u > > > > > > > > > > but where is the advantage of creating the list on the serverside? > > I just click the songs that I want and they go into my players > > playlist... > > > > -- > > ------------------------------------------- > > Take back the Net! http://www.anti-dmca.org > > ------------------------------------------- > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > JamDB-User mailing list > > Jam...@li... > > https://lists.sourceforge.net/lists/listinfo/jamdb-user > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > JamDB-User mailing list > Jam...@li... > https://lists.sourceforge.net/lists/listinfo/jamdb-user > |
From: <dan...@gm...> - 2003-11-19 08:41:05
|
Maybe he mean that: You should be able to mark for example 20 Songs from different CDs and add them to one Playlist. And then you should be able to download this Playlist as m3u for playing. MFG Daniel > * Pedro J Aguayo schrieb am 19.11.03 um 00:04 Uhr: > > Well the idea is that you could create your custom playlist and then > > play it with your media player as you do now using .m3u > > > > > > but where is the advantage of creating the list on the serverside? > I just click the songs that I want and they go into my players > playlist... > > -- > ------------------------------------------- > Take back the Net! http://www.anti-dmca.org > ------------------------------------------- > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > JamDB-User mailing list > Jam...@li... > https://lists.sourceforge.net/lists/listinfo/jamdb-user > |
From: Marc S. <ma...@sc...> - 2003-11-19 01:18:44
|
* Pedro J Aguayo schrieb am 19.11.03 um 00:04 Uhr: > Well the idea is that you could create your custom playlist and then > play it with your media player as you do now using .m3u > > but where is the advantage of creating the list on the serverside? I just click the songs that I want and they go into my players playlist... -- ------------------------------------------- Take back the Net! http://www.anti-dmca.org ------------------------------------------- |
From: Pedro J A. <pe...@ag...> - 2003-11-18 23:04:54
|
Well the idea is that you could create your custom playlist and then play it with your media player as you do now using .m3u On Tue, 2003-11-18 at 17:51, Marc Schiffbauer wrote: > * Pedro J Aguayo schrieb am 18.11.03 um 15:40 Uhr: > > Hey Marc, > > pedro, please answer to the list.. not pm. thanks > > > By the way its a great app. > > Would be great if you could create playlists on the server, and then > > play them, sort of like a jukebox. > > and who sould then play the songs? the server? > > -Marc |
From: Marc S. <ma...@sc...> - 2003-11-18 22:50:53
|
* Pedro J Aguayo schrieb am 18.11.03 um 15:40 Uhr: > Hey Marc, pedro, please answer to the list.. not pm. thanks > By the way its a great app. > Would be great if you could create playlists on the server, and then > play them, sort of like a jukebox. and who sould then play the songs? the server? -Marc -- ------------------------------------------- Take back the Net! http://www.anti-dmca.org ------------------------------------------- |
From: Marc S. <ma...@sc...> - 2003-11-18 11:59:59
|
* Pedro J Aguayo schrieb am 17.11.03 um 22:05 Uhr: > Hi Marc, > Can I create playlists? from different songs? > > Thanks > If you tell your player to enqueue songs instead of replacing the whole list you can create playlists. I do it this way. For example to make xmms work like that, call it with the -e option... -Marc -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 |
From: Marc S. <ma...@sc...> - 2003-11-17 20:50:45
|
* Pedro J Aguayo schrieb am 17.11.03 um 16:03 Uhr: > How do I get this to work, or how does it work, Will it create a > playlist on the server? > Any information will be greatly appreciated > it will send a playlist to your browser. This must then interpret and play it from the server. This means that your computer needs nfs or smb access to the server for example. -- 8AAC 5F46 83B4 DB70 8317 3723 296C 6CCA 35A6 4134 |
From: Pedro J A. <pe...@ag...> - 2003-11-17 15:04:44
|
How do I get this to work, or how does it work, Will it create a playlist on the server? Any information will be greatly appreciated Thanks Pedro |