CumulusClips is an open source video sharing (content management) platform, that provides one of the best video sharing features similar to Youtube. With the help of CumulusClips, you an start your own video sharing website or add video sections on your existing website, where users can register, upload videos, comment on videos, rate videos, embed videos and much more.

CumulusClips Features
- Easy uploading of videos (mpg, avi, divx and more) from user computer with upload progress bar.
- Add, Delete and Edit Videos from the Dashboard.
- Allow or disable comments on videos and as well as video embedding.
- Easy user registration with unique url for their profile page and fully profile customization.
- Approve or Reject user uploaded videos via Dashboard.
- Built-in theme/plugin and translation ready.
- Easily create, delete and run Ads.
- Support for future automatic updates.
CumulusClips Demo
Please have a quick look at the demo page deployed by the developer at the following location.
Server Requirements
CumulusClips application only runs in Unix/Linux operating systems. Following are the requirements to run CumulusClips on Linux platform.
- Apache Web Server with mod_rewrite and FFMpeg enabled.
- MySQL 5.0+ and FTP
- PHP 5.2+ with GD, curl, simplexml and zip modules.
PHP Settings
Following are the PHP requirements.
- upload_max_filesize = 110M
- post_max_size = 110M
- max_execution_time = 1500
- open_basedir = no value
- safe_mode = Off
- register _globals = Off
Testing Environment
- Operating System – CentOS 6.5 & Ubuntu 13.04
- Apache – 2.2.15
- PHP – 5.5.3
- MySQL – 5.1.71
- CumulusClips – 1.3.2
Installing CumulusClips in RHEL/CentOS/Fedora and Debian/Ubuntu/Linux Mint
Installing CumulusClips script is a very simple and involves few easy straightforward steps. Before you can start with the install process, make sure that your server meets the requirements for running CumulusClips script.
Step:1 Install Required Packages
Let’s first, install required packages that needed to run CumulusClips video sharing application on the system, using the following easy steps.
On RedHat, CentOS and Fedora
# yum install httpd mysql mysql-server # yum install php php-mysql php-xml pcre php-common php-curl php-gd
Once, the required packages are installed, start the Apache and MySQL service.
# service httpd start # service mysqld start
Next, install FFMPEG package by enabling third party RPMForge Repository under your Linux distributions.
# yum install ffmpeg
On Debian, Ubuntu and Linux Mint
On Debian based system, you can easily install required packages using following commands.
$ sudo apt-get install apache2 mysql-server mysql-client $ sudo apt-get install php5 libapache2-mod-auth-mysql libmysqlclient15-dev php5-mysql curl libcurl3 libcurl3-dev php5-curl $ sudo apt-get install ffmpeg
$ sudo service apache2 start $ sudo service mysql start
Step 2: Create Database and User
Next, create a database and database user to run CumulusClips. Use the following commands to create a database and a user.
# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5340 to server version: 3.23.54 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> CREATE DATABASE cumulusclips; Query OK, 1 row affected (0.00 sec) mysql> GRANT ALL PRIVILEGES ON cumulusclips.* TO "cumulus"@"localhost" IDENTIFIED BY "password"; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.01 sec) mysql> quit
Note: The above, database name, username, and password will required later at the installation wizard.
Step 3: Configure PHP Settings
Open ‘php.ini‘ configuration file and make the following changes as suggested.
# vi /etc/php.ini [on RedHat based Systems]
$ sudo nano /etc/php5/apache2/php.ini [on Debian based Systems]
Search and modify values as suggested in the following.
upload_max_filesize = 110M post_max_size = 110M max_execution_time = 1500 open_basedir = no value safe_mode = Off register _globals = Off
Save and close the file after making changes. Next restart Apache Web Server.
# service httpd restart [on RedHat based Systems]
$ sudo service apache2 restart [on Debian based Systems]
Step 4: Install and Configure FTP
Now, install FTP server (i.e. vsftpd) on your Linux OS, using the following command.
# yum install vsftpd [on RedHat based Systems]
$ sudo apt-get install vsftpd [on Debian based Systems]
Once Vsftpd installed, you can adjust the configuration as shown below. Open up the configuration file.
# vi /etc/vsftpd/vsftpd.conf [on RedHat based Systems]
$ sudo nano /etc/vsftpd.conf [on Debian based Systems]
Change the ‘anonymous_enable‘ to NO.
anonymous_enable=NO
After that, remove ‘#‘ at the beginning of line ‘local_enable‘ option, changing it to YES.
local_enable=YES
Please remove the ‘#‘ at the start of these lines to enable all the local users to chroot to their home directories and will not have access to any other part of server.
chroot_local_user=YES chroot_list_enable=YES chroot_list_file=/etc/vsftpd/chroot_list
Finally restart the vsftpd service.
# service vsfptd restart [on RedHat based Systems]
$ sudo service vsftpd restart [on Debian based Systems]
Step 5: Download & Install CumulusClips
To begin, you must first grab your free copy of CumulusClips script at http://cumulusclips/download/, or you may use following wget command to download it as shown below.
# cd /var/www/html/ [on RedHat based Systems]
# cd /var/www/ [on Debian based Systems]
# wget http://cumulusclips.org/cumulusclips.tar.gz # tar -xvf cumulusclips.tar.gz # cd cumulusclips
Now grant the ‘777‘ (read, write and execute) permission on the following directories. Make sure these directories are writable by Web Server and PHP.
# chmod -R 777 cc-core/logs # chmod -R 777 cc-content/uploads/flv # chmod -R 777 cc-content/uploads/mobile # chmod -R 777 cc-content/uploads/temp # chmod -R 777 cc-content/uploads/thumbs # chmod -R 777 cc-content/uploads/avatars
Next, grant the ownership to cumulusclips for web server to be writeable.
# chown -R apache:apache /var/www/html/cumulusclips [on RedHat based Systems]
# chown -R www-data:www-data /var/www/cumulusclips [on Debian based Systems]
Step 6: CumulusClips Installation Wizard
Once everything is ready, you can have access to your CumulusClips installation wizard at the (http://your-domain.com/cumulusclips/cc-install/), using your web browser.

The installation wizard will verify the files are writable by the web server. If not, you will be asked to enter FTP credentials to perform future updates and other file system changes.

Enter the database details like database name, user and password, that we’ve created in Step #2 above.

Enter, about your site configuration like, Base URL, Sitename, Admin Account, Password and Email.

CumulsCliops Admin Panel

View Front page of a Website.

Start uploading your own videos.

See list of Approved Videos.

General Settings

Start playing videos


That’s it! Now, you can start uploading videos, customizing and branding of your newly installed CumulusClips Video Sharing website.
After finishing install, the display is not complete and the css and image not show. is it problem with access file?
@Samsul,
May its file permission issue, check Apache file permission and user its running to access the files.
Very good, I found a new one called YouPHPTube, an Open source video sharing written in PHP.
Website: youphptube.com/
Download : github.com/DanielnetoDotCom/YouPHPTube
Demo : demo.youphptube.com/
Tutorials: tutorials.youphptube.com
Try this one youphptube, very easy to install with video tutorials
Also a video tutorial to install it as shown here tutorials.youphptube.com/video/how-to-install-youphptube-in-a-fresh-unbutu-server
Sorry again, please correct my earlier post the correct link is tutorials.youphptube.com/video/how-to-install-youphptube-in-a-fresh-ubuntu-server.
Hi,
I want to upload & stream some 4K videos. Does CumulusClips support 4K videos or will my videos get scaled down? How can we support 4K videos if it is not supported by default.
Hoping for a positive reply.
Best Regards,
Joy
I think cumulusclip does not support but youphptube you can setup what video resolution you want on configuration menu
Can’t upload video and access permalink
——————–
Not Found
The requested URL /account/upload/ was not found on this server.
Apache/2.2.22 (Ubuntu) Server at 192.227.xxx.xxx Port 80
@Amri,
Do you have
AllowOverride All
set in the your .htaccess or Apache configuration file? Please check and confirm..it’s working upload video this tutorial?
I had problem with the cc-install not able to take port number in the base_url field. But I can get around it by setting it without the port number, and go to mysql database and change the base_url to the one with port number.