-
Here is a list of sites that could be made better with the vision of Streamline that I've proposed- all of which display Generic sounds and music.
http://www.acoustica.com/mp3-audio-mixer/sounds.htm
http://www.pachd.com/sounds.html
http://www.deusx.com/freesoundeffects.html
http://www.therecordist.com/pages/downloads.html
http://freesoundfiles.tintagel.net/Audio/
and.....
2009-06-18 00:24:47 UTC by jamanderson245
-
to create a transparent div set the css property:
remember never to forget the semicolon ( ; ) after a statement.
2009-06-18 00:15:02 UTC by jamanderson245
-
HELP: to check the transparency of a picture (usually .PNG) open Microsoft FrontPage 2003 ( or this may even work in Expression Web 2). Create a background by selecting FORMAT >> Background, and then choose a very large photo, or a color for the background. Locate the icon file you want to test on your computer and COPY & PASTE it directly into the WYSIWYG editor in FrontPage. Switch to PREVIEW...
2009-06-18 00:08:43 UTC by jamanderson245
-
there are too many mp3 and music artist album catalogs out there. I think ( almost selfishly ) streamline should specialize in displaying a list of generic sounds and generic music for people who want to put up a sound download site that you can download simple sounds ( such as a car alarm, a plane taking off, a door closing, bells, footsteps, etc.) for projects and PowerPoint presentations etc...
2009-06-17 23:56:06 UTC by jamanderson245
-
frozen4time committed patchset 946 of module streamline to the Streamline PHP Media Server CVS repository, changing 1 files.
2007-09-23 18:53:37 UTC by frozen4time
-
about playlisting:
The error seems to occur when saving your 'current playlist' to a saved/named playlist.
I changed this:
Open home/playlists/save_list.php
Replace:
$entry_table->createPLEntry( $listid, $i, addslashes( $items[$i]->getPath() ) );
With:
$entry_table->createPLEntry( $listid, $i, $items[$i]->getPath() );
Don't know whether this causes other problems, but I...
2007-09-21 12:41:20 UTC by thaquis
-
This could be done for:
download/.htaccess:ErrorDocument
browse/.htaccess:ErrorDocument
info/.htaccess:ErrorDocument
m3u/.htaccess:ErrorDocument
stream/.htaccess:ErrorDocument.
2007-09-21 12:18:01 UTC by thaquis
-
Streamline is 'misusing' ErrorDocument 404 for the url-masking system.
This will 'flood' your error_log with 404's of all downloads/streams.
The right way of doing this is using mod_rewrite
I will give a HOWTO for downloading, streaming would be almost the same thing
open src/download/.htaccess
Replace:
ErrorDocument 404 /streamline/download/index.php
With:
RewriteEngine On.
2007-09-21 12:14:29 UTC by thaquis
-
There is no .htaccess in src/core, that should be denying all access from anyone to everywhere
Create src/core/.htaccess:
Order Allow,Deny
Deny from all
Without this file, streamline is vulnerable to several RFI's, what could be exploited by hackers to get access to your system.
2007-09-21 10:57:28 UTC by thaquis
-
Fix:
1. Open core/indexing/MediaDBMaintainer.php
2. Search for opendir
3. Add these lines before opendir:
if(!is_dir($file) || !is_readable($file) || !is_executable($file))
return FALSE;
4. Repeat steps 2 and 3
5. Repeat steps 2 upto 4 for core/indexing/MediaInfoCacheMaintainer.php
And atleast indexing won't raise these errors
Grep on opendir resulted...
2007-09-20 22:56:56 UTC by thaquis