[web2py] Re: Trunk trouble with routed subfolder

2012-06-24 Thread Larry Weinberg
some more info:
If I try to pack up a newly created app on the subfolder version, it fails 
with a ticket.
Internal errorTicket issued: 
unknownhttps://pgdev.smithmicro.com/admin/default/ticket/unknown
If I click on the ticket link, it's linked to unknown in the main web2py 
install instead of the subfolder
 

-- 





[web2py] Re: Trunk trouble with routed subfolder

2012-06-24 Thread Larry Weinberg
Um, I may have solved my own problem.

In the https (443) section of the apache conf file I had a mistake:
I had
AliasMatch ^/trunk([^/]+)/static/(.*) 
/opt/web-apps/w2p_trunk/web2py/applications/$1/static/$2

instead of 

AliasMatch ^/trunk/([^/]+)/static/(.*) 
/opt/web-apps/w2p_trunk/web2py/applications/$1/static/$2

I'm not sure if that's what fixed it but it seems to be working now.

--