Hello @gednav,
I could access your site without issues. Did you manage to fix it?
If you continue facing issues, they could be related to changes in wp-config.php
:
diff original-data/apps/wordpress/htdocs/wp-config.php apps/wordpress/htdocs/wp-config.php
2d1
<
3a3,4
> define('ALLOW_UNFILTERED_UPLOADS', true);
>
18c19
< * @link https://wordpress.org/support/article/editing-wp-config-php/
---
> * @link https://codex.wordpress.org/Editing_wp-config.php
25c26
< define( 'DB_NAME', 'bitnami_wordpress' );
---
> define( 'DB_NAME', "bitnami_wordpress" );
28c29
< define( 'DB_USER', 'bn_wordpress' );
---
> define( 'DB_USER', "bn_wordpress" );
34c35
< define( 'DB_HOST', '**BNSUPPORT-PASS_TWO**:3306' );
---
> define( 'DB_HOST', **BNSUPPORT-PASS_TWO**:3306" );
78c79
< * visit the documentation.
---
> * visit the Codex.
80c81
< * @link https://wordpress.org/support/article/debugging-in-wordpress/
---
> * @link https://codex.wordpress.org/Debugging_in_WordPress
83a85,88
> /* Repair and optimize server
> define('WP_ALLOW_REPAIR', true);*/
>
>
89c94
< define( 'DOMAIN_CURRENT_SITE', 'build**BNSUPPORT-PASS_TWO**-***BNSUPPORT-PASS_TWO****BNSUPPORT-PASS_TWO****-0b02.c.bitnami-builder.internal' );
---
> define( 'DOMAIN_CURRENT_SITE', 'XXX.com' );
100c105
< define( 'ABSPATH', __DIR__ . '/' );
---
> define( 'ABSPATH', dirname(__FILE__) . '/' );
104,107c109,110
< require_once ABSPATH . 'wp-settings.php';
<
< define('WP_TEMP_DIR', '/opt/bitnami/apps/wordpress/tmp');
<
---
> define( 'SUNRISE', 'on' );
> require_once( ABSPATH . 'wp-settings.php' );
124a128,131
>
> /* WordPress Repair Database
> define('WP_ALLOW_REPAIR', true);*/
>
For example, DB_HOST line does not include the first quotes "
.
Regards