Difference between revisions of "WordPress Copy a Website"

Wiki.TerraBase.info
Jump to navigation Jump to search
(Created page with "If you've got the perfect WordPress website and want to copy it, here's how to do it. Perfect here is more focused on the backend and administrative stuff, not the content of the site. IE, Plugins, custom themes, and other customizations, etc. It's a lot like 'moving' a WordPress website, but with some extra stuff. <nowiki>*</nowiki>.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL == File Contents == === Utiliti...")
 
m
Line 5: Line 5:
<nowiki>*</nowiki>.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL
<nowiki>*</nowiki>.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL


== File Contents ==
==File Contents==


=== Utilities (for Windows) ===
===Utilities (for Windows)===


* Advanced Find and Replace ($)
*Advanced Find and Replace ($)
* Find and Replace (Free, with requested donations)
*Find and Replace (Free, with requested donations)
** Suggested Exclude Mask: *.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL
**Suggested Exclude Mask: *.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL
**Suggested Settings: Case Sensitive (turn it ON)


=== Utilities (for WordPress) ===
=== Utilities (for WordPress) ===


* String Locator
*String Locator


=== Commands ===
===Commands===


* This command will locate strings within files;
*This command will locate strings within files;
** grep -Ril WhatEverStringToSearchFor WhatEverPathToSearch
**grep -Ril WhatEverStringToSearchFor WhatEverPathToSearch
** -R = Recursive (IE, search sub-directories)
**-R = Recursive (IE, search sub-directories)
** -i = Ignore Case (IE, make the string that is being searched for Case Insensitive)
**-i = Ignore Case (IE, make the string that is being searched for Case Insensitive)
** -l = Only list the File Names that contain the searched for strings in the results (That's an L (El), not an I (eye) for the switch)
**-l = Only list the File Names that contain the searched for strings in the results (That's an L (El), not an I (eye) for the switch)

Revision as of 12:58, 13 May 2022

If you've got the perfect WordPress website and want to copy it, here's how to do it. Perfect here is more focused on the backend and administrative stuff, not the content of the site. IE, Plugins, custom themes, and other customizations, etc.

It's a lot like 'moving' a WordPress website, but with some extra stuff.

*.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL

File Contents

Utilities (for Windows)

  • Advanced Find and Replace ($)
  • Find and Replace (Free, with requested donations)
    • Suggested Exclude Mask: *.dll, *.exe, *.png, *.jpg, *.webp, *.bcmap, *.z, *.tmp, *.pdf, *.zip, *.pack, *.idx, *.swf, *.ORIGINAL
    • Suggested Settings: Case Sensitive (turn it ON)

Utilities (for WordPress)

  • String Locator

Commands

  • This command will locate strings within files;
    • grep -Ril WhatEverStringToSearchFor WhatEverPathToSearch
    • -R = Recursive (IE, search sub-directories)
    • -i = Ignore Case (IE, make the string that is being searched for Case Insensitive)
    • -l = Only list the File Names that contain the searched for strings in the results (That's an L (El), not an I (eye) for the switch)