Difference between revisions of "Freeside:2.1:Documentation"

From Freeside
Jump to: navigation, search
(Known Issues)
(Known Issues)
Line 12: Line 12:
  
 
= Known Issues =
 
= Known Issues =
 +
 +
* Bad RT links under Configuraiton -> Ticketing -> Ticketing Global?  Make sure the URI section in <code>/opt/rt3/etc/RT_SiteConfig.pm</code> is new-style:
 +
<code>
 +
$RT::URI::freeside::URL = 'http://localhost/freeside/';
 +
 +
$RT::URI::freeside::URL =~ m(^(https?://[^/]+)(/.*)$)i;
 +
Set($WebBaseURL, $1);
 +
Set($WebPath, "$2/rt");
 +
</code>
  
 
* Ancient Firefox v2.x may have performance problems rendering RT?
 
* Ancient Firefox v2.x may have performance problems rendering RT?

Revision as of 23:45, 6 April 2010

Upgrading

  • aptitude install libmodule-versions-report-perl libtext-wikiformat-perl libhttp-server-simple-mason-perl libxml-rss-perl libnet-server-perl libhtml-rewriteattributes-perl libdata-ical-perl libperlio-eol-perl libgnupg-interface-perl libfile-sharedir-perl libcgi-pm-perl libmime-types-perl
  • mv /opt/rt3/etc/RT_SiteConfig.pm /opt/rt3/etc/RT_SiteConfig.pm.3.6
    or add:
    Set($WebDefaultStylesheet, 'freeside2.1');
  • make configure-rt; make deploy
    • wtf: make configure-rt wants gcc aptitude install gcc
  • Add an "Invoice eligible for automatic collection" condition to all "Run card", "Run check" and "Add card or check to a pending batch" events.
  • Create a new invoice send event, with the default conditions plus:
    • customer payment type CARD or CHEK
    • "Invoice ineligible for automatic collection"
  • 2.1 Changelog

Known Issues

  • Bad RT links under Configuraiton -> Ticketing -> Ticketing Global? Make sure the URI section in /opt/rt3/etc/RT_SiteConfig.pm is new-style:

$RT::URI::freeside::URL = 'http://localhost/freeside/';

$RT::URI::freeside::URL =~ m(^(https?://[^/]+)(/.*)$)i; Set($WebBaseURL, $1); Set($WebPath, "$2/rt");

  • Ancient Firefox v2.x may have performance problems rendering RT?