If you're signing urls, Add define( 'WP_IMGIX_SIGNING_TOKEN', 'abcdefg123456' ) to your wp-config.php file.
Implying that this setting is optional.
However if I do not define this in my wp-config.php file, then I get the following error:
Fatal error: Uncaught Error: Undefined constant "WP_IMGIX_SIGNING_TOKEN" in /var/www/vhosts/ply.digital/urban.staging.ply.digital/wp-content/plugins/wp-imgix-master/includes/class-wp-imgix.php:61
If I then try and define this as null - i.e. define( 'WP_IMGIX_SIGNING_TOKEN', '' ) or define( 'WP_IMGIX_SIGNING_TOKEN', null), then the image URLs in the content are not replaced.
Please help.
Ideally I do not want to turn on signing URLs for this website.
Hi there,
In the docs it says:
If you're signing urls, Add define( 'WP_IMGIX_SIGNING_TOKEN', 'abcdefg123456' ) to your wp-config.php file.
Implying that this setting is optional.
However if I do not define this in my wp-config.php file, then I get the following error:
Fatal error: Uncaught Error: Undefined constant "WP_IMGIX_SIGNING_TOKEN" in /var/www/vhosts/ply.digital/urban.staging.ply.digital/wp-content/plugins/wp-imgix-master/includes/class-wp-imgix.php:61
If I then try and define this as
null
- i.e.define( 'WP_IMGIX_SIGNING_TOKEN', '' )
ordefine( 'WP_IMGIX_SIGNING_TOKEN', null)
, then the image URLs in the content are not replaced.Please help.
Ideally I do not want to turn on signing URLs for this website.
Cheers Mark