Title: imageDESIGN's Replies | WordPress.org

---

# imageDESIGN

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beehive Analytics - Google Analytics Dashboard] Couldn’t authorize Google Account](https://wordpress.org/support/topic/couldnt-authorize-google-account/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/couldnt-authorize-google-account/#post-17382710)
 * I just tried downgrading to v3.4.5 and then authorizing and it worked perfectly.
   It appears to be an issue in the latest version – v3.4.10
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beehive Analytics - Google Analytics Dashboard] GA4 Account not showing after connecting](https://wordpress.org/support/topic/ga4-account-not-showing-after-connecting/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/ga4-account-not-showing-after-connecting/#post-17165376)
 * FYI This issue was answered in another topic. I have over 25 GA accounts in my
   Google account and this fix solved the problem:
 * [https://wpmudev.com/docs/wpmu-dev-plugins/beehive/#linking-multiple-analytics-account](https://wpmudev.com/docs/wpmu-dev-plugins/beehive/#linking-multiple-analytics-account)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beehive Analytics - Google Analytics Dashboard] Custom Date over 2 months not working](https://wordpress.org/support/topic/custom-date-over-2-months-not-working/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/custom-date-over-2-months-not-working/#post-17165364)
 * Great – glad to hear it’s known and being worked on. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple Domain Mapping on Single Site] Directing www subdomain to non-www mapped domain](https://wordpress.org/support/topic/directing-www-subdomain-to-non-www-mapped-domain/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/directing-www-subdomain-to-non-www-mapped-domain/#post-11439818)
 * Hi Mathias,
    The Redirection plugin seems to solve the issue and allow me to 
   redirect. Thanks for your assistance!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF Flexible Columns] Modifications to plugin that might be useful for next version](https://wordpress.org/support/topic/modifications-to-plugin-that-might-be-useful-for-next-version/)
 *  Plugin Author [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/modifications-to-plugin-that-might-be-useful-for-next-version/#post-10711318)
 * Thanks, I’ll apply those suggestions to the next update! Appreciate the feedback!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF Flexible Columns] Can’t make it work](https://wordpress.org/support/topic/cant-make-it-work-34/)
 *  Plugin Author [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [9 years ago](https://wordpress.org/support/topic/cant-make-it-work-34/#post-9211090)
 * Thanks for trying this out – great to hear some feedback and that someone besides
   myself is using this! For some reason the .json file is no longer auto-importing
   properly, so as @jaappebler2 mentioned, a manual import is needed. I will update
   the plugin to explain this and how to do it more clearly.
 * Once you have the column system imported, it’s fairly easy to use. Thanks for
   the feedback, let me know if you got this to work for you or not [@jmbalsa](https://wordpress.org/support/users/jmbalsa/)!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Interactive Image Map Plugin - Draw Attention] SVG Support](https://wordpress.org/support/topic/svg-support-5/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [10 years ago](https://wordpress.org/support/topic/svg-support-5/#post-7465909)
 * Hi Natalie,
    Thanks – I know it’s a bit different, but I’ve been playing around
   and the free plugin is 90% there already – especially after the update you just
   released. The only thing I had to do was manually set the height and width of
   the front-end img tag in the shortcode function in class-drawattention.php (I
   don’t think there is a way to detect this as SVG’s don’t always have an explicit
   height/width).
 * Anyway, I just added this below line 399:
 *     ```
       $filetype =  wp_check_filetype($img_url);
       if( $filetype['ext'] == 'svg' ){
       	$img_width = 1024;
       	$img_height = 768;
       }
       ```
   
 * So if you had a spot in the editor page to set a height & width for an SVG, it
   seems to work perfectly. I’ve been testing it out here if you’d like to see –
   [http://crosslink.idhost.ca/sample-page/](http://crosslink.idhost.ca/sample-page/)
 * The reason it has to be SVG is because the client wants to be able to zoom in
   on the image and see the lot dimensions – when we use a png, the small numbers
   are too blurry to decipher
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ExactMetrics - Google Analytics Dashboard for WordPress (Website Stats Plugin)] This report is unavailable (400)](https://wordpress.org/support/topic/this-report-is-unavailable-400/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/this-report-is-unavailable-400/#post-7009373)
 * Hi Alin,
    Thanks for your patience with us users – I know support is frustrating!
 * If it helps, we run a dedicated server with multiple WordPress sites for our 
   clients, we have a maintenance contract with them to keep everything up to date
   and secure – sites belong to the client but we do all updates and ensure everything
   is working for them. 9 times out of ten your plugin has the 400 error and I have
   to reauthorize it when I login every month. Analytics for our clients are all
   setup within one account, there are 100 clients in this account – this account
   is the one that keeps getting disconnected and requiring re-authorization. 100
   is the max that Google allows in an account, we have a second account with only
   about 20 clients in it so far, and these seem to be staying authorized without
   any issues.
 * Let me know if you need any additional information. Thank you for the help!
 * [@rich99](https://wordpress.org/support/users/rich99/) – If you’ve only got the
   400 error once, it is not the same issue – you likely just need to reauthorize
   with Google to fix – clear authorization and then get the token key again – easy
   fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ExactMetrics - Google Analytics Dashboard for WordPress (Website Stats Plugin)] This report is unavailable (400)](https://wordpress.org/support/topic/this-report-is-unavailable-400/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/this-report-is-unavailable-400/#post-7009366)
 * Having the same issue here – I have around 100 independent WP installations as
   well, all on the same dedicated server and in the same Google Analytics account.
   Every time I log in, each site seems to have the 400 error and I have to re-authorize.
   Any solutions to this would be appreciated!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Security File Log file…](https://wordpress.org/support/topic/security-file-log-file/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/security-file-log-file/#post-6489218)
 * Thank you for the details. We were missing the PHP Zip module which may have 
   been a factor, however it does seem to draw some load still after enabling the
   module. Appreciate the tip on how to permanently block logging. My techsupport
   have been advising me to delete the plugin because of the 403.php load, but I’d
   rather not as I rely on it for a lot of htacesss protections.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Security File Log file…](https://wordpress.org/support/topic/security-file-log-file/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/security-file-log-file/#post-6489186)
 * I have a large number of client sites that have your BPS plugin installed and
   we are getting a large amount of load on our server due to the 403.php file that
   processes logging. I’ve turned off logging multiple times on these sites, but
   everytime there is an update the logging seems to get turned back on and our 
   server load increases. Is there something I can do to make turning off logging
   more permanent?
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Nested Pages] Drag and Drop Permissions](https://wordpress.org/support/topic/drag-and-drop-permissions/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/drag-and-drop-permissions/#post-5562471)
 * Thanks Kyle – works great – much appreciated!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Maps Builder - Google Maps Plugin] Map shortcode appears in all publish metaboxes](https://wordpress.org/support/topic/map-shortcode-appears-in-all-publish-metaboxes/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/map-shortcode-appears-in-all-publish-metaboxes/#post-5031592)
 * So this is still occurring – any chance you could push through an update so I
   don’t have to do this manually on all my sites? Great plugin otherwise – Cheers!
 * [@dteunkens](https://wordpress.org/support/users/dteunkens/) – thanks for posting
   the fix in the meantime- much appreciated!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsible] Script showing in Admin](https://wordpress.org/support/topic/script-showing-in-admin/)
 *  Thread Starter [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/script-showing-in-admin/#post-5110480)
 * This had something to do with using New Relic on the server, I disabled it and
   the script is now gone and the plugin works great.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Resize Image After Upload] Only works for Administrators](https://wordpress.org/support/topic/only-works-for-administrators/)
 *  [imageDESIGN](https://wordpress.org/support/users/imagedesign/)
 * (@imagedesign)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/only-works-for-administrators/#post-7793825)
 * Having a similar issue on one of my sites as well. Just suddenly started giving
   the error this week though and only to Editors – Admin can upload the same photo
   without error. The plugin has been active for some time and other WP sites with
   this plugin seem unaffected.
 * `PHP Fatal error: Allowed memory size of 94371840 bytes exhausted (tried to allocate
   18368 bytes) in /wp-content/plugins/resize-image-after-upload/class.resize.php
   on line 183`
 * I solved this by adding the following to wp-config.php:
    `define('WP_MEMORY_LIMIT','
   1024M');`
 * You may not need quite that much, but it does work.

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

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