Hi Bananaj,
Thanks for your post it got me thinking and I had the same issue. Mine was caused by a security plugin called WP Defender by WPMUDEV which had PHP execution implemented I had to go into the .htaccess file inside the wp-content folder and simply add this into the file:
<Files wpeditor.php>
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</Files>
This resolved the issue for me. Hope it helps others out! Thanks again @bananaj
Cheers, Sas
Hi all,
No fix as yet! In our case the path to the web server document root is the same so there isn’t an issue there. I’m checking with support of there is an issue with permissions or perhaps some issue with another plugin. I’ll report back ASAP!
Cheers, Sas
Hi Support,
Unfortunately either fix did not work.
To confirm I have added the following to .htaccess
<IfModule mod_substitute.c>
SubstituteMaxLineLength 10M
</IfModule>
In wp-config.php file I added:
define( ‘WP_MEMORY_LIMIT’, ‘256M’ ); // increased from 128 to 256
define( ‘CONCATENATE_SCRIPTS’, false );
But it still doesn’t work. I will email you with details to access our site.
Cheers, Sas
I’m specifically looking to update the wp-content/plugins/td-amp/templates/single.php file so to include some social sharing by Super Socializer.
Cheers, Sas
-
This reply was modified 7 years by
ijammedia.
Chris S,
Lifesaver mate! Spent ages trying to get this to work it ended up being enable comments on each post that did the trick 😉
Cheers, Ian
-
This reply was modified 8 years by
ijammedia.
We are having the same issue. We have deactivated all plug-ins and caching, refreshed everything and still have the same problem as the person above.
This will obviously cause duplicate content which is terrible for SEO and there doesn’t seem to be any options anywhere bar turning off the mobile theme i.e go to responsive only.
So what can we do to fix this issue?
Hi Bogdan,
I found the bug the problem is with the custom permalink structure. So basically if you have a custom structure like:
http://www.domain.com /%category%/%postname%
It doesn’t work however if you use a trailing slash like so then it works perfectly like so:
http://www.domain.com /%category%/%postname%/
So it seems the JS that deals with the smart list pagination does not handle URL’s without the trailing slash perhaps you can speak to the dev team to fix this as some publishers may use trailing slash or without. For now we’ll add a trailing slash to permalinks as a workaround.
Cheers, Sas
Hi Support/Catalin,
The problem still persists I’m afraid. Can you please investigate? Where can I provide login and SFTP details?
Cheers, Sas
Hi Andrei,
That worked perfectly. Thank you very much for your solution 😉
Cheers, Sas
Hi Ben,
Interested to know how you implemented this? Was it via the theme panel or hard coded into the theme?
Cheers, Sas
Hi Catalin,
Thank you for you for your response. I’ll see if we can customise this to work. Also what about the issue with the pagination URL’s generating 404 errors? Surely this is an issue?
Cheers, Sas
I also notice when you paginate through the smart list for the first time it causes some issue for example:
Main page: http://www.domain.com/category/post
First pagination: http://www.domain.com/category/post2
Next (2nd) pagination: http://www.domain.com/category/post2/3/
If I then happen to refresh the page for whatever reason I get a 404 page. I understand the pagination is JS/jQuery but it really should refresh without a 404.
Cheers, Sas
