3
votes

I installed ZeroEngine theme and MarketEngine plugin on my Wordpress LocalHost with XAMPP (MAC OS Sierra) from [www.enginethemes.com] (https://www.enginethemes.com/member/content/MarketEngine.14).

From the listings menu in this WordPress plugin, If I click on the URL of any of the titles as highlighted in the attached listing page photo:

enter image description here

the error message below is displayed.

Object not found! The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. If you think this is a server error, please contact the webmaster. Error 404 localhost Apache/2.4.25 (Unix) OpenSSL/1.0.2j PHP/5.6.30 mod_perl/2.0.

As usual, I've tried several options to solve the issue by contacting the plugin developer, they mentioned choosing a Permalink which I've tried by selecting "Post name" from setting and the issue is yet to be resolved. I've also read several posts about this error.

2
I found clearing my browser's cache helpedMeltingDog

2 Answers

1
votes

You have to config rewrite rules for wp's friendly links. Be sure that mod_rewrite extension enabled. Then you can create .htaccess file on your wp root directory with following lines:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f    # dont rewrite existing files
    RewriteCond %{REQUEST_FILENAME} !-d    # dont rewrite existing directories
    RewriteRule . /index.php [L]
    
    # END WordPress
1
votes

Updating permalinks worked for me

Settings > Permalinks > Click Save