WPIntell

Source evidence

Causing Errors

DMCA Protection Badge · support · 2024-04-04T13:49:00+00:00

complaintsentiment
mediumseverity
0.86relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

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

2 / 27 rows with source links

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

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

25 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
cdhodgdon unresolved
This plugin has not been updated in 10 months and is no longer compatible with WordPress and causes an error. Please take the time to update the code so that it will work correctly again and not cause an error. The page I need help with: [ log in to see the link] on line: class-plugin-base.php in dmca-badge/trunk/libraries/sidecar/classes – WordPress Plugin Repository replace line with the following content: /** * @var string $slug */ $slug = (string) basename( dirname( $this->plugin_file ) ); /** * @var bool $deprecated */ $deprecated = (bool) false; /** * @var bool $relative_path */ $relative_path = (string) '/' . $slug . '/languages'; $args = array( $slug, $deprecated, $relative_path ); call_user_func_array("load_plugin_textdomain",$args); Hi, @adomasalcore3 . I have the same problem. Could you give more explanation about which line should be replaced? From line…to line…? Thanks in advance. This appears to be resolved in the latest version, if not, see: class-plugin-base.php in dmca-badge/tags/2.1.56/libraries/sidecar/classes – WordPress Plugin Repository Line 1985 load_plugin_textdomain( $this -> plugin_slug, false , '/' . basename( dirname( $this -> plugin_file ) ) . '/languages' ); the bug is on the part “$this->plugin_slug”, replace it by $slug = basename( dirname( $this->plugin_file ) ); $relative_path = '/' . $slug . '/languages'; load_plugin_textdomain( $slug, false , $relative_path ); And that should solve the error. If not, there is a new bug that I have not seen yet.

Comments

3 shown
Tiago Dias 2024-04-11T17:20:00+00:00

on line: class-plugin-base.php in dmca-badge/trunk/libraries/sidecar/classes – WordPress Plugin Repository replace line with the following content: /** * @var string $slug */ $slug = (string) basename( dirname( $this->plugin_file ) ); /** * @var bool $deprecated */ $deprecated = (bool) false; /** * @var bool $relative_path */ $relative_path = (string) '/' . $slug . '/languages'; $args = array( $slug, $deprecated, $relative_path ); call_user_func_array("load_plugin_textdomain",$args);

Muhammad Faizin 2024-06-23T01:34:00+00:00

Hi, @adomasalcore3 . I have the same problem. Could you give more explanation about which line should be replaced? From line…to line…? Thanks in advance.

Tiago Dias 2024-06-26T00:01:00+00:00

This appears to be resolved in the latest version, if not, see: class-plugin-base.php in dmca-badge/tags/2.1.56/libraries/sidecar/classes – WordPress Plugin Repository Line 1985 load_plugin_textdomain( $this -> plugin_slug, false , '/' . basename( dirname( $this -> plugin_file ) ) . '/languages' ); the bug is on the part “$this->plugin_slug”, replace it by $slug = basename( dirname( $this->plugin_file ) ); $relative_path = '/' . $slug . '/languages'; load_plugin_textdomain( $slug, false , $relative_path ); And that should solve the error. If not, there is a new bug that I have not seen yet.