By ashutosh on Wednesday, 23 October 2013
Replies 6
Likes 0
Views 0.9K
Votes 0
I am trying to migrate using migrator but it is leaving all the data behined in jomsocial and nothing comes to easy social. only some users gets created.
I have upgraded after that migrator migrated users and also some feeds but still avatar and photo albums are not migrated correctly.

Now i am trying to run migrator again but it is not doing anything now. Can you tell some way to remove the migrated data from the website.
·
Thursday, 31 October 2013 23:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Ashutosh,

Which version are you currently using? By the way, it looks like your account isn't tied up with any subscriptions on our site. Is there any mistake on our end? Would it be possible for you to contact us at https://crm.stackideas.com and provide us with the order reference and your username so that we can fix this up for you?
·
Friday, 01 November 2013 00:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark, ashutoch is working on my site trying to migrate my users from joomla 2.5 to joomla 3. I am using the latest es 1.04. Thanks
·
Friday, 01 November 2013 01:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Robert,

Ah, I see. Hm, the migration should actually work fine, not too sure why are you still hitting hiccups even on 1.0.4. Could you try to upgrade to 1.0.5 and see if you still hit similar problems / issues?
·
Friday, 01 November 2013 02:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes i have upgraded to 1.0.5 but now i can not migrate the users again because all users and are migrated so i am looking to revert and run migrator again.
·
Friday, 01 November 2013 11:46
·
0 Likes
·
0 Votes
·
0 Comments
·
HI Ashutosh,

The easiest way is to uninstall EasySocial and drop all the EasySocial db tables ( tables with prefix jos_social_xxxx ) and then do a re-install of EasySocial in a clean state.

Or if you just want to re-migrate photo and avatar, you can then try the below sql. Please backup your db first before you execute below queries.


-- 1. revert photos
delete from `jos_social_photos` where id in ( select `uid` from `jos_social_migrators` where `element` = 'photos' and `component` = 'com_community');
delete from `jos_social_migrators` where `element` = 'photos' and `component` = 'com_community';

-- 2. revert photo albums
delete from `jos_social_albums` where id in ( select `uid` from `jos_social_migrators` where `element` = 'albums' and `component` = 'com_community');
delete from `jos_social_migrators` where `element` = 'albums' and `component` = 'com_community';

-- 3. revert user avatar
delete from `jos_social_migrators` where `element` = 'avatar' and `component` = 'com_community';


Replace the jos_ to your Joomla table prefix.

Also, make sure all the JomSocial image files has the 'read' permission and also, make sure below folders has the read + write permission as the migrator will actually read the original image file and re-create the new images file in EasySocial.

JOOMLA/media/com_easysocial/images
JOOMLA/media/com_easysocial/avatars
JOOMLA/media/com_easysocial/photos

If you still having issue migrating the avatar and photos, then you pass me your Joomla backend access, your ftp account and your phpmyadmin access and I will try to migrate for you. I might need to rerun the migrator to test, so please do a backup and if possible, reset your EasySocial db tables in a clean state so that it ease my troubleshooting process

Hope this help and have a nice weekends
Sam
·
Friday, 01 November 2013 16:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post