<?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/15905" />

	<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>2008-07-11T18:53:47-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Alchera]]></name></author>
		<updated>2008-07-11T18:53:47-04:00</updated>

		<published>2008-07-11T18:53:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83952#p83952</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83952#p83952"/>
		<title type="html"><![CDATA[Shoutcast addon not working.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83952#p83952"><![CDATA[
<blockquote class="uncited"><div><div class="codebox"><p>Code: </p><pre><code>&lt;safeguild&gt; [12:24] Tcl error [shoutinfo]: couldn't execute "usr/bin/perl": permission denied </code></pre></div></div></blockquote>You need to have the shell administrator fix this.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3646">Alchera</a> — Fri Jul 11, 2008 6:53 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TonyMont]]></name></author>
		<updated>2008-07-11T05:51:55-04:00</updated>

		<published>2008-07-11T05:51:55-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83946#p83946</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83946#p83946"/>
		<title type="html"><![CDATA[Shoutcast addon not working.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83946#p83946"><![CDATA[
<a href="http://www.niemueller.de/software/eggdrop/shout/" class="postlink">http://www.niemueller.de/software/eggdrop/shout/</a><br><br>Link to the addon i want to install[/url]<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10045">TonyMont</a> — Fri Jul 11, 2008 5:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[TonyMont]]></name></author>
		<updated>2008-07-11T06:27:21-04:00</updated>

		<published>2008-07-11T05:33:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=83945#p83945</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=83945#p83945"/>
		<title type="html"><![CDATA[Shoutcast addon not working.]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=83945#p83945"><![CDATA[
I am not an eggdrop expert, hosted eggdrop 8 years ago.<br>I got my eggdrop working, it also joins my channel.<br><br>When i ask stream status, !stream:status<br>i get error:<br><br>&lt;safeguild&gt; [12:24] Tcl error [shoutinfo]: couldn't execute "usr/bin/perl": permission denied<br><br><br><br>I post my config below:<div class="codebox"><p>Code: </p><pre><code>################################################################################ Eggdrop Script for ShoutCast stats# Copyright (C) 2003-2004 by Tim Niemueller &lt;tim@niemueller.de&gt;# http://www.niemueller.de/software/eggdrop/shout/## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# # Created  : May 2003## $Id: shout.tcl,v 1.1.1.1 2004/01/26 00:38:46 tim Exp $##################################################################################CONFIGSTART#### URL of shoutcast info pageset url "http://pkcenter.nl:9000/"# The full path to shout.plset shoutpath "scripts/shout.pl"#   path to your perl binaryset perlbin "usr/bin/perl"###CONFIGEND#### some random monkey code by tim####### DON'T CHANGE ANYTHING BELOW HERE! #######bind pub - !stream:peak shoutinfobind pub - !stream:genre shoutinfobind pub - !stream:status shoutinfobind pub - !stream:track shoutinfobind pub - !stream:help shouthelpbind pub - !stream shouthelpproc shoutinfo {nick mask hand chan text} {        global shoutpath perlbin method url lastbind#putlog "Called for $chan"set what "Stream Status"switch -- $lastbind {!stream:peak { set what "Listener Peak"; }!stream:genre { set what "Stream Genre" }!stream:track { set what "Current Song" }}# colored# pushmode $chan -c# flushmode $chan# set displaytext "\002\0037[string index $what 0]\00315[string range $what 1 end]: \002"# invertedset displaytext "\002\026 ~&gt; $what:\002 "        set f [open "|$perlbin $shoutpath $url $what"]        set output [read $f]        close $f        set lines [split $output "\n"]        foreach l $lines {if {[string compare $l ""] != 0} {                putserv "PRIVMSG $chan :$displaytext$l "}        }# colored# pushmode $chan +c# flushmode $chan}proc shouthelp {nick uhost hand chan text} {  puthelp "NOTICE $nick :\002Usage of Shout Stream Info\002"  puthelp "NOTICE $nick :\002!stream:status\002: Current Stream Status"  puthelp "NOTICE $nick :\002!stream:peak\002:   Listener Peak"  puthelp "NOTICE $nick :\002!stream:genre\002:  Genre"  puthelp "NOTICE $nick :\002!stream:track\002:  Currently played track"  puthelp "NOTICE $nick :\002!stream:help\002:   This help screen"}putlog "ShoutCast Info v0.2 by Tim Niemueller \[http://www.niemueller.de\] loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=10045">TonyMont</a> — Fri Jul 11, 2008 5:33 am</p><hr />
]]></content>
	</entry>
	</feed>
