Have also tried adding this to the wp-config.php file, again sith no effect:
ini_set(‘session.use_trans_sid’, 0);
ini_set(‘session.use_only_cookies’, 1);
Any ideas?
On further investigation, after submitting the URL is apended with ?PHPSESSID=, and this is preventing the anchor tag from working.
I have no idea why this is there, but have read on other forums that you can disable this with text in the .htaccess file, e.g.
php_flag session.use_trans_sid off
php_flag session.use_only_cookies on
BUT this doesn’t seem to have an effect. I am tearing my hair out!