• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Resolved Global PHP settings across all domains?

yabado

Regular Pleskian
IS there a simple way to set the following php.ini config items across ALL domains? I ask because each domain has it's own PHP version AND settings.

mail.force_extra_parameters =
mail.add_x_header =
mail.log =
 
Create file myfile with content like

Code:
mail.force_extra_parameters =
mail.add_x_header = 
mail.log =

Then run update script:

# for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select name from domains"`; do /usr/local/psa/bin/domain --update-php-settings $i -additional-settings myfile; done
 
Create file myfile with content like

Code:
mail.force_extra_parameters =
mail.add_x_header =
mail.log =

Then run update script:

# for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select name from domains"`; do /usr/local/psa/bin/domain --update-php-settings $i -additional-settings myfile; done


Thanks Igor. Will see how this works out.
 
Back
Top