Main > Free Download Search >

Free video sharing script for windows server software for linux

video sharing script for windows server

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9174
PHP/JavaScript interpreter 0.01011

PHP/JavaScript interpreter 0.01011


PHP/JavaScript interpreter is a PHP JavaScript script interpreter for server-side use. more>>
This scripting language interpreter is implemented in PHP and allows to execute user-supplied JavaScript-lookalike code server-side, without compromising security because everything runs safely in a sandbox.

This is of course much slower than a real interpreter, but is useful for integration into CMS/Wiki engines to have users extend a sites dynamic functions.

It can be connected to the hosting interpreter (PHP) by allowing access to certain (interface) functions and even PHP variables.
<<less
Download (0.030MB)
Added: 2005-04-15 License: Freeware Price:
1657 downloads
LineControl Server 2.1.21

LineControl Server 2.1.21


LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. more>>
LineControl allows you to remotely control the Internet connection of a Linux masquerading server using multiple clients. It takes care with the number of clients using the connection and decides upon this number whether the connection should be up or down.
The clients show the time the connection is up and throughput statistics. Different connection types are supported, such as analog modems, ISDN, or even cable modems and ADSL devices.
Main features:
- user accounting using Linux-PAM or passwd/shadow file
- controlling multiple lines
- throughput measuring
- logging & analizing (view example)
- logging to a MySQL database (view example)
- html formatted status report via webserver (view example)
- different line types (analog, isdn, adsl, ... it should be possible to run LC with any line!)
- pinger (to avoid line-drops)
- reporting data (time, nr, ...) about incoming isdn calls to the clients (inclusive addressbook lookup)
- client dependant modifications of the NAT servers firewall (using an external script whenever a client goes on- or offline)
<<less
Download (0.20MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1496 downloads
kraskarta 0.9 (Server)

kraskarta 0.9 (Server)


kraskarta is an interactive map engine. more>>
kraskarta is an interactive map engine. It is based on Macromedia Flash technology with server scripts written in Perl with a PostgreSQL database.
kraskartas features include the ability to search for a street and address, for a bus route, and for information about objects.
Enhancements:
- This is the first open release after being proprietary code.
<<less
Download (0.23MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1107 downloads
Game Server Startup Script 1.1

Game Server Startup Script 1.1


Game Server Startup Script project is a startup script to manage dedicated game servers like Quake3. more>>
Game Server Startup Script project is a startup script to manage dedicated game servers like Quake3.
Game Server Startup Scripts is a startup script to manage a wide variety of Linux dedicated game servers. It can start/stop/restart/fix dedicated game servers like Quake3, Half Life, Tribes 2, UT2K4, BF1942 and others.
It uses qstat through cron to validate that a game is running as expected. If a game is not running as expected, the game is automatically restarted from the script through cron.
GSSS was written becuase I wanted a way to start up a variety of games in a standard way. Then I also wanted to make sure the games stayed running even after a crash.
So I wrote this perl script. It will start games and through a cron job make sure they stay running. If you have qstat installed it can also verify the game is running like it is suppose to be and not in some strange state where no one can play.
If the game is running but unresponsive, it kills it and starts it again. You can also stop running games cleanly as well.
Games supported by "Game Server Startup Script":
- Quake2
- Quake3
- RTCW
- Half Life
- Unreal
- UT2K3
- UT2K4
- Tribes 2
- NWN
- BF1942
- ET
Enhancements:
- Very minor changes, minor readme changes, clean up
<<less
Download (0.014MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1084 downloads
Script Promotion Wizard 2.5

Script Promotion Wizard 2.5


Script Promotion Wizard is a tool that can be added to a Web site to help manage script promotion. more>>
Script Promotion Wizard is a free online tool you can add to your web site or use on your local server to add your script to script directories.
Since an automated solution to script promotion is probably impossible due to the lack of a standard submission process for script directories, we came up with what we think is the next best thing.
Main features:
- Easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- Save program profiles for later use.
- Completely customizable! Add new scripts to promote through simple XML interface.
- Add new script directories to the Script Promotion Wizard by adding a simple entry into an XML file.
- Copying and pasting values into the online forms is as easy as we could possibly make it. You only have to click, copy, click and paste. No messy highlighting required.
- Best of all, Script Promotion Wizard is completely free!
<<less
Download (0.016MB)
Added: 2006-01-30 License: Freeware Price:
1362 downloads
Run a web server inside LAN

Run a web server inside LAN


Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.

Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.

Sample:

#external and internal interfaces
EXT=eth0
INT=eth1

# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin

# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0

# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request

# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346

# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53

# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED

# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139

# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960

# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53

# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535

# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535

# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023

iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP

# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Movie2XviD Script 0.2.0

Movie2XviD Script 0.2.0


Movie2XviD is a script for encoding a DVD or other movie to AVI (XviD). more>>
Movie2XviD is a script for encoding a DVD or other movie to AVI (XviD).
Auto computing bitrate and hight quality, but it is a little slowly.
Enhancements:
- Add options
- video filter
- help
- new computing bitrate
<<less
Download (0.001MB)
Added: 2007-01-21 License: Perl Artistic License Price:
1007 downloads
Comment Script 1.0

Comment Script 1.0


Comment Script is a script that allows comments to be left on any existing PHP or HTML page. more>>
Comment Script is a script that allows comments to be left on any existing PHP or HTML page. By default, Comment Script shows name, e-mail, homepage, title, and comment fields, though any can be disabled.
The "comment" field is mandatory and must be filled out before the form can be submitted. In order to prevent the script from being abused by automatic spam bots, you can enable the CAPTCHA feature.
The script then asks your visitors to enter a text they see in the image below the comment form into an input box. It also features an admin area where comments can be edited and deleted and the front-end language set.
Main features:
- Visitors can enter a name, e-mail, homepage, comment title and comment text
- Comment script can be included in existing web pages
- To prevent comment spam you can enable the Captcha feature
- Admin area for editing and deleting comments
- Completely template driven
- Installation routine
How the script works:
Once you have the script installed on your server you can include it in any existing PHP or HTML page. By default the script shows the form fields "name", "E-mail", "Homepage", "Title", and "Comment". You are free to remove some of the fields and only leave the ones you want.
The field "Comment" is mandatory and the form will not submit until that field has been filled out.
In order to prevent the script from being abused by automatic spam bots, you can enable the Captcha feature. The script then asks your visitors to enter a text they see in the image below the comment form into an input box. The comment will only be submitted if the strings match. Visitors have to ensure that their browser support and accept cookies, otherwise the comment cannot be verified.
The script also features an admin area where comments can be edited and deleted. Also there is a section for settings where you can set the front end language as well as the admin account.
<<less
Download (0.31MB)
Added: 2006-08-08 License: Free for non-commercial use Price:
1183 downloads
Valentina for PHP(liunx) 3.5.2

Valentina for PHP(liunx) 3.5.2


Valentina PHP is the ideal solution for server-side scripting more>> Quickly access millions of records anywhere - on a local computer, CD, DVD, flash media or on your server. It doesnt matter if it contains text, pictures, dates, numbers or calculated field data.
The ideal database solution for PHP development: fast, easy and royalty free. Dont get caught in licensing complications created by mySQL dual licensing
Valentina is known for its legendary speed. PHP is the ideal solution for server-side scripting.
Royalty Free, Unlimited Distribution of Valentina Embedded Server. Valentina local runtimes, including the default Valentina Embedded Server, can be deployed royalty free! Compare that with the per server, per licensing of mySQL for any commercial solution.
Keep Your Source Open or Closed as you Like. If you want the freedom to distribute other databases royalty free, you have to open up your source under the General Public License (GPL) - dont get trapped in a viral spiral.
New! Valentina Office Server Features PHP Support! Paradigma Software?s business ready database server features built in support for PHP 4 and PHP 5+!
What PHP Users Want Ease of Use
mySQL Compatible API Royalty Free Distribution
PEAR API Option Runs from Any Media
ADO DB API Option Easy VServer Connectivity
Use with PHP 4 or PHP 5 Set of samples
Superior Picture Handling Documentation + knowledgebase
Client/Server Side Cursors Free, Open Community Support
Valentina Studio
No Compromises
Easy automation Valentina SQL + API
Text and XML Import/Export
Encryption
Unicode
RegEx advanced search
<<less
Download (931KB)
Added: 2009-04-06 License: Freeware Price: Free
202 downloads
NoMachine NX Server Manager 3.0.0-28

NoMachine NX Server Manager 3.0.0-28


NoMachine NX Server Manager is the upcoming management interface for the NX Terminal Server system. more>>
NoMachine NX Server Manager is the upcoming management interface for the NX Terminal Server system.
The NX Server Manager is the easy-to-use NoMachine graphical administration interface for Unix systems that allows administrators to configure, manage and monitor the NX servers across a world-wide network.
The NX Server Manager is an add-on to the NX Server Enterprise and Small Business Edition, provided at no extra cost.
The NX Server Manager sports most of the features you would expect from an enterprise-grade application, with the easiness of use of a Web interface.
NoMachine NX is a fast terminal server system based on the X11 protocol. In addition, NX also translates and embeds the MS Windows Terminal Server and VNC protocols into X/NX.
By embedding RDP and RFB, it enables users to compress and accelerate remote Windows and VNC sessions. NX lets you work fluently even across slow links like modems.
The NX project provides a suite of libraries and X11 proxying agents implementing efficient compression and optimized transport of X11, SMB, IPP, HTTP, and arbitrary protocols like audio over the Internet.
Enhancements:
- This release provides fixes for a number of problems: the NX Server Manager setup script looked for a nonexistant file during the install or upgrade procedure, reloading the NX statistics Web page may have failed, and NX Server Manager may have provided a misleading message when NX statistics couldnt be generated.
<<less
Download (2.3MB)
Added: 2007-08-03 License: Other/Proprietary License Price:
819 downloads
Abyss Web Server X1 2.0.6

Abyss Web Server X1 2.0.6


Abyss Web Server is a compact web server available for Windows, MacOS X, Linux, and FreeBSD operating systems. more>>
Abyss Web Server is a compact web server available for Windows, MacOS X, Linux, and FreeBSD operating systems.
Despite its small footprint, it supports HTTP/1.1, dynamic content generation through CGI/1.1 scripts, ISAPI extensions, Server Side Includes (SSI), custom error pages, password protection, IP address control, anti-leeching, and bandwidth throttling.
It features also an automatic antihacking system as well as a multilingual remote web management interface that makes its configuration as easy as browsing a web site.
Main features:
- Virtual hosting (support for many hosts on a single computer)
- ISAPI extensions support
- Custom directory listings
- Multilingual remote web configuration interface (console)
- Unicode support
- Automatic anti-hacking system
- Anti-leeching system to control cross-site linking
- Server-wide bandwidth control
- Per file and per directory bandwidth control
- Windows System Service, MacOS X Startup Item, and Linux/FreeBSD daemon support
<<less
Download (0.25MB)
Added: 2005-09-07 License: GPL (GNU General Public License) Price:
1512 downloads
Webnight Commander 1

Webnight Commander 1


Webnight Commander is web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel. The whole program code is organiz more>>

Webnight Commander is web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel.
The whole program code is organized in one PHP script. All you need to do is to upload the php script on your server (set the password) and call the php file. Then you have a fully functional File manager. You can copy, move, edit files.

Requirements: apache web server with php

<<less
Download (33.70KB)
Added: 2009-04-26 License: Freeware Price: $0
184 downloads
KDE Internet share wizard 0.1

KDE Internet share wizard 0.1


KDE Internet share wizard is a Kommnder script that can help you share your internet connection over LAN. more>>
KDE Internet share wizard is a Kommander script that can help you share your internet connection over LAN.
Overview:
I was on a LAN and I needed to share my internet connection because we didnt have any router.
I found this to be quite difficult, but after some searching on internet I found a very good explanation for making this work.
Now, Ive made a WindowsXP like internet connection sharing guide for all who wants to share their internet connection easy and fast.
Usage:
copy the tar.gz file contents into /usr/bin and then run:
kdeinternetshare.sh - English
For all those who are unsure how to use the guide, it should be good to stick to the default settings.
This is only a quite simple guide so suggestions and improvments are welcome.
System requirements:
- Kommander
<<less
Download (0.012MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
976 downloads
1VideoConference 0.5.0.11 Beta

1VideoConference 0.5.0.11 Beta


1VideoConference is completely revolutionizing the way people interact online. more>>
1VideoConference is a project that can completely revolutionize the way people interact online. 1VideoConference allows its Web, Audio/ Video phone, Skype, Msn and Yahoo users to instantly participate in live web conferences without the need for lengthy downloads or complicated installations. At any time, our host customers can simply drop a small piece of code onto their websites and INSTANTLY create their very own online video conference room.
For our users to get started, all they need is a web cam and an internet connection and seconds later they can show presentations, share applications or users desktops, hold live webinars, discuss new strategies face to face with business partners, and more...
Main features:
- Audio and Video Sharing: Low latency, multi-party video and audio sharing brings back the intimacy of a meeting.
- Presentation and Document Sharing: Share your ideas on a presentation or help your partner edit a document in real time collaboration.
- Application sharing: Say you need to teach someone how to use a new piece of software, instead of trying to walk them through it over the phone or instant message, simply share your application with them and show them how its done.
- Desktop Sharing: Share your entire desktop and control of the mouse/keyboard.
- White Board and Annotations: Anyone in the meeting room can leave annotaions or draw an idea on the white board.
- Chat: Not a featured speaker but still want to get your ideas heard? Do this with the multi-user Instant Messaging feature.
- The Hot Seat: Request a spot as an attendee, feature a guest speaker or introduce a new member of the team.
- Record and Archive: Upon the request of the meeting holder, all the interaction is recorded and archived for sharing with non-attendees.
Enhancements:
- System now more stable.
- All service now peer to peer.
- User can delete uploaded Zip modules.
- Enhanced Module Management.
- Multiple Meetings now supported.
- User can select video quality during runtime.
- Host can set the video size during runtime for the all participants(Full Screen).
- Host can share his/ her own desktop with all the other participants.
<<less
Download (19.2MB)
Added: 2007-04-22 License: MPL (Mozilla Public License) Price:
920 downloads
Net::FTPServer 1.122

Net::FTPServer 1.122


Net::FTPServer is a secure, extensible and configurable Perl FTP server. more>>
Net::FTPServer is a secure, extensible and configurable Perl FTP server.
SYNOPSIS
ftpd [--help] [-d] [-v] [-p port] [-s] [-S] [-V] [-C conf_file]
[-P pidfile] [-o option=value]
Net::FTPServer is a secure, extensible and configurable FTP server written in Perl.
Current features:
- Authenticated FTP access.
- Anonymous FTP access.
- Complete implementation of current RFCs.
- ASCII or binary type file transfers.
- Active or passive mode file transfers.
- Run standalone or from inetd(8).
- Security features: chroot, resource limits, tainting, protection against buffer overflows.
- IP-based and/or IP-less virtual hosts.
- Complete access control system.
- Anonymous read-only FTP personality.
- Virtual filesystem allows files to be served from a database.
- Directory aliases and CDPATH support.
- Extensible command set.
- Generate archives on the fly.
Installation:
A standard ftpd.conf file is supplied with the distribution. Full documentation for all the possible options which you may use in this file is contained in this manual page. See the section CONFIGURATION below.
After doing make install, the standard ftpd.conf file should have been installed in /etc/ftpd.conf. You will probably need to edit this file to suit your local configuration.
Also after doing make install, several start-up scripts will have been installed in /usr/sbin/*ftpd.pl. (On Debian in /usr/bin or /usr/local/bin). Each start-up script starts the server in a different configuration: either as a full FTP server, or as an anonymous-only read-only FTP server, etc.
The commonly used scripts are:
- /usr/sbin/ftpd.pl
- /usr/sbin/ro-ftpd.pl
The first script is for the full FTP server.
These scripts assume that the perl interpreter can be found on the current $PATH. In the rare situation when this is not the case, you may need to edit these scripts.
<<less
Download (0.12MB)
Added: 2006-06-16 License: Perl Artistic License Price:
1226 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5