bpa wrote: 
> Quick response. If the issue is a LMS issue then LMS update is the fix.
> Many users will not update their LMS to fixed LMS 8.* or 7.9.3   Can't
> see any easy way out for proxy users.
Agree.

I'm pretty confident that a simple patch along the lines below would fix
it. But does require quiet study to be sure.

Untested:


Code:
--------------------
    
  sub _format_request {
        my $self = shift;
  
        my $fullpath = $self->request->uri->path_query;
        $fullpath = "/$fullpath" unless $fullpath =~ /^\//;
  
        # Proxy requests require full URL
        if ( $self->use_proxy ) {
                $fullpath = $self->request->uri->as_string;
                # Strip off fragment suffix if it is there. Some servers won't 
tolerate them.
                $fullpath =~ s/\#.*//s;
        }
  etc
  
  
--------------------


------------------------------------------------------------------------
mrw's Profile: http://forums.slimdevices.com/member.php?userid=38299
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to