WPIntell

Source evidence

Create Distribution doesnt work

WPAdmin AWS CDN · support · 2024-01-18T20:45:00+00:00

complaintsentiment
mediumseverity
0.8relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 37 rows with source links

18.9% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
bendur95 unresolved
“Create Distribution” button doesn’t work. This is my log file: "nt/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(): Failed opening '/var/www/mywebsite.com/htdocs/wp-config.php' for inclusion (include_path='.:/usr/share/php') in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(/var/www/mywebsite.com/htdocs/wp-config.php): Failed to open stream: No such file or directory in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(): Failed opening '/var/www/mywebsite.com/htdocs/wp-config.php' for inclusion (include_path='.:/usr/share/php') in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(/var/www/mywebsite.com/htdocs/wp-config.php): Failed to open stream: No such file or directory in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(): Failed opening '/var/www/mywebsite.com/htdocs/wp-config.php' for inclusion (include_path='.:/usr/share/php') in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(/var/www/mywebsite.com/htdocs/wp-config.php): Failed to open stream: No such file or directory in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(): Failed opening '/var/www/mywebsite.com/htdocs/wp-config.php' for inclusion (include_path='.:/usr/share/php') in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php on line 113PHP message: PHP Warning: include_once(/var/www/mywebsite.com/htdocs/wp-config.php): Failed to open stream: No such file or directory in /var/www/mywebsite.com/htdocs/wp-content/plugins/aws-cdn-by-wpadmin/class-aws-cdn.php I think that my problem is that my wp-config.php file is in var/www/mywebsite.com and the plugin is looking for inside htdocs. How could I fix it? If you are getting a 500 error, I fixed it by adding to the plugin class-aws-cdn-admin.php on line 465 : if (count($result['DistributionList']['Items']) > 0) { Replaced with if (isset($result[‘DistributionList’][‘Items’]) && count($result[‘DistributionList’][‘Items’]) > 0) { $dls = $result[‘DistributionList’][‘Items’];

Comments

2 shown
bendur95 2024-01-18T21:34:00+00:00

I think that my problem is that my wp-config.php file is in var/www/mywebsite.com and the plugin is looking for inside htdocs. How could I fix it?

xenomprime 2024-04-25T07:14:00+00:00

If you are getting a 500 error, I fixed it by adding to the plugin class-aws-cdn-admin.php on line 465 : if (count($result['DistributionList']['Items']) > 0) { Replaced with if (isset($result[‘DistributionList’][‘Items’]) && count($result[‘DistributionList’][‘Items’]) > 0) { $dls = $result[‘DistributionList’][‘Items’];