cancel
Showing results for 
Search instead for 
Did you mean: 

make?

standrewsoxshot
Dabbler
Posts: 13
Registered: ‎28-01-2008

make?

Before the world changed I had a little program which was run from shell_exec to modify the ID3 tags of MP3 files of some talks stored on the server. I put the source in a directory and (again in the old days) telnetted into the CCGI platform and ran a make to build the executable. Its been working fine for several years.
However, in our brave new world, the old executable is now complaining about a C++ library incompatibility. Needs a rebuild. SO how do I do that now with no telnet access? Aha, put the make command in a shell_exec from a PHP script. No joy, "make not found" 😞
So, is GCC and friends still available on the platform? If so where? Do I need to specify a fully qualified path? ( there's nothing useful in  /bin ) How can I re-build my program. Not having telnet access makes it a nightmare trying to figure out what may and may not work.
I know the alternative is to do the mp3 tag update client side. i.e download it, change the tags and re-upload it, but that is very messy and would need a good deal of new script development.
Any ideas on how to get it to work as before?

Mike
3 REPLIES 3
pierre_pierre
Grafter
Posts: 19,757
Thanks: 3
Registered: ‎30-07-2007

Re: make?

have you tried the free Winamp?  this lets you easily change the ID3 tag
http://www.winamp.com
standrewsoxshot
Dabbler
Posts: 13
Registered: ‎28-01-2008

Re: make?

Thanks, but its not a problem finding something to change ID3 tags. The problem is finding a way to do it ON the CGI platform.
Mike
standrewsoxshot
Dabbler
Posts: 13
Registered: ‎28-01-2008

Re: make?

Just in case anyone else is faced with the ID3 tags issue, I have found an excellent set of PHP scripts for manipulating ID3 tags at http://getid3.sourceforge.net/ so I no longer need to compile my own c program.
Mike