• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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