Resolved: Adding MX Record(s) in AWS

 Recently, I was migrating MX records from WIX to AWS. I was using GSuite and I was unable to do the same. Then after a little bit of research, I found this stackoverflow link , which helped me resolve the problem. Here is how you should be adding the records in AWS. Record Name: @ Record Type: MX Value: <Priority> <Route Traffic to> example: 10 aspx.alt1.google.com And if you have multiple records, simply add the records in the same text area in the new line and no commas. This will resolve your problem. :)

My notes with ChatGPT - Why Codeigniter 3 was rewritten to Codeigniter 4?

 CodeIgniter 3 was rewritten to become CodeIgniter 4 to address several key issues and to provide a more modern and robust framework for PHP web development. Here are some of the main reasons why CodeIgniter 3 was rewritten as CodeIgniter 4:

  1. PHP Version Support: CodeIgniter 3 was built to support PHP 5.2, which was quite outdated by the time CodeIgniter 4 was being developed. PHP 7 had become the new standard, offering significant performance and security improvements. Rewriting the framework allowed the developers to leverage the features and improvements in PHP 7 and later versions.

  2. Modern Web Development: Web development practices and standards evolved significantly between the release of CodeIgniter 3 and CodeIgniter 4. CodeIgniter 4 was rewritten to adopt contemporary coding practices and to take advantage of the latest developments in web development, such as the use of namespaces, PSR standards, and modern coding patterns.

  3. Improved Performance: CodeIgniter 4 was designed to be more performant than its predecessor. This was achieved by optimizing the codebase and leveraging the performance improvements in newer PHP versions.

  4. Composer Support: CodeIgniter 4 added support for Composer, a widely used PHP dependency manager. This made it easier to include external libraries and components, further enhancing code reusability and maintainability.

  5. Better Testing and Code Quality: CodeIgniter 4 introduced a more robust and modern testing framework and improved code quality through better documentation and coding standards. This made it easier for developers to write tests for their applications and maintain high-quality code.

  6. Built-in Features: CodeIgniter 4 introduced a set of built-in features, such as support for RESTful APIs, improved database handling, and a more flexible routing system. These additions made it easier to develop modern web applications and APIs.

  7. Community and Contribution: The rewrite also helped to reinvigorate the CodeIgniter community by attracting new developers and contributors. A modern codebase and improved features can make a framework more appealing to developers.

In summary, CodeIgniter 3 was rewritten as CodeIgniter 4 to bring the framework up to date with modern PHP practices and standards, enhance performance, and provide a more robust and feature-rich platform for web development. This rewrite allowed CodeIgniter to remain competitive in the rapidly evolving field of web development.