phpUploader v2.1 - Opensource php based auto uploader

Status
Not open for further replies.
Yes I have installed ffmeg from yum, but I have centos i686 not x64, maybe your mtn is for x64..

I think the binary is for i386... Maybe it runs on both (like rar/unrar binary works for both 32 and 64 bit versions.


well i have my own VPS.Can you pm me the commands to install ffmpeg on Centos 5 32bit ?? :|

Here is the simple version of it :)
Code:
yum update -y
rpm -ivh http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.5.1-1.el5.rf.i386.rpm
rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
yum install ffmpeg -y
 
@warezrock, remember misconfiguration with FFMPEG will cause your php to give 500 errors and you may need a server os reformat... Be care full with that option.

Personally, i have had success with install ffmpeg from rpmforge.


@lifetalk, i thought u said the mtn binary does not need ffmpeg to be installed on server???

I am not sure of that since I have ffmpeg installed on my server. So there's no way I can test if the binary works without it. But I doubt. MTN's page says it needs a few libraries to work that are included with ffmpeg, thus the need to install ffmpeg.

I'm downloading from FS and HF . Direct Download enabled . Also ip is not banned because i can use RL

But still the same error "files" chmod to 777

PM me your msn

Yes I have installed ffmeg from yum, but I have centos i686 not x64, maybe your mtn is for x64..

The binary is not architecture specific. It's supposed to run just fine on both 32 and 64 bit (i386/i686 and x86_64).

i don't think so bro this rar unrar binary not working on my VPS...
Did you chmod the binary files to 755?
 
I've test on other linux x86 and mtn works well, but on Centos x86 I can't make works it and I don't understand why. Ffmeg is installed but it always says Segmentation fault.
Is there a way to test if I installed all?
 
I've test on other linux x86 and mtn works well, but on Centos x86 I can't make works it and I don't understand why. Ffmeg is installed but it always says Segmentation fault.
Is there a way to test if I installed all?

bro me too having same problem just as your :|
 
Ok, now mtn works.. I have installed ffmeg manually and downloaded the last version of mtn from homesite..

So, if you have Segmentation fault, remove from yum and install manually every files.
 
If you don't know how install manually ffmpeg, follow this guide:

[SLIDE]
first, u need to install this dependencies :
# yum install gcc gcc-cpp gcc-c++
#yum install subversion
# yum install ruby
# yum install ncurses-devel
1. Create a directory to for source file compilations
cd /usr/local/src
mkdir ffmpeg
cd ffmpeg

2. Get all the source files
wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2
wget http://rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz
3. Extract all the source files
bunzip2 essential-20061022.tar.bz2; tar xvf essential-20061022.tar
tar zxvf flvtool2_1.0.5_rc6.tgz
tar zxvf lame-3.97.tar.gz
bunzip2 ffmpeg-php-0.5.0.tbz2; tar xvf ffmpeg-php-0.5.0.tar
tar zxvf libogg-1.1.3.tar.gz
tar zxvf libvorbis-1.1.2.tar.gz
4. Create the codecs directory & import them
mkdir /usr/local/lib/codecs/
mv essential-20061022/* /usr/local/lib/codecs/
chmod -R 755 /usr/local/lib/codecs/
5. Install SVN/Ruby (Depends on OS, this is for RHEL/CentOS)
yum install subversion
yum install ruby
yum install ncurses-devel
6. Get the latest FFMPEG/MPlayer from the subversion
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
7. Compile LAME
cd ffmpeg/lame-3.97
./configure
make
make install
8. Compile libOGG
cd ffmpeg/libogg-1.1.3
./configure
make
make install
9. Compile libVorbis
cd ffmpeg/libvorbis-1.1.2
./configure
make
make install
10. Compile flvtool2
cd ffmpeg/flvtool2_1.0.5_rc6
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
11. Compile MPlayer
cd ffmpeg/mplayer
./configure
make
make install
12. Compile FFMPEG
cd ffmpeg/ffmpeg
./configure –-enable-libmp3lame –-enable-libvorbis –-disable-mmx –-enable-shared
echo ‘#define HAVE_LRINTF 1? >> config.h
make
make install
13. Finalize the codec setups
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51
ln -s /usr/local/lib/libavcodec.so.52 /usr/lib/libavcodec.so.52

[/SLIDE]
 
@skinner slide quotes are for images lolx...

Here what he posted.
Code:
first, u need to install this dependencies :
 # yum install gcc gcc-cpp gcc-c++
#yum install subversion
# yum install ruby
# yum install ncurses-devel
 1. Create a directory to for source file compilations
 cd /usr/local/src
mkdir ffmpeg
cd ffmpeg
 
 2. Get all the source files
 wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2
wget http://rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz
wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz
 3. Extract all the source files
 bunzip2 essential-20061022.tar.bz2; tar xvf essential-20061022.tar
tar zxvf flvtool2_1.0.5_rc6.tgz
tar zxvf lame-3.97.tar.gz
bunzip2 ffmpeg-php-0.5.0.tbz2; tar xvf ffmpeg-php-0.5.0.tar
tar zxvf libogg-1.1.3.tar.gz
tar zxvf libvorbis-1.1.2.tar.gz
 4. Create the codecs directory & import them
 mkdir /usr/local/lib/codecs/
mv essential-20061022/* /usr/local/lib/codecs/
chmod -R 755 /usr/local/lib/codecs/
 5. Install SVN/Ruby (Depends on OS, this is for RHEL/CentOS)
 yum install subversion
yum install ruby
yum install ncurses-devel
 6. Get the latest FFMPEG/MPlayer from the subversion
 svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
 7. Compile LAME
 cd ffmpeg/lame-3.97
./configure
make
make install
 8. Compile libOGG
 cd ffmpeg/libogg-1.1.3
./configure
make
make install
 9. Compile libVorbis
 cd ffmpeg/libvorbis-1.1.2
./configure
make
make install
 10. Compile flvtool2
 cd ffmpeg/flvtool2_1.0.5_rc6
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
 11. Compile MPlayer
 cd ffmpeg/mplayer
./configure
make
make install
 12. Compile FFMPEG
 cd ffmpeg/ffmpeg
./configure –-enable-libmp3lame –-enable-libvorbis –-disable-mmx –-enable-shared
echo ‘#define HAVE_LRINTF 1? >> config.h
make
make install
 13. Finalize the codec setups
 ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51
ln -s /usr/local/lib/libavcodec.so.52 /usr/lib/libavcodec.so.52
 
Is there some bug?
I downloaded:

Code:
http://rapidshare.com/files/417950114/Modern_English-Stop_Start-2010-JUST.rar
then in archive, I entered Modern_English-Stop_Start-2010-JUST_WarezXtremE.Org in the first box (Enter name of new rar file (Only will work if the RAR option above is checked): )

Then it gave me
Code:
http://hotfile.com/dl/68136895/5fbeced/Modern_English-Stop_Start-2010-JUST_WarezXtremE.Org.html[/rar]

Where did the .rar go?

It'll happen even when I download multiple files? :O
 
then in archive, I entered Modern_English-Stop_Start-2010-JUST_WarezXtremE.Org in the first box (Enter name of new rar file (Only will work if the RAR option above is checked): )

There's your bug. The first name field (enter name of new rar) should be a complete name:
myfile_yourfile_everyonesfile_fuckoff.org.rar

You missed adding the .rar to it.

The second field (rename files inside rar) does not need an extension. Leave out the extension in the second field.
 
Status
Not open for further replies.
Back
Top