Issue:
CodeIgniter's $config['base_url'] was an automatic process( guessing what root URL was) which is not recommended for production environments. This created an error for Stripe Payment URL redirect which went to the server IP address instead of server directory.
Solution:
Defined server URL for local development and server production environments (see lines 16 - 20 of config.php).
Risk Area:
Potential path risks with other code attributes. Have tested against the existing master branch, and solves the issue and at this point hasn't caused additional issues.
Issue: CodeIgniter's $config['base_url'] was an automatic process( guessing what root URL was) which is not recommended for production environments. This created an error for Stripe Payment URL redirect which went to the server IP address instead of server directory.
Solution: Defined server URL for local development and server production environments (see lines 16 - 20 of config.php).
Risk Area: Potential path risks with other code attributes. Have tested against the existing master branch, and solves the issue and at this point hasn't caused additional issues.
Reviewed by: Lucas, Will, Daniel, Martin