UB Data Migration 404 error

I decided to use your fine UB Data Migration tool (located here https://www.ubertheme.com/magento-news/magento-2-migration-tool-and-migration-service/) to migrate my data from my Magento 1.9.1.0 website to my new Magento 2.0.2 website. I followed the instructions to the letter, then logged into the admin panel of my Magento 2 website. I was pleased to see the “UB Data Migration” menu item at the bottom of the menu. After clicking the “UB Data Migration” button I was presented with with the a page that had the UB Data Migration title at the top, but in the main content area displayed the generic Magento 404 error page.  Any idea how to resolve this?

  1. Profile photo of Brad TaylorBrad Taylor 0.00 $tone March 25, 2016
    Also having the same issue, applied the changes Mall requested below with the following: ServerAdmin web@localhost DocumentRoot "E:\wampsites\www\sh" Options FollowSymLinks AllowOverride All Order allow,deny Allow from all Require all granted ServerName sh.dev ServerAlias sh.dev ErrorLog "logs/sh-error.log" CustomLog "logs/sh-access.log" commonMagento 2.0.2 is in Developer mode.404Not FoundThe requested URL /pub/ub-tool/ was not found on this server.

11 answers

Profile photo of Mall Staff 184060.00 $tone March 7, 2016
Public

Hi Jason Salis,
Can you show me more detail about your working?
We have tested this tool with Magento 2 CE 2.0.2 and everything working fine.
I think issue come from you Vhost config in Apache in your server.
I think you missing the config param:

 AllowOverride All

Example VHost config in my server:

<VirtualHost *:80>
ServerName sites.local
ServerAlias www.sites.local
ServerAdmin [email protected]

DocumentRoot /home/qvv/www

<Directory /home/qvv/www>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>

Can you provide me the configuration of VHost of your magento2 site now?
Regards,
Mall.
 

#1
Profile photo of Brad Taylor 0.00 $tone March 25, 2016
Public

Also having the same issue, applied the changes Mall requested below with the following:
<VirtualHost *:80>
ServerAdmin web@localhost
DocumentRoot “E:\wampsites\www\sh”
<Directory “E:\wampsites\www\sh”>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ServerName sh.dev
ServerAlias sh.dev
ErrorLog “logs/sh-error.log”
CustomLog “logs/sh-access.log” common
</VirtualHost>
Magento 2.0.2 is in Developer mode.
404
Not Found
The requested URL /pub/ub-tool/ was not found on this server.

#2
Profile photo of ubdev Staff 98030.00 $tone August 22, 2017
Public

Hi Anamika, 
It seems you’re using our old script on Github, not the UB Data Migration Lite here. If this is the case, we’re afraid we no longer maintain support for the old script on Github. 
The UB Data Migration Lite version only allows to migrate a limited set of data including database settings; websites, stores; product attributes and categories. If you need to port full database including customers, sales data etc., you will need our Pro version. Further, advanced features like Delta migration is available for Pro version only. 
We highly recommend you move forward with our Pro version, it will save you pretty much time. 
You can learn more about the latest version 3 via this tutorial video: https://youtu.be/R4UBLe2kf-I
 

Further, you can take a look at recent data migration case studies to learn more about our Pro version
-- We did use the Pro version ourself to help Winetasting.com – Migrate 382,047 customer entities to Magento 2
-- And this case study as well -- Freelaunch.nl used UB Data Migration Pro to migrate 230,000 products to Magento 2

 
Hope that helps.
Regards,
Ubertheme team

#5
Profile photo of Anamika Upadhyay 30.00 $tone August 22, 2017
Public

I downloaded it from the link you provided. so I think I am using latest version. can you please help me to fix this issue. My client don’t have budget now to purchase this extesion but I will try to use pro version for another client.
I am looking for positive response from you.
 
Thanks!

#6
Profile photo of ubdev Staff 98030.00 $tone August 22, 2017
Public

Hi Anamika, 
The old script on Github is no longer maintained as explained in our previous reply. For the UB Data Migration Lite which differs from the Github instance, it still uses outdated codebase, hence it is for testing purpose only and not recommended for your client’s project. 
We’re sorry for not being of much help in this case. 
Regards,
Ubertheme team

#7
Profile photo of tm88493 40.00 $tone September 27, 2017
Public

I am also getting this 404 error. I have an Ultimo theme installed and no other modules installed. My Magento is CE 2.1.9 version without sample data. I have the newest UB Data Migration tool. I use NGINX and I have added these lines to nginx.conf file:
 location /ub-tool {
                        try_files $uri $uri/ @rewrite;
                }

                location @rewrite {
                        rewrite ^ /ub-tool/index.php;
                }
 
I am still getting a 404 error when logging in to admin and clickin the UB data migration tool icon. I have tried setup:upgrade, setup:di:compile and deploy static content and disabling cache etc. Can you please help me with this?
 
Regards,
Tero

#8
Profile photo of Mall Staff 184060.00 $tone September 27, 2017
Public

Hi tm88493,

 I use NGINX and I have added these lines to nginx.conf file:
 location /ub-tool {
                        try_files $uri $uri/ @rewrite;
                }
                location @rewrite {
                        rewrite ^ /ub-tool/index.php;
                }

That isn’t like as our guide for Nginx. Kindly re-check the guide of our tool in Readme.html (included file in your downloaded package)
And do exactly steps for Nginx as indicated in Readme.html
Regards,
Mall.
 

#9

Please login or Register to Submit Answer

Written By

Comments