there is a way.
at integration path, I set ../wp/
and fishpig connect successfull.
at my case my default server path is:
/home/servename/public_html/
using ../
I return to /home/servename/
and wp is my subdirectory folder.
full path is:
/home/servename/wp/
If you migrated your wordpress you will need replace all server patch
Changing the absolute paths of the website URL ('siteurl') and URL of the home (homeurl '):
UPDATE wp_options
SET option_value = REPLACE(option_value,
'http://www.siteantigo.com.br', 'http://www.sitenovo.com.br')
WHERE option_name = 'home'
OR option_name = 'siteurl';
change GUID:
UPDATE wp_posts
SET guid = REPLACE (guid,
'http://www.siteantigo.com.br', 'http://www.sitenovo.com.br');
Change URLs within content
UPDATE wp_posts
SET post_content = REPLACE (post_content,
'http://www.siteantigo.com.br', 'http://www.sitenovo.com.br');
Ghange image paths:
UPDATE wp_posts
SET post_content = REPLACE (post_content,
'src="http://www.siteantigo.com.br', 'src="http://www.siteantigo.com.br');
attachments GUID
UPDATE wp_posts
SET guid = REPLACE (guid,
'http://www.siteantigo.com.br', 'http://www.siteantigo.com.br')
WHERE post_type = 'attachment';
works for me.
I hope it helped...