Hi all,

Just a question to clarify,

On a package install (Koha 3.20, Ubuntu , 14.04), is the Script Alias line  
added to one's instance Apache config file at 
etc/apache2/sites-available/<instancename>.conf? The instructions 
(http://translate.koha-community.org/manual/master/en/html-desktop/#coverflow) 
here only mention "web server configuration", but isn't more specific than this.

Many thanks!


Craig Butosi, MA, MLIS, B Mus (Hons.)
LIBRARY SERVICES MANAGER
the royal conservatory
TELUS Centre for Performance and Learning
273 Bloor Street West Toronto, ON  M5S 1W2
416.408.2824 x338
www.rcmusic.ca

________________________________________
From: Koha [koha-boun...@lists.katipo.co.nz] on behalf of Bernard Shiundu 
[bshiu...@strathmore.edu]
Sent: Thursday, May 21, 2015 7:32 AM
To: Koha
Subject: Re: [Koha] Bywater coverflow

I got coverflow working on a development box. One question - is there
anyway of specifying a fallback cover image for items that do not have
covers on Amazon?


> ---------- Forwarded message ----------
> From: Abdulsalam Yousef <ayou...@kwareict.com>
> To: Kyle Hall <kyle.m.h...@gmail.com>
> Cc: Koha <koha@lists.katipo.co.nz>
> Date: Tue, 12 May 2015 15:18:00 +0300
> Subject: Re: [Koha] Bywater coverflow
> Yes i added these lines:
>
> - id: 50
>   selector: #coverflow
>   options:
>   style: coverflow
>
> to the cofiguration
> where 50 is my report id
>
> also i added this alias line in my opac apache config section
>
>
>    ScriptAlias /coverflow.pl
> "/var/lib/koha/plugins/Koha/Plugin/Com/ByWaterSolutions/CoverFlow/
> coverflow.pl"
>
>
> also the js code has been created in opacuserjs syspre
>
> thanks
>
>
>
> On Tue, May 12, 2015 at 1:55 PM, Kyle Hall <kyle.m.h...@gmail.com> wrote:
>
> > Ah! I see! That is  not actually a problem! The "run report" link in the
> > plugin doesn't actually do anything useful. Have you run the
> configuration
> > part of the plugin? Did you add the alias's to your opac apache config?
> >
> > Kyle
> >
> > http://www.kylehall.info
> > ByWater Solutions ( http://bywatersolutions.com )
> > Meadville Public Library ( http://www.meadvillelibrary.org )
> > Crawford County Federated Library System ( http://www.ccfls.org )
> > Mill Run Technology Solutions ( http://millruntech.com )
> >
> > On Tue, May 12, 2015 at 6:50 AM, Abdulsalam Yousef <ayou...@kwareict.com
> >
> > wrote:
> >
> >> In fact i followed your article and created the intended report like
> this
> >>
> >> SELECT b.biblionumber, b.title, m.isbn
> >> FROM biblio b left join biblioitems m on (b.biblionumber=m.biblionumber)
> >> where
> >> m.isbn is not NULL and b.title LIKE "%math%"
> >>
> >> its id is 50 according to my report ids in sql saved reports
> >>
> >> but when trying to run the report from the plugin page
> >>
> >> it gives me
> >>
> >> Software error:
> >>
> >> There is no such report.
> >> although the report is public and i can run it from saved sql reports
> and
> >> gets results without any problems.
> >>
> >> Thanks Kyle.
> >>
> >> On Tue, May 12, 2015 at 1:42 PM, Kyle Hall <kyle.m.h...@gmail.com>
> wrote:
> >>
> >>> Did you follow my article when you set it up? Did you create your own
> >>> custom report for generating the book list? It sounds like maybe you
> never
> >>> replaced the report id or perhaps you never created a report!
> >>>
> >>> Kyle
> >>>
> >>> http://www.kylehall.info
> >>> ByWater Solutions ( http://bywatersolutions.com )
> >>> Meadville Public Library ( http://www.meadvillelibrary.org )
> >>> Crawford County Federated Library System ( http://www.ccfls.org )
> >>> Mill Run Technology Solutions ( http://millruntech.com )
> >>>
> >>> On Thu, May 7, 2015 at 10:49 AM, Abdulsalam Yousef <
> ayou...@kwareict.com
> >>> > wrote:
> >>>
> >>>> Hello all,
> >>>>
> >>>> I've installed Bywater coverflow plugin more than one time but also
> >>>> have no
> >>>> chance to show book covers, when tryig to run the report that i've
> >>>> prepared
> >>>> for coverflow this error appeared
> >>>>
> >>>> Software error:
> >>>>
> >>>> There is no such report.
> >>>>
> >>>>
> >>>> Although the report is public and its id is correct.
> >>>>
> >>>>
> >>>> Thanks
> >>>> _______________________________________________
> >>>> Koha mailing list  http://koha-community.org
> >>>> Koha@lists.katipo.co.nz
> >>>> https://lists.katipo.co.nz/mailman/listinfo/koha
> >>>>
> >>>
> >>>
> >>
> >
>
>
>
> ---------- Forwarded message ----------
> From: Kyle Hall <kyle.m.h...@gmail.com>
> To: Abdulsalam Yousef <ayou...@kwareict.com>
> Cc: Koha <koha@lists.katipo.co.nz>
> Date: Tue, 12 May 2015 08:24:10 -0400
> Subject: Re: [Koha] Bywater coverflow
> You'll also need this alias:
>
> Alias /plugin/ "/var/lib/koha/plugins/"
>
>
> http://www.kylehall.info
> ByWater Solutions ( http://bywatersolutions.com )
> Meadville Public Library ( http://www.meadvillelibrary.org )
> Crawford County Federated Library System ( http://www.ccfls.org )
> Mill Run Technology Solutions ( http://millruntech.com )
>
> On Tue, May 12, 2015 at 8:18 AM, Abdulsalam Yousef <ayou...@kwareict.com>
> wrote:
>
> > Yes i added these lines:
> >
> > - id: 50
> >   selector: #coverflow
> >   options:
> >   style: coverflow
> >
> > to the cofiguration
> > where 50 is my report id
> >
> > also i added this alias line in my opac apache config section
> >
> >
> >    ScriptAlias /coverflow.pl
> "/var/lib/koha/plugins/Koha/Plugin/Com/ByWaterSolutions/CoverFlow/
> coverflow.pl"
> >
> >
> > also the js code has been created in opacuserjs syspre
> >
> > thanks
> >
> >
> >
> > On Tue, May 12, 2015 at 1:55 PM, Kyle Hall <kyle.m.h...@gmail.com>
> wrote:
> >
> >> Ah! I see! That is  not actually a problem! The "run report" link in the
> >> plugin doesn't actually do anything useful. Have you run the
> configuration
> >> part of the plugin? Did you add the alias's to your opac apache config?
> >>
> >> Kyle
> >>
> >> http://www.kylehall.info
> >> ByWater Solutions ( http://bywatersolutions.com )
> >> Meadville Public Library ( http://www.meadvillelibrary.org )
> >> Crawford County Federated Library System ( http://www.ccfls.org )
> >> Mill Run Technology Solutions ( http://millruntech.com )
> >>
> >> On Tue, May 12, 2015 at 6:50 AM, Abdulsalam Yousef <
> ayou...@kwareict.com>
> >> wrote:
> >>
> >>> In fact i followed your article and created the intended report like
> this
> >>>
> >>> SELECT b.biblionumber, b.title, m.isbn
> >>> FROM biblio b left join biblioitems m on
> (b.biblionumber=m.biblionumber)
> >>> where
> >>> m.isbn is not NULL and b.title LIKE "%math%"
> >>>
> >>> its id is 50 according to my report ids in sql saved reports
> >>>
> >>> but when trying to run the report from the plugin page
> >>>
> >>> it gives me
> >>>
> >>> Software error:
> >>>
> >>> There is no such report.
> >>> although the report is public and i can run it from saved sql reports
> >>> and gets results without any problems.
> >>>
> >>> Thanks Kyle.
> >>>
> >>> On Tue, May 12, 2015 at 1:42 PM, Kyle Hall <kyle.m.h...@gmail.com>
> >>> wrote:
> >>>
> >>>> Did you follow my article when you set it up? Did you create your own
> >>>> custom report for generating the book list? It sounds like maybe you
> never
> >>>> replaced the report id or perhaps you never created a report!
> >>>>
> >>>> Kyle
> >>>>
> >>>> http://www.kylehall.info
> >>>> ByWater Solutions ( http://bywatersolutions.com )
> >>>> Meadville Public Library ( http://www.meadvillelibrary.org )
> >>>> Crawford County Federated Library System ( http://www.ccfls.org )
> >>>> Mill Run Technology Solutions ( http://millruntech.com )
> >>>>
> >>>> On Thu, May 7, 2015 at 10:49 AM, Abdulsalam Yousef <
> >>>> ayou...@kwareict.com> wrote:
> >>>>
> >>>>> Hello all,
> >>>>>
> >>>>> I've installed Bywater coverflow plugin more than one time but also
> >>>>> have no
> >>>>> chance to show book covers, when tryig to run the report that i've
> >>>>> prepared
> >>>>> for coverflow this error appeared
> >>>>>
> >>>>> Software error:
> >>>>>
> >>>>> There is no such report.
> >>>>>
> >>>>>
> >>>>> Although the report is public and its id is correct.
> >>>>>
> >>>>>
> >>>>> Thanks
> >>>>> _______________________________________________
> >>>>> Koha mailing list  http://koha-community.org
> >>>>> Koha@lists.katipo.co.nz
> >>>>> https://lists.katipo.co.nz/mailman/listinfo/koha
> >>>>>
> >>>>
> >>>>
> >>>
> >>
> >
>
--
Bernard Shiundu
Strathmore University, Nairobi Kenya

--


Note: All emails sent from Strathmore University are subject to
Strathmore's Email Terms & Conditions. Please click here
<http://www.strathmore.edu/aboutus.php?id=184> to read the policy.

"Visit our Facebook <https://www.facebook.com/StrathmoreUniversity>Page and 
Twitter
<https://twitter.com/StrathU>Account".
_______________________________________________
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Note: This email message and any attachments are intended only for the use of 
the individual to which it is addressed, and may contain information that is 
privileged, confidential and exempt from disclosure under applicable law. If 
the recipient of this email is not the intended recipient (or the employee or 
agent responsible for delivering the email to the intended recipient), you are 
hereby notified that any review, dissemination, distribution or copying or 
other use of this message is strictly prohibited. If you have received this 
communication in error, please notify the sender immediately by return email 
and delete this message and attachments from your system, thank you.
_______________________________________________
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha

Reply via email to