Rohan Kamble
Forum Replies Created
-
I am also getting these notices in my error logs.
I can clearly see that the wp_localize_script function in wp-content/plugins/pardot/pardot.php file is called with following args
wp_localize_script( ‘build/index.js’, ‘ajaxurl’, admin_url( ‘includes/admin-ajax.php’ ));
in which the last arg is expected to be an array as per the function definition.

but pardot is not passing 3rd arg as an Array instead it is sending admin_url
Hope this is fixed soon.
Forum: Fixing WordPress
In reply to: There has been an error cropping your image@summllc – Hey Summllc, The GD library is a graphics drawing library that provides tools for manipulating image data. If you are not someone who usually runs commands on your server then I would recommend you contact your web hosting technical support and request support for the GD library in PHP.
Forum: Fixing WordPress
In reply to: There has been an error cropping your imageI ran into same issue few months back for my blog and
after searching for a while found out that it was because GD library for PHP which was not installed on the serverTo find the GD Library package within CentOS repository
$ sudo yum list available | grep 'gd'Identify GD Library package name and install it
$ sudo yum install php-gdRestart apache service
$ sudo service httpd restartDetailed article here
there-has-been-an-error-cropping-your-image/