Post Export Import with Media

Easily export and import WP posts, pages, media, widgets, menus, themes, plugins & settings with their media files- secure, fast, and with real-ti …

v1.13.1wpazleenUpdated Added 1k+ installs100% rating100% support resolved
24
Score
619
Errors
1,334
Warnings
+0
Change

Category Scores

Security0
Repo97
Performance94
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,953 findings

Maintainability

1,341

19 issue groups

Security

527

3 issue groups

I18n

64

3 issue groups

WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,091
Category
Maintainability
Occurrences
1,091
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.514
Category
Security
Occurrences
514
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.

WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;_fs_text&quot;.99
Category
Maintainability
Occurrences
99
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;_fs_text&quot;.

WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;FS_Admin_Menu_Manager&quot;.57
Category
Maintainability
Occurrences
57
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: &quot;FS_Admin_Menu_Manager&quot;.

ERRORI18nMissing Translators CommentA function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.37
Category
I18n
Occurrences
37
Severity
error

Sample message

A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.

WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;FS_API__ADDRESS&quot;.26
Category
Maintainability
Occurrences
26
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;FS_API__ADDRESS&quot;.

ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().20
Category
I18n
Occurrences
20
Severity
error

Sample message

Missing $domain parameter in function call to __().

WARNINGMaintainabilityDiscouraged PHP functionThe use of function ini_set() is discouraged18
Category
Maintainability
Occurrences
18
Severity
warning

Sample message

The use of function ini_set() is discouraged

ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.8
Category
Maintainability
Occurrences
8
Severity
error

Sample message

date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Use of a direct database call is discouraged.

Show 15 more
ERRORSecurityException output is not escaped7
Category
Security
Occurrences
7
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$message'.

ERRORI18nUnordered Placeholders Text7
Category
I18n
Occurrences
7
Severity
error

Sample message

Multiple placeholders in translatable strings should be ordered. Expected "%1$d, %2$d", but got "%d, %d" in 'Import completed: %d widgets and %d menus imported'.

WARNINGMaintainabilityNo Caching6
Category
Maintainability
Occurrences
6
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

WARNINGSecurityInput is not sanitized6
Category
Security
Occurrences
6
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES[&#039;media_file&#039;][&#039;tmp_name&#039;]

WARNINGMaintainabilityNon-prefixed hook name5
Category
Maintainability
Occurrences
5
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: &quot;fs_plugins_api&quot;.

ERRORMaintainabilityForbidden PHP function found3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

The use of function move_uploaded_file() is forbidden

WARNINGMaintainabilityslow db query meta query3
Category
Maintainability
Occurrences
3
Severity
warning

Sample message

Detected usage of meta_query, possible slow query.

ERRORMaintainabilityparse url parse url3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.

WARNINGMaintainabilityMissing Version3
Category
Maintainability
Occurrences
3
Severity
warning

Sample message

Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.

ERRORMaintainabilityPlugin Directory Write2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

Plugin folders are deleted when upgraded. Do not save data to the plugin folder using copy(). Detected usage of constant WP_PLUGIN_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead.

WARNINGMaintainabilitySchema Change2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Attempting a database schema change is discouraged.

WARNINGMaintainabilityerror log error log2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

error_log() found. Debug code should not normally be used in production.

ERRORMaintainabilityfile system operations is writable2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable().

ERRORMaintainabilityfile system operations readfile2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: readfile().

ERRORMaintainabilityfile system operations rmdir2
Category
Maintainability
Occurrences
2
Severity
error

Sample message

File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: rmdir().

External Connections

Potential connections found in static code analysis.

32 domains

Outbound calls

217

External assets

2

Incoming endpoints

81

Notable Domains

wpazleen.com30 · outbound
freemius.com10 · outbound
php.net6 · outbound
youtube.com6 · outbound
benalman.com2 · outbound

Platform / Reference Domains

gnu.org111 · platform/reference
w3.org12 · platform/reference
wordpress.org8 · platform/reference
api.wordpress.org2 · platform/reference
github.com2 · platform/reference
make.wordpress.org2 · platform/reference
core.trac.wordpress.org1 · platform/reference
s.w.org1 · platform/reference

External Asset Domains

No external asset domains detected.

Incoming Endpoints

No public endpoints detected.

Admin AJAX endpoints76
wp_ajax_peiwm_import_widgets_menusauthenticated

wp_ajax

wp_ajax_peiwm_get_content_statsauthenticated

wp_ajax

wp_ajax_peiwm_import_nav_menusauthenticated

wp_ajax

wp_ajax_peiwm_import_widgetsauthenticated

wp_ajax

admin_post_fs_clone_resolutionauthenticated

admin_post

admin_post_peiwm_download_cpt_exportauthenticated

admin_post

admin_post_peiwm_download_users_exportauthenticated

admin_post

admin_post_peiwm_export_media_downloadauthenticated

admin_post

admin_post_peiwm_export_posts_downloadauthenticated

admin_post

wp_ajax_fetch_recommendationsauthenticated

wp_ajax

wp_ajax_fs_dismiss_notice_action_{$ajax_action_suffix}authenticated

wp_ajax

wp_ajax_fs_toggle_debug_modeauthenticated

wp_ajax

64 more hidden

Score History

2 score snapshots

+0
1007550250Jun 24, 2026, 11:08 PM UTC Score 24/100 Plugin v1.13.0 Plugin Check 2.0.0 627 errors, 1,333 warningsJun 26, 2026, 09:52 AM UTC Score 24/100 Plugin v1.13.1 Plugin Check 2.0.0 619 errors, 1,334 warningsJun 24, 2026Jun 26, 2026

v1.13.1

24

Latest

Findings
1,953
Errors
619
Warnings
1,334
Check
2.0.0

v1.13.0

24

Score

Findings
1,960
Errors
627
Warnings
1,333
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

37 nodes

Related Plugins

Aruba Migration Tool

600 active installs

100
Add From Server Reloaded

3k+ active installs

99
Crafthemes Demo Import

400 active installs

99
Custom Post Exporter

3k+ active installs

99
Solace Extra

10k+ active installs

99