PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, August 1, 2022

[FIXED] How to fix error "Could not establish FTP connection, invalid host or port" in Magento

 August 01, 2022     dataflow, ftp, magento, magento-1.9     No comments   

Issue

I am trying to import products into Magento from a remote FTP server using Magento's Advanced Dataflow Profile but I keep getting the error below. I am new to this and could not find an answer anywhere on how to fix this and am hoping someone can help me fix this issue. The info I found on "To load data from remote FTP server" does not seem to work for me.

Error when running import:

Starting Mage_Dataflow_Model_Convert_Adapter_Io :: load
An error occurred while opening file: "Could not establish FTP connection, invalid host or port".

Actions XML code I am using:

<action type="dataflow/convert_adapter_io" method="load">
    <var name="type">ftp</var>
    <var name="host"><![CDATA[ftp://000.00.00.00]]></var>
    <var name="passive">true</var>
    <var name="user"><![CDATA[USER]]></var>
    <var name="password"><![CDATA[PWD]]></var>
<var name="path"><![CDATA[/]]></var>
    <var name="filename"><![CDATA[feed.csv]]></var>
    <var name="format"><![CDATA[csv]]></var>
</action>

Solution

The host parameter is for host name (or IP address).

What you have entered is not a host name, but an FTP URL. The hostname (or actually the IP address) is the "000.00.00.00".



Answered By - Martin Prikryl
Answer Checked By - Terry (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing