Support

Home Forums Event Espresso Premium regsitration goes to 404 page

regsitration goes to 404 page

Posted: June 11, 2020 at 4:12 pm


worldlegacy

June 11, 2020 at 4:12 pm

So I keep having this problem more and more. I have not added any new plugins.
From a previous post….. you said go to the permalinks page and that fixed it. What do you think is causing this? I cant keep having customers tell me about the problem. Thank you.
Your answer…
April 29, 2020 at 3:43 pm

I think it’s another plugin on your website that’s causing this. Usually you wouldn’t need to go to the Settings > Permalinks page. What you could do is check the other plugins on the site and see if they call flush_rewrite_rules() and if they do then we can investigate further.

So I have spoken to several people. I have no idea how to go about checking the code of the plugins to see if this is present. How does one do this? This is becoming a real problem, every few days…..
Lori


Tony

  • Support Staff

June 12, 2020 at 3:55 am

Hi there,

To review code you need to download all of the plugins locally and open them up in a text editor like Sublime Text and search for the above function.

You would likely need the help of a developer familiar with WordPress to work through it.

However, I recently created a plugin that may help troubleshoot this. The plugin logs each time the permalinks are flushed and logs what called the function so it doesn’t ‘fix’ anything but may help point to what is causing it. It is available here:

https://gist.github.com/Pebblo/a6d2b949d0ae784c09de442b9848ff7d

You hit ‘Download ZIP’ on the side and then install that zip file in Dashboard -> Plugins -> Add new -> Upload plugin. Activate the plugin.

However, on it’s own the plugin does nothing, you need to add this code to your site’s wp-config.php file:

https://eventespresso.com/wiki/troubleshooting-checklist/#wpdebug

That block replaces a single line that will already be there, this one:

define( 'WP_DEBUG', false );

Then any time the permalinks are flushed it will save a log entry in /wp-content/debug.log

So the next time it happens we can view that log to see if anything stands out.


worldlegacy

June 16, 2020 at 8:16 pm

Here it is;;

[14-Jun-2020 01:05:06 UTC] Array
(
    [time] => 2020-06-14 01:05:06
    [rewrite_array] => Array
        (
            [sitemap_index\.xml$] => index.php?sitemap=1
            [([^/]+?)-sitemap([0-9]+)?\.xml$] => index.php?sitemap=$matches[1]&sitemap_n=$matches[2]
            [([a-z]+)?-?sitemap\.xsl$] => index.php?yoast-sitemap-xsl=$matches[1]
            [^wp-json/?$] => index.php?rest_route=/
            [^wp-json/(.*)?] => index.php?rest_route=/$matches[1]
            [^index.php/wp-json/?$] => index.php?rest_route=/
            [^index.php/wp-json/(.*)?] => index.php?rest_route=/$matches[1]
            [vimeo-video/?$] => index.php?post_type=vimeo-video
            [vimeo-video/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=vimeo-video&feed=$matches[1]
            [vimeo-video/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=vimeo-video&feed=$matches[1]
            [vimeo-video/page/([0-9]{1,})/?$] => index.php?post_type=vimeo-video&paged=$matches[1]
            [rl_gallery/?$] => index.php?post_type=rl_gallery
            [rl_gallery/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=rl_gallery&feed=$matches[1]
            [rl_gallery/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=rl_gallery&feed=$matches[1]
            [rl_gallery/page/([0-9]{1,})/?$] => index.php?post_type=rl_gallery&paged=$matches[1]
            [portfolio-items/?$] => index.php?post_type=avada_portfolio
            [portfolio-items/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=avada_portfolio&feed=$matches[1]
            [portfolio-items/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=avada_portfolio&feed=$matches[1]
            [portfolio-items/page/([0-9]{1,})/?$] => index.php?post_type=avada_portfolio&paged=$matches[1]
            [faq-items/?$] => index.php?post_type=avada_faq
            [faq-items/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=avada_faq&feed=$matches[1]
            [faq-items/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_type=avada_faq&feed=$matches[1]
            [faq-items/page/([0-9]{1,})/?$] => index.php?post_type=avada_faq&paged=$matches[1]
            [category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?category_name=$matches[1]&feed=$matches[2]
            [category/(.+?)/(feed|rdf|rss|rss2|atom)/?$] => index.php?category_name=$matches[1]&feed=$matches[2]
            [category/(.+?)/embed/?$] => index.php?category_name=$matches[1]&embed=true
            [category/(.+?)/page/?([0-9]{1,})/?$] => index.php?category_name=$matches[1]&paged=$matches[2]
            [category/(.+?)/?$] => index.php?category_name=$matches[1]
            [tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?tag=$matches[1]&feed=$matches[2]
            [tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?tag=$matches[1]&feed=$matches[2]
            [tag/([^/]+)/embed/?$] => index.php?tag=$matches[1]&embed=true
            [tag/([^/]+)/page/?([0-9]{1,})/?$] => index.php?tag=$matches[1]&paged=$matches[2]
            [tag/([^/]+)/?$] => index.php?tag=$matches[1]
            [type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_format=$matches[1]&feed=$matches[2]
            [type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?post_format=$matches[1]&feed=$matches[2]
            [type/([^/]+)/embed/?$] => index.php?post_format=$matches[1]&embed=true
            [type/([^/]+)/page/?([0-9]{1,})/?$] => index.php?post_format=$matches[1]&paged=$matches[2]
            [type/([^/]+)/?$] => index.php?post_format=$matches[1]
            [fmemailverification/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [fmemailverification/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [fmemailverification/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [fmemailverification/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [fmemailverification/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [fmemailverification/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [fmemailverification/([^/]+)/embed/?$] => index.php?fmemailverification=$matches[1]&embed=true
            [fmemailverification/([^/]+)/trackback/?$] => index.php?fmemailverification=$matches[1]&tb=1
            [fmemailverification/([^/]+)/page/?([0-9]{1,})/?$] => index.php?fmemailverification=$matches[1]&paged=$matches[2]
            [fmemailverification/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?fmemailverification=$matches[1]&cpage=$matches[2]
            [fmemailverification/([^/]+)(?:/([0-9]+))?/?$] => index.php?fmemailverification=$matches[1]&page=$matches[2]
            [fmemailverification/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [fmemailverification/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [fmemailverification/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [fmemailverification/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [fmemailverification/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [fmemailverification/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [form-maker/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [form-maker/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [form-maker/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [form-maker/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [form-maker/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [form-maker/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [form-maker/([^/]+)/embed/?$] => index.php?form-maker=$matches[1]&embed=true
            [form-maker/([^/]+)/trackback/?$] => index.php?form-maker=$matches[1]&tb=1
            [form-maker/([^/]+)/page/?([0-9]{1,})/?$] => index.php?form-maker=$matches[1]&paged=$matches[2]
            [form-maker/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?form-maker=$matches[1]&cpage=$matches[2]
            [form-maker/([^/]+)(?:/([0-9]+))?/?$] => index.php?form-maker=$matches[1]&page=$matches[2]
            [form-maker/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [form-maker/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [form-maker/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [form-maker/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [form-maker/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [form-maker/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [vimeo-video/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [vimeo-video/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [vimeo-video/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [vimeo-video/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [vimeo-video/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [vimeo-video/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [vimeo-video/([^/]+)/embed/?$] => index.php?vimeo-video=$matches[1]&embed=true
            [vimeo-video/([^/]+)/trackback/?$] => index.php?vimeo-video=$matches[1]&tb=1
            [vimeo-video/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-video=$matches[1]&feed=$matches[2]
            [vimeo-video/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-video=$matches[1]&feed=$matches[2]
            [vimeo-video/([^/]+)/page/?([0-9]{1,})/?$] => index.php?vimeo-video=$matches[1]&paged=$matches[2]
            [vimeo-video/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?vimeo-video=$matches[1]&cpage=$matches[2]
            [vimeo-video/([^/]+)(?:/([0-9]+))?/?$] => index.php?vimeo-video=$matches[1]&page=$matches[2]
            [vimeo-video/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [vimeo-video/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [vimeo-video/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [vimeo-video/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [vimeo-video/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [vimeo-video/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [videos/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-videos=$matches[1]&feed=$matches[2]
            [videos/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-videos=$matches[1]&feed=$matches[2]
            [videos/([^/]+)/embed/?$] => index.php?vimeo-videos=$matches[1]&embed=true
            [videos/([^/]+)/page/?([0-9]{1,})/?$] => index.php?vimeo-videos=$matches[1]&paged=$matches[2]
            [videos/([^/]+)/?$] => index.php?vimeo-videos=$matches[1]
            [vimeo-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-tag=$matches[1]&feed=$matches[2]
            [vimeo-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?vimeo-tag=$matches[1]&feed=$matches[2]
            [vimeo-tag/([^/]+)/embed/?$] => index.php?vimeo-tag=$matches[1]&embed=true
            [vimeo-tag/([^/]+)/page/?([0-9]{1,})/?$] => index.php?vimeo-tag=$matches[1]&paged=$matches[2]
            [vimeo-tag/([^/]+)/?$] => index.php?vimeo-tag=$matches[1]
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [wpephpcompat_jobs/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [wpephpcompat_jobs/([^/]+)/embed/?$] => index.php?wpephpcompat_jobs=$matches[1]&embed=true
            [wpephpcompat_jobs/([^/]+)/trackback/?$] => index.php?wpephpcompat_jobs=$matches[1]&tb=1
            [wpephpcompat_jobs/([^/]+)/page/?([0-9]{1,})/?$] => index.php?wpephpcompat_jobs=$matches[1]&paged=$matches[2]
            [wpephpcompat_jobs/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?wpephpcompat_jobs=$matches[1]&cpage=$matches[2]
            [wpephpcompat_jobs/([^/]+)(?:/([0-9]+))?/?$] => index.php?wpephpcompat_jobs=$matches[1]&page=$matches[2]
            [wpephpcompat_jobs/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [wpephpcompat_jobs/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [wpephpcompat_jobs/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [wpephpcompat_jobs/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [wpephpcompat_jobs/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [wpephpcompat_jobs/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [rl_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_category=$matches[1]&feed=$matches[2]
            [rl_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_category=$matches[1]&feed=$matches[2]
            [rl_category/([^/]+)/embed/?$] => index.php?rl_category=$matches[1]&embed=true
            [rl_category/([^/]+)/page/?([0-9]{1,})/?$] => index.php?rl_category=$matches[1]&paged=$matches[2]
            [rl_category/([^/]+)/?$] => index.php?rl_category=$matches[1]
            [rl_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_tag=$matches[1]&feed=$matches[2]
            [rl_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_tag=$matches[1]&feed=$matches[2]
            [rl_tag/([^/]+)/embed/?$] => index.php?rl_tag=$matches[1]&embed=true
            [rl_tag/([^/]+)/page/?([0-9]{1,})/?$] => index.php?rl_tag=$matches[1]&paged=$matches[2]
            [rl_tag/([^/]+)/?$] => index.php?rl_tag=$matches[1]
            [rl_gallery/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [rl_gallery/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [rl_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [rl_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [rl_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [rl_gallery/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [rl_gallery/([^/]+)/embed/?$] => index.php?rl_gallery=$matches[1]&embed=true
            [rl_gallery/([^/]+)/trackback/?$] => index.php?rl_gallery=$matches[1]&tb=1
            [rl_gallery/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_gallery=$matches[1]&feed=$matches[2]
            [rl_gallery/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?rl_gallery=$matches[1]&feed=$matches[2]
            [rl_gallery/([^/]+)/page/?([0-9]{1,})/?$] => index.php?rl_gallery=$matches[1]&paged=$matches[2]
            [rl_gallery/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?rl_gallery=$matches[1]&cpage=$matches[2]
            [rl_gallery/([^/]+)(?:/([0-9]+))?/?$] => index.php?rl_gallery=$matches[1]&page=$matches[2]
            [rl_gallery/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [rl_gallery/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [rl_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [rl_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [rl_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [rl_gallery/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [portfolio-items/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [portfolio-items/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [portfolio-items/([^/]+)/embed/?$] => index.php?avada_portfolio=$matches[1]&embed=true
            [portfolio-items/([^/]+)/trackback/?$] => index.php?avada_portfolio=$matches[1]&tb=1
            [portfolio-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?avada_portfolio=$matches[1]&feed=$matches[2]
            [portfolio-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?avada_portfolio=$matches[1]&feed=$matches[2]
            [portfolio-items/([^/]+)/page/?([0-9]{1,})/?$] => index.php?avada_portfolio=$matches[1]&paged=$matches[2]
            [portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?avada_portfolio=$matches[1]&cpage=$matches[2]
            [portfolio-items/([^/]+)(?:/([0-9]+))?/?$] => index.php?avada_portfolio=$matches[1]&page=$matches[2]
            [portfolio-items/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [portfolio-items/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [portfolio-items/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_category=$matches[1]&feed=$matches[2]
            [portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_category=$matches[1]&feed=$matches[2]
            [portfolio_category/([^/]+)/embed/?$] => index.php?portfolio_category=$matches[1]&embed=true
            [portfolio_category/([^/]+)/page/?([0-9]{1,})/?$] => index.php?portfolio_category=$matches[1]&paged=$matches[2]
            [portfolio_category/([^/]+)/?$] => index.php?portfolio_category=$matches[1]
            [portfolio_skills/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_skills=$matches[1]&feed=$matches[2]
            [portfolio_skills/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_skills=$matches[1]&feed=$matches[2]
            [portfolio_skills/([^/]+)/embed/?$] => index.php?portfolio_skills=$matches[1]&embed=true
            [portfolio_skills/([^/]+)/page/?([0-9]{1,})/?$] => index.php?portfolio_skills=$matches[1]&paged=$matches[2]
            [portfolio_skills/([^/]+)/?$] => index.php?portfolio_skills=$matches[1]
            [portfolio_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_tags=$matches[1]&feed=$matches[2]
            [portfolio_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?portfolio_tags=$matches[1]&feed=$matches[2]
            [portfolio_tags/([^/]+)/embed/?$] => index.php?portfolio_tags=$matches[1]&embed=true
            [portfolio_tags/([^/]+)/page/?([0-9]{1,})/?$] => index.php?portfolio_tags=$matches[1]&paged=$matches[2]
            [portfolio_tags/([^/]+)/?$] => index.php?portfolio_tags=$matches[1]
            [faq-items/[^/]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [faq-items/[^/]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [faq-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [faq-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [faq-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [faq-items/[^/]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [faq-items/([^/]+)/embed/?$] => index.php?avada_faq=$matches[1]&embed=true
            [faq-items/([^/]+)/trackback/?$] => index.php?avada_faq=$matches[1]&tb=1
            [faq-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?avada_faq=$matches[1]&feed=$matches[2]
            [faq-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?avada_faq=$matches[1]&feed=$matches[2]
            [faq-items/([^/]+)/page/?([0-9]{1,})/?$] => index.php?avada_faq=$matches[1]&paged=$matches[2]
            [faq-items/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?avada_faq=$matches[1]&cpage=$matches[2]
            [faq-items/([^/]+)(?:/([0-9]+))?/?$] => index.php?avada_faq=$matches[1]&page=$matches[2]
            [faq-items/[^/]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [faq-items/[^/]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [faq-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [faq-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [faq-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [faq-items/[^/]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [faq_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?faq_category=$matches[1]&feed=$matches[2]
            [faq_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?faq_category=$matches[1]&feed=$matches[2]
            [faq_category/([^/]+)/embed/?$] => index.php?faq_category=$matches[1]&embed=true
            [faq_category/([^/]+)/page/?([0-9]{1,})/?$] => index.php?faq_category=$matches[1]&paged=$matches[2]
            [faq_category/([^/]+)/?$] => index.php?faq_category=$matches[1]
            [robots\.txt$] => index.php?robots=1
            [.*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\.php$] => index.php?feed=old
            [.*wp-app\.php(/.*)?$] => index.php?error=403
            [.*wp-register.php$] => index.php?register=true
            [feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]
            [(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]
            [embed/?$] => index.php?&embed=true
            [page/?([0-9]{1,})/?$] => index.php?&paged=$matches[1]
            [comment-page-([0-9]{1,})/?$] => index.php?&page_id=88&cpage=$matches[1]
            [comments/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]&withcomments=1
            [comments/(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]&withcomments=1
            [comments/embed/?$] => index.php?&embed=true
            [search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?s=$matches[1]&feed=$matches[2]
            [search/(.+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?s=$matches[1]&feed=$matches[2]
            [search/(.+)/embed/?$] => index.php?s=$matches[1]&embed=true
            [search/(.+)/page/?([0-9]{1,})/?$] => index.php?s=$matches[1]&paged=$matches[2]
            [search/(.+)/?$] => index.php?s=$matches[1]
            [author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?author_name=$matches[1]&feed=$matches[2]
            [author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?author_name=$matches[1]&feed=$matches[2]
            [author/([^/]+)/embed/?$] => index.php?author_name=$matches[1]&embed=true
            [author/([^/]+)/page/?([0-9]{1,})/?$] => index.php?author_name=$matches[1]&paged=$matches[2]
            [author/([^/]+)/?$] => index.php?author_name=$matches[1]
            [date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]
            [date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]
            [date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true
            [date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]
            [date/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]
            [date/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]
            [date/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]
            [date/([0-9]{4})/([0-9]{1,2})/embed/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&embed=true
            [date/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$] => index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]
            [date/([0-9]{4})/([0-9]{1,2})/?$] => index.php?year=$matches[1]&monthnum=$matches[2]
            [date/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&feed=$matches[2]
            [date/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$] => index.php?year=$matches[1]&feed=$matches[2]
            [date/([0-9]{4})/embed/?$] => index.php?year=$matches[1]&embed=true
            [date/([0-9]{4})/page/?([0-9]{1,})/?$] => index.php?year=$matches[1]&paged=$matches[2]
            [date/([0-9]{4})/?$] => index.php?year=$matches[1]
            [.?.+?/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [.?.+?/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [.?.+?/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [(.?.+?)/embed/?$] => index.php?pagename=$matches[1]&embed=true
            [(.?.+?)/trackback/?$] => index.php?pagename=$matches[1]&tb=1
            [(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
            [(.?.+?)/(feed|rdf|rss|rss2|atom)/?$] => index.php?pagename=$matches[1]&feed=$matches[2]
            [(.?.+?)/page/?([0-9]{1,})/?$] => index.php?pagename=$matches[1]&paged=$matches[2]
            [(.?.+?)/comment-page-([0-9]{1,})/?$] => index.php?pagename=$matches[1]&cpage=$matches[2]
            [(.?.+?)(?:/([0-9]+))?/?$] => index.php?pagename=$matches[1]&page=$matches[2]
            [[^/]+-[0-9]+/attachment/([^/]+)/?$] => index.php?attachment=$matches[1]
            [[^/]+-[0-9]+/attachment/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [[^/]+-[0-9]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [[^/]+-[0-9]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [[^/]+-[0-9]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [[^/]+-[0-9]+/attachment/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
            [([^/]+)-([0-9]+)/embed/?$] => index.php?name=$matches[1]&p=$matches[2]&embed=true
            [([^/]+)-([0-9]+)/trackback/?$] => index.php?name=$matches[1]&p=$matches[2]&tb=1
            [([^/]+)-([0-9]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?name=$matches[1]&p=$matches[2]&feed=$matches[3]
            [([^/]+)-([0-9]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?name=$matches[1]&p=$matches[2]&feed=$matches[3]
            [([^/]+)-([0-9]+)/page/?([0-9]{1,})/?$] => index.php?name=$matches[1]&p=$matches[2]&paged=$matches[3]
            [([^/]+)-([0-9]+)/comment-page-([0-9]{1,})/?$] => index.php?name=$matches[1]&p=$matches[2]&cpage=$matches[3]
            [([^/]+)-([0-9]+)(?:/([0-9]+))?/?$] => index.php?name=$matches[1]&p=$matches[2]&page=$matches[3]
            [[^/]+-[0-9]+/([^/]+)/?$] => index.php?attachment=$matches[1]
            [[^/]+-[0-9]+/([^/]+)/trackback/?$] => index.php?attachment=$matches[1]&tb=1
            [[^/]+-[0-9]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [[^/]+-[0-9]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$] => index.php?attachment=$matches[1]&feed=$matches[2]
            [[^/]+-[0-9]+/([^/]+)/comment-page-([0-9]{1,})/?$] => index.php?attachment=$matches[1]&cpage=$matches[2]
            [[^/]+-[0-9]+/([^/]+)/embed/?$] => index.php?attachment=$matches[1]&embed=true
        )

    [stacktrace] => #0 /home/worldl15/public_html/wp-includes/class-wp-hook.php(286): tw_log_rewrite_rules_array(Array)
#1 /home/worldl15/public_html/wp-includes/plugin.php(208): WP_Hook->apply_filters(Array, Array)
#2 /home/worldl15/public_html/wp-includes/class-wp-rewrite.php(1443): apply_filters('rewrite_rules_a...', Array)
#3 /home/worldl15/public_html/wp-includes/class-wp-rewrite.php(1464): WP_Rewrite->rewrite_rules()
#4 /home/worldl15/public_html/wp-includes/class-wp-rewrite.php(1805): WP_Rewrite->wp_rewrite_rules()
#5 /home/worldl15/public_html/wp-content/plugins/all-in-one-seo-pack-pro/modules/aioseop_sitemap.php(1579): WP_Rewrite->flush_rules()
#6 /home/worldl15/public_html/wp-includes/class-wp-hook.php(286): All_in_One_SEO_Pack_Sitemap->flush_rules_hook('')
#7 /home/worldl15/public_html/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(Array, Array)
#8 /home/worldl15/public_html/wp-includes/plugin.php(465): WP_Hook->do_action(Array)
#9 /home/worldl15/public_html/wp-settings.php(546): do_action('wp_loaded')
#10 /home/worldl15/public_html/wp-config.php(96): require_once('/home/worldl15/...')
#11 /home/worldl15/public_html/wp-load.php(37): require_once('/home/worldl15/...')
#12 /home/worldl15/public_html/wp-login.php(12): require('/home/worldl15/...')
#13 {main}
    [EE-Check] => false
)


Tony

  • Support Staff

June 17, 2020 at 6:47 am

I’ve removed the majority of your reply as most of it does not apply.

The snippet I’ve left may do as it shows permalinks are being flushed on wp-login.php. EE intentionally does not load on wp-login.php so at that point I don’t think the EE event posts will be registered when the permalinks are flushed.

I’ve created a ticket to investigate this.

In the meantime, may I ask why you are running multiple SEO plugins? You’ll likely find one conflicting with the other.


worldlegacy

June 18, 2020 at 7:49 pm

Thank you. I now only have one SEO plugin. So what is the status of the problem I have?


Tony

  • Support Staff

June 19, 2020 at 8:31 am

As mentioned, I’ve created a ticket to investigate this further.

EE doesn’t run on the login or registration page as the majority of our logic isn’t needed there but if permalinks are flushing on those requests that also means Event Espresso’s rewrite rules won’t be registered when flush is called.

You could try adding a snippet like this to your site:

https://gist.github.com/Pebblo/fd47c19d038ec7b5ce0aa397ba2aacc4

You can add that to a custom functions plugin and we have some documentation on creating one here:

https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/

That should tell Event Espresso to not quit when it detects the login/registration page has loaded.

The support post ‘regsitration goes to 404 page’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso