<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Amazon Media Manager 1.5</title>
	<atom:link href="http://www.denyerec.co.uk/amazon-media-manager-15/feed" rel="self" type="application/rss+xml" />
	<link>http://www.denyerec.co.uk/amazon-media-manager-15</link>
	<description>Photography, Graphic Design, Art, Code...</description>
	<lastBuildDate>Mon, 22 Jan 2018 15:17:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.39</generator>
	<item>
		<title>By: Brian</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-164087</link>
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Mon, 21 Jan 2008 04:29:44 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-164087</guid>
		<description><![CDATA[&lt;p&gt;What I am trying to do now is create links within my blog posts to go to my aStore, NOT Amazon proper.&lt;/p&gt;

&lt;p&gt;I searched some of your code and made the following changes
&lt;code&gt;
//Your code
//http://www.amazon.com/exec/obidos/ASIN/1560976144/denyersphotog-21/
return &#039;http://www.amazon&#039; . $ext . &#039;/exec/obidos/ASIN/&#039; . $this-&gt;currentItem[&#039;amm_asin&#039;] . &#039;/&#039; . $this-&gt;affiliate . &#039;/&#039;;&lt;/p&gt;

&lt;p&gt;//My changes
//http://astore.amazon.com/handyguys-20/detail/B0001X21RG
return &#039;http://astore.amazon&#039; .$ext . &#039;/&#039; . $this-&gt;affiliate  .&#039;/detail/&#039; . $this-&gt;currentItem[&#039;amm_asin&#039;] ;
&lt;/code&gt;
I haven&#039;t done much yet with my template but this shows a correct URL
&lt;code&gt;

    totalItems(); $x++ ) :?&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;    &lt;strong&gt;Title: &lt;/strong&gt;    &lt;?php echo $amm-&gt;title();?&gt; &lt;br /&gt;
    &lt;strong&gt;Author: &lt;/strong&gt; &lt;?php echo $amm-&gt;author();?&gt;&lt;br /&gt;
    &lt;strong&gt;URL: &lt;/strong&gt; &lt;?php echo $amm-&gt;url();?&gt;&lt;br /&gt;

&lt;?php $amm-&gt;nextItem(); endfor; ?&gt;

&lt;?php return $content;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;?&gt;
&lt;/code&gt;
So far so good!
Now - What I would like to do is be able to easily provide just links in my blog to my astore using simple code.
&lt;strong&gt;How do I make text links to the URL?&lt;/strong&gt;&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>What I am trying to do now is create links within my blog posts to go to my aStore, NOT Amazon proper.</p>
<p>I searched some of your code and made the following changes<br />
<code><br />
//Your code<br />
//http://www.amazon.com/exec/obidos/ASIN/1560976144/denyersphotog-21/<br />
return 'http://www.amazon' . $ext . '/exec/obidos/ASIN/' . $this-&gt;currentItem['amm_asin'] . '/' . $this-&gt;affiliate . '/';</code></p>
<p>//My changes<br />
//http://astore.amazon.com/handyguys-20/detail/B0001X21RG<br />
return 'http://astore.amazon' .$ext . '/' . $this-&gt;affiliate  .'/detail/' . $this-&gt;currentItem['amm_asin'] ;</p>
<p>I haven&#8217;t done much yet with my template but this shows a correct URL<br />
<code></p>
<p>    totalItems(); $x++ ) :?&gt;</code></p>
<pre><code>    &lt;strong&gt;Title: &lt;/strong&gt;    &lt;?php echo $amm-&gt;title();?&gt; &lt;br /&gt;
    &lt;strong&gt;Author: &lt;/strong&gt; &lt;?php echo $amm-&gt;author();?&gt;&lt;br /&gt;
    &lt;strong&gt;URL: &lt;/strong&gt; &lt;?php echo $amm-&gt;url();?&gt;&lt;br /&gt;

&lt;?php $amm-&gt;nextItem(); endfor; ?&gt;

&lt;?php return $content;
}
</code></pre>
<p>?&gt;</p>
<p>So far so good!<br />
Now &#8211; What I would like to do is be able to easily provide just links in my blog to my astore using simple code.<br />
<strong>How do I make text links to the URL?</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-162746</link>
		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Mon, 07 Jan 2008 14:13:43 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-162746</guid>
		<description><![CDATA[&lt;p&gt;in WP 2.?.? I found I needed to create table manuall. The mySQL code to do so is as follows.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;
CREATE TABLE wp&lt;em&gt;amm (
  amm&lt;/em&gt;itemId bigint(20) unsigned NOT NULL auto&lt;em&gt;increment,
  amm&lt;/em&gt;author varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;director varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;title varchar(200) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;asin varchar(32) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;productGroup varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;publisher varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;artist varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;label varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;manufacturer varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;model varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;brand varchar(128) NOT NULL default &#039;&#039;,
  amm&lt;em&gt;userComments text NOT NULL,
  amm&lt;/em&gt;rating smallint(10) NOT NULL default &#039;0&#039;,
  amm&lt;em&gt;country varchar(8) NOT NULL default &#039;&#039;,
  amm&lt;/em&gt;dateadded datetime NOT NULL default &#039;0000-00-00 00:00:00&#039;,
  amm&lt;em&gt;smallImageURL varchar(200) NOT NULL default &#039;&#039;,
  PRIMARY KEY  (amm&lt;/em&gt;itemId)
)
&lt;/code&gt;&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>in WP 2.?.? I found I needed to create table manuall. The mySQL code to do so is as follows.</p>
<p><code><br />
CREATE TABLE wp<em>amm (<br />
  amm</em>itemId bigint(20) unsigned NOT NULL auto<em>increment,<br />
  amm</em>author varchar(128) NOT NULL default '',<br />
  amm<em>director varchar(128) NOT NULL default '',<br />
  amm</em>title varchar(200) NOT NULL default '',<br />
  amm<em>asin varchar(32) NOT NULL default '',<br />
  amm</em>productGroup varchar(128) NOT NULL default '',<br />
  amm<em>publisher varchar(128) NOT NULL default '',<br />
  amm</em>artist varchar(128) NOT NULL default '',<br />
  amm<em>label varchar(128) NOT NULL default '',<br />
  amm</em>manufacturer varchar(128) NOT NULL default '',<br />
  amm<em>model varchar(128) NOT NULL default '',<br />
  amm</em>brand varchar(128) NOT NULL default '',<br />
  amm<em>userComments text NOT NULL,<br />
  amm</em>rating smallint(10) NOT NULL default '0',<br />
  amm<em>country varchar(8) NOT NULL default '',<br />
  amm</em>dateadded datetime NOT NULL default '0000-00-00 00:00:00',<br />
  amm<em>smallImageURL varchar(200) NOT NULL default '',<br />
  PRIMARY KEY  (amm</em>itemId)<br />
)<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-157717</link>
		<dc:creator><![CDATA[Michael]]></dc:creator>
		<pubDate>Fri, 09 Nov 2007 07:02:02 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-157717</guid>
		<description><![CDATA[&lt;p&gt;@Paul 
@soyuz&lt;/p&gt;

&lt;p&gt;I did the table creation manually, and things are working OK.&lt;/p&gt;

&lt;p&gt;I didn&#039;t hack into the plugin code to see why the table creation code wasn&#039;t firing, but I would guess that it needs to be updated... I am running php 5 and sql 4.1&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>@Paul<br />
@soyuz</p>
<p>I did the table creation manually, and things are working OK.</p>
<p>I didn&#8217;t hack into the plugin code to see why the table creation code wasn&#8217;t firing, but I would guess that it needs to be updated&#8230; I am running php 5 and sql 4.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soyuz</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-157530</link>
		<dc:creator><![CDATA[soyuz]]></dc:creator>
		<pubDate>Wed, 07 Nov 2007 05:57:02 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-157530</guid>
		<description><![CDATA[&lt;p&gt;hi,&lt;/p&gt;

&lt;p&gt;i&#039;m playing around with AMM and it&#039;s great. thanks a lot. but i have problem similar with paul. 
so should i make the table manually from phpmyadmin?&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>i&#8217;m playing around with AMM and it&#8217;s great. thanks a lot. but i have problem similar with paul.<br />
so should i make the table manually from phpmyadmin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-143960</link>
		<dc:creator><![CDATA[paul]]></dc:creator>
		<pubDate>Sat, 30 Jun 2007 18:45:08 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-143960</guid>
		<description><![CDATA[&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I have just installed AMM, but when I go into Manage/AMM
I get the following errors at the top of the page:&lt;/p&gt;

&lt;p&gt;WordPress database error: [Table &#039;joben1&lt;em&gt;wpi1.wp&lt;/em&gt;amm&#039; doesn&#039;t exist]
SELECT DISTINCT amm&lt;em&gt;productGroup FROM wp&lt;/em&gt;amm ORDER BY amm_productGroup;&lt;/p&gt;

&lt;p&gt;WordPress database error: [Table &#039;joben1&lt;em&gt;wpi1.wp&lt;/em&gt;amm&#039; doesn&#039;t exist]
SELECT COUNT(*) AS Num FROM wp_amm;&lt;/p&gt;

&lt;p&gt;WordPress database error: [Table &#039;joben1&lt;em&gt;wpi1.wp&lt;/em&gt;amm&#039; doesn&#039;t exist]
SELECT amm&lt;em&gt;itemId, amm&lt;/em&gt;title, amm&lt;em&gt;dateadded, amm&lt;/em&gt;rating, amm&lt;em&gt;productGroup FROM wp&lt;/em&gt;amm ORDER BY amm_dateadded DESC LIMIT 0, 5;&lt;/p&gt;

&lt;p&gt;Please help.&lt;/p&gt;

&lt;p&gt;Regards
Paul&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have just installed AMM, but when I go into Manage/AMM<br />
I get the following errors at the top of the page:</p>
<p>WordPress database error: [Table &#8216;joben1<em>wpi1.wp</em>amm&#8217; doesn&#8217;t exist]<br />
SELECT DISTINCT amm<em>productGroup FROM wp</em>amm ORDER BY amm_productGroup;</p>
<p>WordPress database error: [Table &#8216;joben1<em>wpi1.wp</em>amm&#8217; doesn&#8217;t exist]<br />
SELECT COUNT(*) AS Num FROM wp_amm;</p>
<p>WordPress database error: [Table &#8216;joben1<em>wpi1.wp</em>amm&#8217; doesn&#8217;t exist]<br />
SELECT amm<em>itemId, amm</em>title, amm<em>dateadded, amm</em>rating, amm<em>productGroup FROM wp</em>amm ORDER BY amm_dateadded DESC LIMIT 0, 5;</p>
<p>Please help.</p>
<p>Regards<br />
Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Kaufman</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-112433</link>
		<dc:creator><![CDATA[Greg Kaufman]]></dc:creator>
		<pubDate>Mon, 27 Nov 2006 06:14:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-112433</guid>
		<description><![CDATA[&lt;p&gt;Is there a specific Role that a User needs to be set at to be able to access the AMM management interface from the Manage navigation in WordPress?  I would like to allow a User of Role &quot;Author&quot; to be able to manage AMM using their login.  Only the Administrator has access to Manage--&gt;AMM right now, which doesn&#039;t allow other users with lower Role levels to manage the AMM content.&lt;/p&gt;

&lt;p&gt;I have the Role Manager (v1.3) plugin installed, which allows for more granular User capability configurations.&lt;/p&gt;

&lt;p&gt;Any thoughts?&lt;/p&gt;

&lt;p&gt;BTW, I have AMM 1.5 successfully installed and running on a client Web site, with users enjoying the functionality greatly.  I made a few modifications to the PHP code to allow for output sorting per function by using the Brand function attribute.  This effectively allows for subcategories -- and using the Moo.fx Accordian with multiple amm_getMedia functions on a single page allows for a highly organized and usable interface (all of which degrades gracefully without JavaScript enabled).&lt;/p&gt;

&lt;p&gt;thanks!&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Is there a specific Role that a User needs to be set at to be able to access the AMM management interface from the Manage navigation in WordPress?  I would like to allow a User of Role &#8220;Author&#8221; to be able to manage AMM using their login.  Only the Administrator has access to Manage&#8211;&gt;AMM right now, which doesn&#8217;t allow other users with lower Role levels to manage the AMM content.</p>
<p>I have the Role Manager (v1.3) plugin installed, which allows for more granular User capability configurations.</p>
<p>Any thoughts?</p>
<p>BTW, I have AMM 1.5 successfully installed and running on a client Web site, with users enjoying the functionality greatly.  I made a few modifications to the PHP code to allow for output sorting per function by using the Brand function attribute.  This effectively allows for subcategories &#8212; and using the Moo.fx Accordian with multiple amm_getMedia functions on a single page allows for a highly organized and usable interface (all of which degrades gracefully without JavaScript enabled).</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denyerec</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-86094</link>
		<dc:creator><![CDATA[Denyerec]]></dc:creator>
		<pubDate>Sat, 19 Aug 2006 10:15:51 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-86094</guid>
		<description><![CDATA[&lt;p&gt;I think you have overlooked one of the features of AMM, which is the ability to recover the fullsize images from Amazon...&lt;/p&gt;

&lt;p&gt;http://sozu.co.uk/software/amm/function_reference.php&lt;/p&gt;

&lt;p&gt;Refer there and search the page for the functions  autoImage() and imageLink()&lt;/p&gt;

&lt;p&gt;They both allow you to stipulate a size (From 3 presets, or pixels) for the image you wish to present.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>I think you have overlooked one of the features of AMM, which is the ability to recover the fullsize images from Amazon&#8230;</p>
<p><a href="http://sozu.co.uk/software/amm/function_reference.php" rel="nofollow">http://sozu.co.uk/software/amm/function_reference.php</a></p>
<p>Refer there and search the page for the functions  autoImage() and imageLink()</p>
<p>They both allow you to stipulate a size (From 3 presets, or pixels) for the image you wish to present.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mukund</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-86086</link>
		<dc:creator><![CDATA[Mukund]]></dc:creator>
		<pubDate>Sat, 19 Aug 2006 02:07:36 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-86086</guid>
		<description><![CDATA[&lt;p&gt;I&#039;m redesigning my website and this plugin is brilliant. Thank you so much for the great work. I did run into some problems, since I wasn&#039;t familiar with PHP, but it&#039;s all okay now. A very powerful plugin.&lt;/p&gt;

&lt;p&gt;I have one request, though - in the next version, we should be able to specify our own image link instead of choosing from Amazon&#039;s. The images from Amazon are too small, and I&#039;d gladly host my own images if they were at least 100px wide.&lt;/p&gt;

&lt;p&gt;Currently, I&#039;m specifying the path for my own image under &#039;userComments()&#039; as a workaround.&lt;/p&gt;

&lt;p&gt;But great work!&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m redesigning my website and this plugin is brilliant. Thank you so much for the great work. I did run into some problems, since I wasn&#8217;t familiar with PHP, but it&#8217;s all okay now. A very powerful plugin.</p>
<p>I have one request, though &#8211; in the next version, we should be able to specify our own image link instead of choosing from Amazon&#8217;s. The images from Amazon are too small, and I&#8217;d gladly host my own images if they were at least 100px wide.</p>
<p>Currently, I&#8217;m specifying the path for my own image under &#8216;userComments()&#8217; as a workaround.</p>
<p>But great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denyerec</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-84549</link>
		<dc:creator><![CDATA[Denyerec]]></dc:creator>
		<pubDate>Fri, 11 Aug 2006 14:00:38 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-84549</guid>
		<description><![CDATA[&lt;p&gt;There is a safety check that sometimes fails on certain eclectic server configurations. Look in the file amm_output.php and scroll down to line 604.&lt;/p&gt;

&lt;p&gt;If you now comment out 604 through 607 inclusive by adding  //   to the start of each line and then upload the modified file, you should be back in business. It&#039;s to do with the image filesize command not being allowed to execute on remote images I think.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>There is a safety check that sometimes fails on certain eclectic server configurations. Look in the file amm_output.php and scroll down to line 604.</p>
<p>If you now comment out 604 through 607 inclusive by adding  //   to the start of each line and then upload the modified file, you should be back in business. It&#8217;s to do with the image filesize command not being allowed to execute on remote images I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.denyerec.co.uk/amazon-media-manager-15/comment-page-1#comment-83643</link>
		<dc:creator><![CDATA[Lee]]></dc:creator>
		<pubDate>Wed, 09 Aug 2006 03:10:17 +0000</pubDate>
		<guid isPermaLink="false">/?p=198#comment-83643</guid>
		<description><![CDATA[&lt;p&gt;I cant seem to get the images to work and Ive tried all sort of configurations. Even just the obvious one of taking the code within amm_extras and reusing it but my browsers stalls when it tries to load the page.
Without the image call it works fine...&lt;/p&gt;

&lt;p&gt;any tips..? Im pulling my hair out trying to work it out. &lt;/p&gt;

&lt;p&gt;Sorry to bother.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>I cant seem to get the images to work and Ive tried all sort of configurations. Even just the obvious one of taking the code within amm_extras and reusing it but my browsers stalls when it tries to load the page.<br />
Without the image call it works fine&#8230;</p>
<p>any tips..? Im pulling my hair out trying to work it out. </p>
<p>Sorry to bother.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
