I'm having trouble setting the `max_post_size` PHP variable in Lunar Pages for my Drupal website. I have already tried making changes in the php.ini file, but it doesn't seem to have any effect. I need some guidance on how to properly set this variable in Lunar Pages. Any help would be greatly appreciated!

I had a similar issue with the `max_post_size` PHP variable in Lunar Pages when I was using Drupal for my website. After trying various solutions, I found that making the changes directly in the php.ini file did not work for me either.
What ended up resolving the problem was contacting Lunar Pages' support team. They were very helpful and quickly pointed me in the right direction. Lunar Pages has a customized version of Apache running, which means you need to make the changes to the .htaccess file instead of the php.ini.
To do this, simply access your Drupal website's root directory, locate the .htaccess file, and open it for editing. Look for the following line: `php_value post_max_size`. Uncomment it by removing the "#" symbol at the beginning, and specify your desired value for the `max_post_size` variable, for example: `php_value post_max_size 64M`.
Save the changes to the .htaccess file and restart your website. This should effectively increase the max post size for your Drupal website on Lunar Pages.
Remember, if you're not comfortable making these changes yourself, it's always best to reach out to the Lunar Pages support team for assistance. They are knowledgeable and quite responsive in my experience.
I hope this solution works for you as well. Let me know if you have any further questions or if you need any additional help!