Is there a way to add fixed POST parameter to every request apache passes to the php?

I can change pretty much anything on the server: .htaccess, httpd.conf, php.ini. Both parameter's name and value are fixed strings. To be specific, I'm trying to enable remote Xdebug that way.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try creating this script somewhere in your include path

<?php
    $_POST['xdebug'] = 'true'; #or whatever you need

and setting it as the auto-prepend-file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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