500 error in custom admin page with new server PHP 8.2.3
-
Hi – after moving to a new server and managing to set evertyhing up i have the following problem.
I created custom page in my admin area for a specific user role who gets redirected to it after log in. Unfortunately it stopped working and im not able to get any error on my server log files. No message in the console either and not error message with wp_debuge TRUE. Its an 500 error and the page just says with an wp-die-message:
welcome-subenin-yoneticisi can not be loaded
Im using a rule to deactivate some plugins via eos_dp_admin_url with
*admin.php?page=welcome-subenin-yoneticisi*I tried all sort of things to find out whats causing the error.
- i checked or unchecked all plugins and a lot of combinatios through the url rule
- i deactivate all plugins via plugins.php other then FDP plugin
- i removed the php code in the custom page and just used some text
- Checked evertyme my server Log files – without any error message
- Tried PHP 7.4 and 8.1 also – the same problem
The only way the page shows up is to
remove the rule completle
or activate all plugins in the rule
or deactivate FDP plugin via plugins.phpIm using PHP 8.2.3
This is the code to create the page with an admin menu item// Create a welcome menu for redirection after login to avoid problems and missing mobile menu on mobile view add_menu_page( __( 'Welcome', 'woocommerce' ).' ID '.$current_user->ID, // Single Name for Menu Item __( 'Welcome', 'woocommerce' ).' ID '.$current_user->ID, // Plural Name for Menu Item 'manage_woocommerce', // manage options for example edit_posts 'welcome-subenin-yoneticisi', // Url of the menu item 'subenin_yoneticisi_rolu_welcome_page_contents', // callback 'dashicons-smiley' ); // Page content for Welcome page function subenin_yoneticisi_rolu_welcome_page_contents() { global $current_user; $author = wp_get_current_user(); // Define child theme in MU Plugin include_once( CHILD_PATH . '/include-parts-from-functions-php-file/backend-related/admin-area-global/custom-pages/subenin-yoneticisi-role-welcome-page.php'); } FILE content of: subenin-yoneticisi-role-welcome-page.php <div class="wrap"> TEST </div>
-
Just saw that the plugin causes server errors on other plugin dahsboard pages too.. eg.
Cannot load woocommerce-customers-manager.- This reply was modified 1 year, 8 months ago by evalast.
Hi @evalast
I don’t know if you have copy/paste errors in your code, in any case, your code will surely trigger fatal errors.
You forgot ?> and <?php.It’s also strange for me you have the following part of the code outside your function. I suggest you check your code.
?> FILE content of: subenin-yoneticisi-role-welcome-page.php <div class="wrap"> TEST </div> <?php
Here you include a PHP file:
include_once( CHILD_PATH . '/include-parts-from-functions-php-file/backend-related/admin-area-global/custom-pages/subenin-yoneticisi-role-welcome-page.php');
First of all be sure that file exists. And be sure inside that file you don’t call a function, or a class, that are defined in the code of a plugin that you deactivate.
Every time you use a function or class that are not defined in your code, you should first check if they exist with function_exists, or class_exists.FDP may have an impact on this issue if you use a function or class that are defined in a plugin that you have disabled with FDP. All the rest depends on your code.
I hope it helps.
Have a great day!
Jose
Hi – i jsut pasted parts of the code to make a point. My code works fine and i tested it multiple times – its the exact same code as in my other domain which worked fine… but somehow it doesnt work anymore. Im not sure if i updated FDP before i copied the files to the new server or its caused by php 8.2.3 or anything else – but im not able to debug it, any idea how to check if FDP runs fine?
I don’t know if there are copy/past errors in your comment, in any case this part of the code can’t work:
} FILE content of: subenin-yoneticisi-role-welcome-page.php
this part can work:
} ?> FILE content of: subenin-yoneticisi-role-welcome-page.php
Assuming there are copy/paste errors in your comment, it’s still valid what I wrote before:
And be sure inside that file you don’t call a function, or a class, that are defined in the code of a plugin that you deactivate.
Every time you use a function or class that are not defined in your code, you should first check if they exist with function_exists, or class_exists.FDP may have an impact on this issue if you use a function or class that are defined in a plugin that you have disabled with FDP. All the rest depends on your code.
Have a great day!
Jose
Hi – thx im checking again. Just noticed that a rule in ?page=eos_dp_admin_url
sometimes ignores my child-themes functions. In other settings pages there is the theme listed but in thtis page it is not. Normal?- This reply was modified 1 year, 8 months ago by evalast.
ok i have on issue i do not understand – everything works if i activate all plugins in the url rule for backend and breaks if i only deactivate one of it REGARDLESS which one – tried almost every combination. So there are many plugins which have nothing to do with the custom page i created and still breaking the page load if one of them is deactivated. im stuck
Hi @evalast
ok i have on issue i do not understand – everything works if i activate all plugins in the url rule for backend and breaks if i only deactivate one of it REGARDLESS which one – tried almost every combination. So there are many plugins which have nothing to do with the custom page i created and still breaking the page load if one of them is deactivated. im stuck
If you didn’t know it, now you will learn that the plugin Hello Dolly is sometimes useful.
I suggest you:
- Install and activate Hello Dolly
- Go to Freesoul Deactivate Plugins => Backend => Backend URLs
- Add a row with the pattern *testing-issue=true*
- Disable all the plugins on that row but keep active Hello Dolly
- Go to the dashboard page but add ?testing=true to the URL: https://yoursite.com/wp-admin/?testing-issue=true
- Right-click => Inspect => Console, and be sure FDP disabled all the plugins excluding Hello Dolly
Why Hello Dolly? Because it does almost nothing, but it’s a plugin.
If after doing the steps above you see that the page https://yoursite.com/wp-admin/?testing-issue=true works, it means that the statement: “and breaks if I only deactivate one of it REGARDLESS which one” is not true. If so, I will give you other suggestions.If on the contrary, you are sure all the plugins are disabled by FDP excluding Hello Dolly, and the dashboard page doesn’t work, then your sentence is true, and we will investigate deeper taking into account this fact.
Don’t worry, step by step we will find the cause of this strange issue.
Please, first let me know what you find out after you disable all excluding Hello Dolly.Have a great day!
Jose
Did what you said – it works. Plugins are deactivated except holly
just installing everything again in the meantime
looks like it works if im only changing “siteurl” and “home” url in the database… Do i need to change the settings values in the fdp tables? if yes how – just tried it to replace with the plugin and it didnt work. So i imported the db again and only changed the two urls – atm it works
- This reply was modified 1 year, 8 months ago by evalast.
- This reply was modified 1 year, 8 months ago by evalast.
- This reply was modified 1 year, 8 months ago by evalast.
- This reply was modified 1 year, 8 months ago by evalast.
- This reply was modified 1 year, 8 months ago by evalast.
- This reply was modified 1 year, 8 months ago by evalast.
yesterday it worked – today its not. Does the plugin change anything with cronjobs…
To be sure that it is a plugin issue and not a transfer issue
– i opened all settings pages each in a tab
– i deleted the hole plugin with its data to clear the database.
– i installed the plugin again
– i went to the tabs and clicked save for each settings page
still the same issueHi @evalast
really sorry but I can’t work for a few days because of serious private reasons. I will help you as soon as I can do it.
I hope for you it’s not urgent. When I’m back I will help you.Thank you for your understanding.
Best regards
Jose
HI, im moving some sites and its not urgent. Hope you are doing well – wish you all the best. thx
I think i found the Problem. When i import the backup database it works fine, till i save the admin url settings in “…wp-admin/admin.php?page=eos_dp_admin_url”
After that the new values in the options table under
eos_dp_by_admin_url
changes the format. I compared both values before and after saving. Here they are, maybe you can find out whats causing this issue. I compared both values with diffnow.com and saw that they are different!
For example – the working value ends with“…wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php”;}}”
and the value after saving with“…wt-advanced-order-number.php”;s:1:”f”;s:1:”1″;}}”
Backup database valuea:7:{i:0;a:2:{s:3:"url";s:67:"*admin.php?page=op-warehouses&op-action=adjust_stock&warehouse_id=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:1;a:2:{s:3:"url";s:54:"*admin.php?page=op-warehouses&op-action=inventory&id=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:2;a:2:{s:3:"url";s:43:"*admin.php?page=op-transactions&warehouse=*";s:7:"plugins";s:2790:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:3;a:2:{s:3:"url";s:40:"*edit.php?post_type=atum_purchase_order*";s:7:"plugins";s:2760:",business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:4;a:2:{s:3:"url";s:43:"*admin.php?page=welcome-subenin-yoneticisi*";s:7:"plugins";s:2802:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:5;a:2:{s:3:"url";s:37:"*admin.php?page=stp_checklist_option*";s:7:"plugins";s:2943:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}i:6;a:2:{s:3:"url";s:32:"*comment.php?action=editcomment*";s:7:"plugins";s:2976:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";}}
Value after saving the admin url settings in …wp-admin/admin.php?page=eos_dp_admin_url
a:7:{i:0;a:3:{s:3:"url";s:67:"*admin.php?page=op-warehouses&op-action=adjust_stock&warehouse_id=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:1;a:3:{s:3:"url";s:54:"*admin.php?page=op-warehouses&op-action=inventory&id=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:2;a:3:{s:3:"url";s:43:"*admin.php?page=op-transactions&warehouse=*";s:7:"plugins";s:2714:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:3;a:3:{s:3:"url";s:40:"*edit.php?post_type=atum_purchase_order*";s:7:"plugins";s:2684:",business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:4;a:3:{s:3:"url";s:43:"*admin.php?page=welcome-subenin-yoneticisi*";s:7:"plugins";s:2726:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,,disable-embeds/disable-embeds.php,,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,,wp-author-slug/wp-author-slug.php,,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:5;a:3:{s:3:"url";s:37:"*admin.php?page=stp_checklist_option*";s:7:"plugins";s:2867:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}i:6;a:3:{s:3:"url";s:32:"*comment.php?action=editcomment*";s:7:"plugins";s:2900:"atum-stock-manager-for-woocommerce/atum-stock-manager-for-woocommerce.php,business-manager/business-manager.php,change-wp-admin-login/change-wp-admin-login.php,custom-upload-folder/custom-upload-folder.php,defer-transictional-emails-for-woocommerce/defer-transactional-emails-for-woocommerce.php,delete-expired-transients/delete-expired-transients.php,disable-dashboard-for-woocommerce/disable-dashboard-for-woocommerce.php,disable-embeds/disable-embeds.php,disable-global-style/disable-global-style.php,disable-lazy-loading/disable-lazy-loading.php,disable-media-sizes/disable-media-sizes.php,disable-xml-rpc/disable-xml-rpc.php,,,filter-featured-products/filter-featured.php,,host-analyticsjs-local/host-analyticsjs-local.php,index-wp-mysql-for-speed/index-wp-mysql-for-speed.php,kb-support/kb-support.php,leira-roles/leira-roles.php,limit-login-attempts-reloaded/limit-login-attempts-reloaded.php,metronet-profile-picture/metronet-profile-picture.php,mu-manager/mu-manager.php,nm-custom-code/nm-custom-code.php,nm-theme-settings/nm-theme-settings.php,own-best-rated-products-carousel/own-best-rated-products-carousel.php,own-ceckout-contracts/own-ceckout-contracts.php,own-checklists/own-checklists.php,own-copy-protection/own-copy-protection.php,own-featured-products-crousel/own-featured-products-crousel.php,own-fullwidth-hero-category-carousel/own-fullwidth-hero-category-carousel.php,own-last-viewed-products-carousel/own-last-viewed-products-carousel.php,own-most-sold-products-carousel/own-most-sold-products-carousel.php,own-newest-products-carousel/own-newest-products-carousel.php,own-on-sale-products-carousel/own-on-sale-products-carousel.php,own-posts-hero-category-carousel/own-posts-hero-category-carousel.php,own-product-categories-by-id-carousel/own-product-categories-by-id-carousel.php,own-search-only-for-article-post-type/own-search-only-for-article-post-type.php,own-shopping-benefits-carousel/own-shopping-benefits-carousel.php,own-testimonials-category-carousel/own-testimonials-category-carousel.php,plugin-notes-plus/plugin-notes-plus.php,remove-jquery-migrate/remove-jquery-migrate.php,seo-by-rank-math-custom-functions/seo-by-rank-math-custom-functions.php,show-modified-date-in-admin-lists/show-modified-date-in-admin-lists.php,show-only-lowest-prices-in-woocommerce-variable-products/show-lowest-woo-variable-prices.php,smart-attachment-page-remove/smart-attachment-page-remove.php,wc-cash-on-pickup/wc-cash-on-pickup.php,wc-invoice-gateway/wc-invoice-gateway.php,woo-preview-emails/woocommerce-preview-emails.php,woocommerce-customers-manager/customers-manager.php,woocommerce-delivery-notes/woocommerce-delivery-notes.php,woocommerce-openpos/woocommerce-openpos.php,woocommerce/woocommerce.php,wp-author-slug/wp-author-slug.php,wp-dashboard-messages/index.php,wp-head-cleaner/wp-head-cleaner.php,,wt-woocommerce-sequential-order-numbers/wt-advanced-order-number.php";s:1:"f";s:1:"1";}}
- This reply was modified 1 year, 8 months ago by evalast.
- The topic ‘500 error in custom admin page with new server PHP 8.2.3’ is closed to new replies.