Title: redesigned's Replies | WordPress.org

---

# redesigned

  [  ](https://wordpress.org/support/users/redesigned/)

 *   [Profile](https://wordpress.org/support/users/redesigned/)
 *   [Topics Started](https://wordpress.org/support/users/redesigned/topics/)
 *   [Replies Created](https://wordpress.org/support/users/redesigned/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/redesigned/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/redesigned/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/redesigned/engagements/)
 *   [Favorites](https://wordpress.org/support/users/redesigned/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/redesigned/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/redesigned/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smash Balloon Social Post Feed - Simple Social Feeds for WordPress] Warning: array_merge(): Expected parameter 2 to be an array, bool given](https://wordpress.org/support/topic/warning-array_merge-expected-parameter-2-to-be-an-array-bool-given/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/warning-array_merge-expected-parameter-2-to-be-an-array-bool-given/#post-14848391)
 * This is for the Instagram feed plugin, not the Facebook feed plugin.
 * Checking that the variables are arrays before calling array_merge would prevent
   the error from being thrown.
 * I’ll open a support ticket at the suggested location.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Which Gutenberg Block to use for Search Results?](https://wordpress.org/support/topic/which-gutenberg-block-to-use-for-search-results/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/which-gutenberg-block-to-use-for-search-results/#post-12615177)
 * yes, BUT when building a purely gutenberg theme, using block template wp_template
   post type to theme slug mapping, so that you don’t have any php template files,
   what gutenberg block should be use to build the search results page of a site?
 * Hooking this:
    [https://github.com/WordPress/gutenberg/pull/13583](https://github.com/WordPress/gutenberg/pull/13583)
 * It seems this will be it:
    [https://github.com/WordPress/gutenberg/pull/20106](https://github.com/WordPress/gutenberg/pull/20106)
   but that it isn’t completed yet, so we’ll have to build out own block in the 
   meantime,, unless anyone knows otherwise.
 * Pure gutenberg sites are so close, this is the last piece.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF Page Builder Field] Not seeing Page Builder in Field Type](https://wordpress.org/support/topic/not-seeing-page-builder-in-field-type-2/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/not-seeing-page-builder-in-field-type-2/#post-10121037)
 * Got it working by deactivating a 3rd party pagebuilder widget library. Sorry 
   for the bother. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GoUrl WooCommerce - Bitcoin Altcoin Payment Gateway Addon] Checkout With BitCoin](https://wordpress.org/support/topic/checkout-with-bitcoin/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/checkout-with-bitcoin/#post-9293048)
 * ![the button in question](https://i0.wp.com/redesigned.com/misc/gourl_bitcoin.
   png)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better Search Replace] Search on wp_postmeta returns thousands of false positives](https://wordpress.org/support/topic/search-on-wp_postmeta-returns-thousands-of-false-positives/)
 *  [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/search-on-wp_postmeta-returns-thousands-of-false-positives/#post-8815342)
 * I’m also seeing false positives when searching wp_postmeta or other tables with
   serialized data. since i can’t see what it is matching and have no way to select
   or unselect which matches to act on, there is no way i can run the search and
   replace without fear of replacing false matches and corrupting data. 🙁
 * on the current site i get 41 matches on wp_postmeta for any term or string i 
   know doesn’t exist.
 * anyone have any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Log Viewer] Debugging is enabled. However, the debug.log file does not exist](https://wordpress.org/support/topic/debugging-is-enabled-however-the-debuglog-file-does-not-exist/)
 *  [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/debugging-is-enabled-however-the-debuglog-file-does-not-exist/#post-8736382)
 * Having the same issue.
 * 1. wp-content directory is writable (755), wordpress writes content all the time.
 * 2. in wp-config
 *     ```
       define('WP_DEBUG', true);
       define('WP_DEBUG_LOG', true);
       define('WP_DEBUG_DISPLAY', false);
       @ini_set('display_errors',0);
       @ini_set("error_log", dirname(__FILE__).'/wp-content/debug.log');
       ```
   
 * 3. manually trying to write custom logs
    `error_log('#test: Test.');`
 * 4. Error:
    `Debugging is enabled. However, the debug.log file does not exist 
   or was not found.`
 * Any Ideas?
 * update #1: if i manually create the debug.log file the plugin finds it and shows
   0 errors. but still no luck writing to it.
 * update #2: think i found the issue. if i run phpinfo the error_log location is
   being overridden by the server and @ini_set isn’t overwriting it. neither is 
   php.ini or .user.ini. looks like this is hard set in the server config and not
   user changeable.
 * SOLUTION: since I couldn’t change the error_log location, i created a symlink
   from the location and filename the plugin is expecting to the actual location
   and file. The logging now appears to be working as expected. Hope this helps 
   someone in the future with the same issue. cheers.
 * Any Ideas?
    -  This reply was modified 9 years, 3 months ago by [redesigned](https://wordpress.org/support/users/redesigned/).
    -  This reply was modified 9 years, 3 months ago by [redesigned](https://wordpress.org/support/users/redesigned/).
    -  This reply was modified 9 years, 3 months ago by [redesigned](https://wordpress.org/support/users/redesigned/).
      Reason: solution
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Pinboard] Homepage Infinite Load Keeps Loading the same posts over and over…](https://wordpress.org/support/topic/homepage-infinite-load-keeps-loading-the-same-posts-over-and-over/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/homepage-infinite-load-keeps-loading-the-same-posts-over-and-over/#post-5253602)
 * Duh. Had to switch the homepage from using the home page to display latest posts,
   working now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] WARNING: No folder to back up.](https://wordpress.org/support/topic/warning-no-folder-to-back-up/)
 *  [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/warning-no-folder-to-back-up/#post-3795107)
 * I’m having the same issue on several installs, works fine on others. Normal backup
   jobs with all the default options. No clue why this error is occurring, but the
   backup file is small and doesn’t contain any of the actual files…
 * Did you ever get to the bottom of this issue or find an alternative?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Magento Wordpress Integration] Issue displaying custom block](https://wordpress.org/support/topic/issue-displaying-custom-block/)
 *  [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/issue-displaying-custom-block/#post-3773025)
 * did you ever figure this out? i am trying to do something similar.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] Running this downloads wp-login.php from the site even though i'm logged in.](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/#post-3177543)
 * resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] Not creating backup file even though permissions are 777 for uploads folder.](https://wordpress.org/support/topic/not-creating-backup-file-even-though-permissions-are-777-for-uploads-folder/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/not-creating-backup-file-even-though-permissions-are-777-for-uploads-folder/#post-3395788)
 * Figured it out myself…haha.
 * If i don’t check the box to download the file to my computer, then it saves the
   file just fine and i can then click the link from the notice message and download
   it.
 * Not sure why it works in two steps but not in one, but i’m glad it is working.
 * Thanks again for the great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] Running this downloads wp-login.php from the site even though i'm logged in.](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/#post-3177542)
 * Hi Brad,
 * I just wanted to post back that I figured out the issue.
 * The file download is passed through a php file instead being a direct download.
   For some reason the way the php file checks the admin login cookie it doesn’t
   work with several of the major download managers for firefox even though they
   pass the same cookie.
 * Confirmed not working through: FlashGot, DownThemAll, Leech…probably most.
 * If you disable the download manager, you no longer download the wp-login.php 
   file itself.
 * Hope that helps.
 * Thanks,
    Josh
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] Running this downloads wp-login.php from the site even though i'm logged in.](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/#post-3177533)
 * they both only use the image-widget and the wysiwyg-text widgets. neither has
   any other plugins, they are both pretty basic sites.
 * maybe an incompatibility with wp-migrate-db and certain server configurations?
 * sorry i wish i had more info about a possible cause, i know this bug report isn’t
   a lot of help without more info or a way to reproduce. Has anyone else reported
   this issue?
 * Both these sites are already moved from those locations to new locations, which
   is why i was trying to use your plugin, or else i’d try and get you access info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] Running this downloads wp-login.php from the site even though i'm logged in.](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/)
 *  Thread Starter [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/running-this-downloads-wp-loginphp-from-the-site-even-though-im-logged-in/#post-3177531)
 * when i run wp-migrate to generate the new sql file for migration, instead of 
   creating the file i needed, it triggers the borwser to download the wp-login.
   php file.
 * this was happening on a client hosted on hostgator.
    it also happened a week 
   later on a client hosted on a IIS server.
 * normally wp-migrate-db works like a champ, but for some reason in certain cases
   it doesn’t generate the files and rather spits out the login php file as a download
   instead, even though you have to already be logged in in order to run wp-migrate-
   db.
 * does that make sense?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Duplicator - Backups & Migration Plugin - Cloud Backups, Scheduled Backups, & More] [Plugin: Duplicator] WordPress Serialization problem ?](https://wordpress.org/support/topic/plugin-duplicator-wordpress-serialization-problem/)
 *  [redesigned](https://wordpress.org/support/users/redesigned/)
 * (@redesigned)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-duplicator-wordpress-serialization-problem/#post-3001233)
 * I too am curious if this plugin handles wp serialized data as that is the main
   reason i’d have for such a plugin.
 * moving datatbases, copying files, updating wp-config.php and the wp_options table
   are no problem manually.
 * It is the darn serialized data and all the widgets and plugins that use serialized
   data and the embedded string length that is the pain. 🙂
 * If this plugin properly handles serialized data like wp_migrate_db then it looks
   like a real find. If not then it will cause a lot of missing data, widgets, and
   plugins, and needs to be updated for the new way wordpress saves serialized data.
 * Thanks.

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/redesigned/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/redesigned/replies/page/2/?output_format=md)