I was afraid of that
Isn’t there a place/file where I could replace the string “translatable” direct on the code?
Even if I need to do this every time plugin updates itself, I guess it’s easier than install and generate a new translating file…
[]’s!
Hi guys,
I was facing the same problem here, but I could solve it. Basically, I put this on wp-config.php
:
define('COOKIEHASH', '65f9fb5b6e5df178e02402af4495ed46');
define('COOKIE_DOMAIN', '.www.rodrigoghedin.com.br');
define('SITECOOKIEPATH', '/teste/');
define('COOKIEPATH', '/teste/');
And this in bb-config.php
:
$bb->cookiedomain = '.www.rodrigoghedin.com.br';
I’m running a test installation. Main WordPress is in a directory (/teste), and bbPress is a sub-directory (/teste/bbpress). Right now, it’s working fine.
[]’s!