Hi,
I moved WordPress core files into separate folder so I had to change my site URL:
define('WP_SITEURL', 'http://' . $_SERVER['SERVER_NAME'] . '/system');
Then I got these problems:
- page not found after I click on Add to sending queue button
- does not send emails
I guess the problem is that in some parts of code you are using get_option('home') instead of get_option('siteurl'); so while your plugin generates on some places links like this http://www.xxx.yyy/wp-admin/edit.php?page=alo-easymail/alo-easymail_main.php the correct link must be http://www.xxx.yyy/system/wp-admin/edit.php?page=alo-easymail/alo-easymail_main.php, because the address of WP installation folder differs from address of your blog.
So take a look at this problem please. My suggestion is always to use get_option('siteurl'), NOT get_option('home') (It looks working for me).
