<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/20446" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2018-03-14T14:45:35-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/20446</id>

		<entry>
		<author><name><![CDATA[nml375]]></name></author>
		<updated>2018-03-14T14:45:35-04:00</updated>

		<published>2018-03-14T14:45:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106727#p106727</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106727#p106727"/>
		<title type="html"><![CDATA[FTP help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106727#p106727"><![CDATA[
It would seem you've forgotten the leading pipe (|) when trying to start the ftp-client. Hence, it actually tries to create a new file named "/usr/bin/ftp -P 2041 192.168.27.55", and your process lacks write permissions in /usr/bin...<br><br>Try this instead:<div class="codebox"><p>Code: </p><pre><code>set wurstbaum [open "|$ftpclient -P 2041 $serverftp" w]</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8052">nml375</a> — Wed Mar 14, 2018 2:45 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[mrleaW]]></name></author>
		<updated>2018-03-14T08:17:15-04:00</updated>

		<published>2018-03-14T08:17:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106726#p106726</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106726#p106726"/>
		<title type="html"><![CDATA[Re: FTP help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106726#p106726"><![CDATA[
1.Try to put your server ip not localhost and be sure the location path of ftp is correct.<br>2. Try doing same privileges to /usr/bin/ftp<br>chmod 755 /usr/bin/ftp<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12735">mrleaW</a> — Wed Mar 14, 2018 8:17 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[l.kleijn]]></name></author>
		<updated>2018-03-14T04:55:54-04:00</updated>

		<published>2018-03-14T04:55:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=106725#p106725</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=106725#p106725"/>
		<title type="html"><![CDATA[FTP help]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=106725#p106725"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>set serverpath "/media/Media"set eggpath "/home/leon/eggdrop"set ftpuser "xxxxx"set ftppass "xxxxxxxxx"set serverftp "192.168.27.55"set onefile "leon"set trigger "."bind pub - ${trigger}ftp pub:ftpproc pub:ftp {nick host hand chan arg} {  global serverftp ftpuser ftppass eggpath serverpath onefile  set ftpclient [exec which ftp]  set wurstbaum [open "$ftpclient -P 2041 $serverftp" w]  puts $wurstbaum "user $ftpuser $ftppass"  puts $wurstbaum "bin"  puts $wurstbaum "put $eggpath/$onefile $serverftp/$onefile"  puts $wurstbaum "quit"  close $wurstbaum   putserv "PRIVMSG #IRCop :Mission Accomplished"}</code></pre></div>I don't know what to do<br><br>It gives this error:<br><br>[09:40] &lt;Sierra&gt; [09:40:50] Tcl error [pub:ftp]: couldn't open "/usr/bin/ftp -P 2041 192.168.27.55": permission denied<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12392">l.kleijn</a> — Wed Mar 14, 2018 4:55 am</p><hr />
]]></content>
	</entry>
	</feed>
