Jump to content

poxyexams

Active Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by poxyexams

  1. I know its from 2006, I've only started watching Hack5, for all I know Harrison might of came back hahha, anyway just wanted to say that I enjoyed his part of the show :)
  2. Hey Harrison, really enjoy your part of the show, and it's disappointing that you left. I'm from Ireland and currently on season 3! You better make a few appearances in the following series that I haven't watched yet..
  3. Hey guys so I am running BackTrack4 on a virtual machine (VMWare) I can use the Internet while using BackTrack but the OS doesn't recognize any wireless cards. I'm not too sure what to do as the internet DOES work on the VM. I tried iwconfig lo no wireless extensions. eth0 no wireless extensions. when I try ifconfig eth0 Link encap:Ethernet HWaddr 00:0c:29:df:51:14 inet addr:xxx.xxx.xx.xx Bcast:xxx.xxx.xx.xxx Mask:255.255.255.0 inet6 addr: fx8x::x0x:xxff:fexx:xxx/xx Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:178973 errors:0 dropped:0 overruns:0 frame:0 TX packets:124384 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:206897536 (206.8 MB) TX bytes:64714610 (64.7 MB) Interrupt:19 Base address:0x2000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:5620 errors:0 dropped:0 overruns:0 frame:0 TX packets:5620 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:22153634 (22.1 MB) TX bytes:22153634 (22.1 MB) I am using a Dell Laptop with a Dell Wireless 1395 WLAN Mini-Card. Does anyone know how I can get BackTrack (or any OS on a VM) to pick up the wireless card. Thanks guys :D
  4. Going to check these out later guys, only thing is my website is on a server online. My music is on the external hard drive connected to the router. Will these applications/programs only scan the music in your web server folder? /var/wwww/etc.... I need it to scan xx.xxx.xxx/shares/usb/x/ Wonder can I have the application running on the server online and scan music on that external usb.
  5. Two small problems, nearly 100% working .USER logs on to secure page. .Input text field called 'audiourl' and submit button .Music Player .Loads html from another page and shows all audio files on the drive Page has simple INPUT text box that prompts the user to enter an audio file URL and stores the input in a php variable called $url When submit is clicked, the variable $url (audio file) is added to the audio player ------------------------------------- I want to add a second audio player & a second audio url text box. I did it and I can get the audio to play in each player. However every time submit is hit for each player it reloads the page (stopping the current playing audio player) Is it possible to to have one audio player playing music and when the user enters a second url it just goes into the player number 2 without loading the entire page (and stopping the current playing track) --------------------------------------- Just a small problem here; I get this error message on the page: Notice: Undefined index: songurl in /var/www/player.php on line 11 --------------------------------------- Thanks guys, and here is the CODE to the actual page: <html> <head><title>myStreamZ</title></head> <body> <form method='POST'> Player 1: <input type='text'value='Song URL' name='songurl'><br/> <input type='submit' value='Add Track To Player 1'><br/> <br/> <?php $url=$_POST['songurl']; ?> <br/> <center>Player 1<br/><embed type="application/x-shockwave-flash" flashvars="audioUrl=<?php echo $url; ?>" src="http://www.google.com/reader/ui/3523697345-audio-player.swf" width="400" height="27" quality="best"></embed> <br/> <br/> <br/> <object data=http://xx.xxx.xxx.xxx/???/???/???/?/ width="1000" height="300"> <embed src=http://xx.xxx.xxx.xxx/???/???/???/?/ width="600" height="400"> </embed> Error: Embedded data could not be displayed. </object> </body> </html> --------------------- Thanks guys, once I get this I will be very happy :D
  6. I tried that but didn't work, tried it again and works :) must of been a small typo by me... I have to player working so they enter the url of the mp3 they want to play, it then plays it in the player. Going to try add it to the player play list instead of playing it straight away. Thanks guys
  7. @Infiltrator, thanks that works now and streams the music :) I'm gonna look into adding a play list to that player. Just doing some testing at the moment, have some php code to take input from the user and stores this input as variable 'url' think the code I used is something along the lines of this: I want to add the php (form input) $url to the html code above I have hit a brick wall here, can't get the input from the form box into the above html player What am I missing, Thanks for the suggestions guys, really appreciate it :)
  8. Hey guys I was wondering if anyone here can help me :) Here's the pro-lemo I have a hard drive connected to my router. I can access the files on the drive on any Computer/laptop anywhere on the network (specifically audio .mp3/.wav files) I can choose the song I want and play it straight away. Using the internet (in a friends house) I can dial in my IP address and log into these files. I can see all my audio files. I can download them and play them, however I can not STREAM these files :( I want to be able to have a script/application that allows the user to see all these files and choose the files and stream the audio. For the moment, before I make the applications all cool I need it to simply stream the audio. I was wondering is there anyway I can write some code and embed it on a website that allows the user to stream (not download these files) I began writing some code for this. I can download the files but can't stream them. If I click the URL: http://xx.xxx.xxx.xx/shares/usb/Pete/x/ ... ne_Day.mp3 I get the option to download/play the file. I want to embed this into my website so It can be streamed, Some simple testing using: <embed src="http://xx.xxx.xxx.xx/shares/usb/Pete/x/%26ME_One_Day.mp3" width="140" height="40" autostart="false" loop="FALSE"> </embed> It won't play it. But if I just put a link to the file it's self it will download and play properly. ------------------------ Anyone know what I am doing wrong? Thanks guys!
×
×
  • Create New...