• I have a weird problem that I hope someone has a very simple solution for.

    I recently moved hosts and a bunch of my plugins stopped working, after closer inspection it seems that sometimes a call to a plugin’s php file is being intercepted by the server or wordpress and being handled incorrectly.

    For example this link
    https://www.lazygamer.co.za/wp-content/plugins/comment-rating/ck-processkarma.php
    Should execute the php file but rather it display a no article found page.

    Does anyone have any idea how I can resolve this?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugins aren’t meant to be run via a direct url, so I’m not sure what that link proves.

    Thread Starter GavinMannion

    (@gavinmannion)

    Yes I understand that, but if you run this plugin PHP file on antoher site that has the plugin installed it executes the file
    https://wealthynetizen.com/wp-content/plugins/comment-rating/ck-processkarma.php

    The point being that my plugin cannot execute itself because on my site it is bein redirected as an article or something?

    Could be a conflict with another plugin or something in the theme.

    Thread Starter GavinMannion

    (@gavinmannion)

    I previously thought it may have been the .htaccess settings but they all seem fine

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    As far as the plugin developer is aware it isn’t a conflict and I highly doubt it’s anything to do with my theme…

    As far as the plugin developer is aware it isn’t a conflict and I highly doubt it’s anything to do with my theme…

    sounds like youve got it all figured out then and dont need anyone here…

    Thread Starter GavinMannion

    (@gavinmannion)

    I posted that I had checked with the plugin developer, the .htaccess file since that is a common problem and said that I doubted it was the theme.

    It isn’t the theme because this problem started when I moved hosts which is something I stated in my first post.

    I am happy to check anything and do need help but a generic “something in the theme” is neither helpful nor insightful.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Unable to execute plugin php files’ is closed to new replies.