kileyco

New Member
Hello,

So I got a 404 error adding mailwizz to my domain and then once I got it to work it removed my WordPress account. I want to remove Mailwizz properly so my WordPress works again can anyone help me with this?

That way my site no longer has a 403 error code.
 
How did you install MailWizz, did you put MailWizz's files over wordpress's files? Didn't you install mailwizz in a subfolder on it's own?
If that's the case, most likely you have overwritten the index.php file that comes with wordpress with the one that comes with MailWizz, so the solution is to get a index.php file from a wordpress install and put it instead of the existing index.php file.
This will make your site work again.

Then, as far as installing MailWizz goes, we have a detailed install video at https://kb.mailwizz.com/articles/install-steps/ . If that does not work for you, maybe hire somebody to install the app for you, it should be very straight forward though.

Best of luck.
 
Here's how the default index.php file from wordpress looks like:
PHP:
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );

/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
So make sure yours is the same.
 
Here's how the default index.php file from wordpress looks like:
PHP:
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );

/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
So make sure yours is the same.
Thank you so much it fixed it
 
Back
Top