Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using dompdf with DOMPDF_ENABLE_REMOTE set to true.

I do this so that pdfs can be generated from an html template with dynamic images. For example:

<img src='http://www.myserver.com/generateThumb.php?src=img.jpg' />

Both dompdf and the generateThumb script are on the same server.

Inside of generateThumb.php, I want to add authentication.

This is easy for when generateThumb is called directly from the browser - I just authenticate against the user session ($_SESSION).

However, when I do this, and dompdf processes the html, the authentication fails.

How can I check (inside of generateThumb) if the dompdf script is doing the calling.

Thanks (in advance) for your help.

share|improve this question
Is generateThumb.php a library or a custom script? Is the authentication code custom or baked in? – BrianS Sep 20 '11 at 17:28

1 Answer

If I understood correctly, testing $_SERVER['REMOTE_ADDR'] should be more than enough...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.