Title: IJMacD's Replies | WordPress.org

---

# IJMacD

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

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

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Embedder] Re: Pdf embedder not loading jsfiles](https://wordpress.org/support/topic/re-pdf-embedder-not-loading-jsfiles/)
 *  Thread Starter [IJMacD](https://wordpress.org/support/users/ijmacd/)
 * (@ijmacd)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/re-pdf-embedder-not-loading-jsfiles/#post-13795263)
 * The important thing is that `$this->pdfemb_wp_enqueue_scrips()` is called before`
   wp_enqueue_script( 'pdfemb_embed_pdf_js' )`
 *     ```
       22	        protected function insert_scripts() {
       23	                if (!$this->inserted_scripts) {
       24	                        $this->inserted_scripts = true;
         24a + inserted line           $this->pdfemb_wp_enqueue_scrips(); // NEW LINE
       25	                        wp_enqueue_script( 'pdfemb_embed_pdf_js' );
       26	                       
       27	                        wp_enqueue_script( 'pdfemb_pdf_js' );
       28	                       
       29	                        wp_enqueue_style( 'pdfemb_embed_pdf_css', $this->my_plugin_url().'css/pdfemb-embed-pdf-'.$this->PLUGIN_VERSION.'.css', array(), $this->PLUGIN_VERSION );
       30	                }
       31	        }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Solid Mail – SMTP email and logging made by SolidWP] Class ‘WPSMTP\Admin’ not found](https://wordpress.org/support/topic/class-wpsmtpadmin-not-found/)
 *  [IJMacD](https://wordpress.org/support/users/ijmacd/)
 * (@ijmacd)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/class-wpsmtpadmin-not-found/#post-13491986)
 * I fixed this bug in my local install by changing line 26 in `wp-smtp.php` to:
 *  `require_once __DIR__ . "/vendor/autoload.php"`
 * I also recreated the composer autoload scripts by running `composer dumpautoload-
   o` in the plugin directory.
 * The plugin was taken over by Yehuda Hassine sometime after September 2018. The
   most recent version on github is 1.1.9 by the previous owner. The new project
   owner needs to make these changes in his own copy of the plugin then release 
   a new version. He also needs to test more thoroughly before releasing versions
   to the public.
    -  This reply was modified 5 years, 7 months ago by [IJMacD](https://wordpress.org/support/users/ijmacd/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce & qTranslate-X] product list categories in Admin are not shown translated](https://wordpress.org/support/topic/product-list-categories-in-admin-are-not-shown-translated/)
 *  [IJMacD](https://wordpress.org/support/users/ijmacd/)
 * (@ijmacd)
 * [10 years ago](https://wordpress.org/support/topic/product-list-categories-in-admin-are-not-shown-translated/#post-6892015)
 * I believe it is a qTranslate-X issue rather than this plugin (WooCommerce & qTranslate).
 * This github issue [https://github.com/qTranslate-Team/qtranslate-x/issues/363](https://github.com/qTranslate-Team/qtranslate-x/issues/363)
   has a fix.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Resize Image After Upload] HTTP error](https://wordpress.org/support/topic/http-error-47/)
 *  [IJMacD](https://wordpress.org/support/users/ijmacd/)
 * (@ijmacd)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/http-error-47/#post-5376283)
 * I too am getting this error. I’ve only just installed this plugin so can’t say
   if this was due to a recent update or anything.
 * I’ve done some quick diagnosis. I can still upload images successfully which 
   are below the resize limit I set with the plugin. However, when I try to upload
   an image larger I experience similar symptoms to [@sepruda](https://wordpress.org/support/users/sepruda/).
   The ajax uploader fails only returning the message ‘`HTTP Error`‘. Using the 
   browser uploader fails silently. Inspecting the request shows it was a 500 error
   but it too was silent. After enabling ‘`WP_DEBUG`‘ the server spat out this with
   the 500 response:
 * > Fatal error: Call to undefined function imagecreatefromjpeg() in /var/www/html/
   > studio/wp-content/plugins/resize-image-after-upload/class.resize.php on line
   > 183
 * I have ImageMagick installed on my server but not GD:
 * >     ```
   >     imagick module	enabled
   >     imagick module version	3.1.2
   >     ```
   > 
 * WordPress is able to resize images itself, however, via the Edit Image page.

Viewing 4 replies - 1 through 4 (of 4 total)