Look bro if You can Make the script work and php 5.2
i have tired to search hosting and i don't have money to buy vps is you can do that's please
The script is clearly advertised as working with php version 5.3 or greater. I have no intention of catering to a previous version of PHP, especially when the software requirements are so prominently displayed.
Also, if your web host is still using php 5.2, then that is generally an indication that they are not updating servers with the latest (security!) updates as well. Do yourself a favor: Steer clear of web hosting companies that are not periodically updating their server software to the latest versions.
A VPS or dedicated server is ideal for my script. In fact, if you do some searching, you will find some good deals on VPS hosting. The advantage of having your own server is that you can load your server with whatever software you like. (In shared hosting, as I am sure you are aware, you are restricted to the software and versions of that software that are preloaded on the server.)
That said, if you do a search of this forum thread, you will see the following: http://www.codingforums.com/showpost...&postcount=480. Please understand: I have absolutely no experience with this web hosting company, so I cannot personally vouch for their service. But if this hosting company worked for someone else, then it may work for you as well. See this feature list: http://www.hostforweb.com/packages/compare.html. I would also contact them first and find out what versions of FFmpeg (should be latest stable version for the OS) and PHP (at least 5.3) they are running, and whether or not they have the required codecs installed on their server (at least libmp3lame, libx264, libvo_amrwbenc for Linux).
All who have previously purchased the paid-for version of the software will receive this new version for free (via your Tradebit.com email addresses).
Is that what you are looking for?
Edit:Https-formatted URLs are already permitted in the free version of the software (because the free version does not validate video page URLs). This issue only needs to be addressed in the paid-for version.
Edit:In the meantime, you can patch the paid-for version as follows:
In VideoConverter::ValidateConversionForm() in VideoConverter.class.php, change:
And in VideoConverter::RetrieveVidInfo() in VideoConverter.class.php, change:
PHP Code:
case 'Dailymotion': $apiResponse = json_decode(file_get_contents(preg_replace('/^(http:\/\/www)/i', "https://api", current(explode('?', $vidUrl))).'?fields=id,title,thumbnail_medium_url,duration'), true);
...to...
PHP Code:
case 'Dailymotion': $apiResponse = json_decode(file_get_contents(preg_replace('/^(http(s)?:\/\/www)/i', "https://api", current(explode('?', $vidUrl))).'?fields=id,title,thumbnail_medium_url,duration'), true);
That should fix the problem, in general, for now. In the next release of the paid-for version, I will provide more control over which video hosts allow https video page URLs.
__________________
Regards, R.J.
Last edited by chump2877; 01-18-2013 at 12:08 PM..
I have just finished updating the paid-for version of my software. New in this version:
The conversion form now accepts https:// video page URLs from both YouTube and Dailymotion. This feature can be toggled on and off for each video hosting site via $_videoHosts array in config.class.php.
Fixed audio codec problem with 3gp conversion on Linux
Added new JavaScript bookmarklet/browser plugin that enables your site visitors to convert videos directly on YouTube and Dailymotion video pages. Bookmarklet loads conversion interface directly into video page, and forwards user to your site for actual conversion and converted file retrieval.
The following files/directories were changed/added:
bookmarklet/ new
bookmarklet.php new
config.class.php updated
index.php updated
VideoConverter.class.php updated
All previous customers who have purchased the paid-for version of my app are receiving this new, updated version via the e-mail addresses that you provided at Tradebit.com.
Please report any issues with either the paid-for version or the free version in this forum thread. Your feedback is encouraged. Donations are welcome!
One thing I should mention, I now use a Windows system
There's a reason why I sell both a Linux and Windows version of my software. If you have the Linux version, it's not going to work correctly on a Windows server. The code is similar, but the different versions specifically cater to each platform.
Both the Linux and Windows versions are working fine for me.
Edit:It doesn't make a whole lot of sense for me to help you troubleshoot why the Linux version won't work on a Windows server. My advice to you: Switch back to a Linux server or buy the Windows version of the software.
__________________
Regards, R.J.
Last edited by chump2877; 02-05-2013 at 03:52 AM..
There's a reason why I sell both a Linux and Windows version of my software. If you have the Linux version, it's not going to work correctly on a Windows server. The code is similar, but the different versions specifically cater to each platform.
Both the Linux and Windows versions are working fine for me.
Edit:It doesn't make a whole lot of sense for me to help you troubleshoot why the Linux version won't work on a Windows server. My advice to you: Switch back to a Linux server or buy the Windows version of the software.