2
votes
0answers
34 views

Need Help in ResumeParsing Web Service [closed]

I am using a webservice for resume parsing but he webservice returns error. Kindly view my code and let me know asap. I am trying it from last 1 day but failed all time. $client = new ...
0
votes
0answers
43 views

Download with resume

I've searched many topics and posts and made my own downloading snippet with 2 functions as below! Download starts with no problem, custom errors are shown when user hasn't enough credit, all things ...
0
votes
2answers
239 views

best practice for storing and searching applicant Resume or CV file

I am starting a recruitment consultancy and sooner or later we would be dealing with many applicant resumes or CV (curriculum vitae). I am building a simple application with PHP and MYSQL (target ...
0
votes
0answers
62 views

Manage jobs applications and saved resumes on website [closed]

I am a new developer and I am building a website where candidates can post their resumes and employers can search for candidates and post jobs. Please help me as I have some big issues with the ...
2
votes
1answer
232 views

Make resumable downloads with readfile() of external link PHP

I have this code: if (isset($_GET['file']) && isset($_GET['name'])) { $ch = curl_init($file); curl_setopt($ch, CURLOPT_NOBODY, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, ...
2
votes
1answer
540 views

Resumable large file upload (yes again!)

I'd like to implement large file upload, there are so many solutions out there (jquery, php, flash, java, js/jquery, node.js, etc...) that I quickly got lost / couldn't really find something that meet ...
0
votes
1answer
230 views

is it possible for a php script to stop at a certain point and resume executing from before that?

i don't know if this can be done using php but it would be awesome for me if it did and php is pretty powerful so i think it is possible and i just can't figure out how. i know that a php file is ...
0
votes
1answer
864 views

RESUME Download? Direct Link?

I wrote this code for uploading files to my host.For example I upload a file from Server A to Server B and after that I want to download it by my PC, But when I want to download it, for example via ...
1
vote
3answers
199 views

How to track failed downloads in PHP?

I have collection of videos and audios in my server, where users can download by paying some amount. Suppose user pay the amount for me and start the download but accidentally the download fails how ...
10
votes
3answers
677 views

PHP Remote file streaming with Resume Support

Firstly, I am aware of similar question being asked before. The subject pretty much explains the question but still, the file is hosted on another server, the user will download file via my script, ...
7
votes
4answers
3k views

Is there a good implementation of partial file downloading in PHP?

I'm writing a PHP script that allows the user to download a file. Basically the idea is to prevent the file being downloaded more than X times, since it is paid content, and the link should not be ...