Where can I find old versions of optware packages
Forum » Forum / Optware » Where can I find old versions of optware packages
Started by: egalitarianegalitarian
On: 1257022610|%e %b %Y, %H:%M %Z|agohover
Number of posts: 3
rss icon RSS: New posts
Where can I find previous versions of optware packages
egalitarianegalitarian 1257022610|%e %b %Y, %H:%M %Z|agohover

I did an ipkg upgrade and it upgraded my of php and php-fcgi to version 5.2.11-1. Now my lighttpd server crashes every time it uses php-fcgi. My question is how do I downgrade to the previous versions? Is there an optware archive somewhere?

EDIT: I'm starting to suspect that the updated version of lighttpd/1.4.24 is causing the crashes. Anyone has the latest version of lighttpd working on his white light?

last edited on 1257034261|%e %b %Y, %H:%M %Z|agohover by egalitarian + show more
Re: Where can I find previous versions of optware packages
fraterfrater 1257077708|%e %b %Y, %H:%M %Z|agohover

Hi,

I know what it causes and how to fix it….
I just finished a script to load this lighttpd-server on DD-WRT and just after its release the optware package broke…
So I was in a hurry to find the cause…

This line has to be in your lighttpd.conf

server.event-handler = "poll" # needed on OS X server

This should insert it…

CONF=/etc/lighttpd/lighttpd.conf
if ! grep -q "^server.event" ${CONF} ; then
  sed -i -e "s/#.*server.event.*/&\nserver.event-handler = \"poll\" # needed on OS X server/" ${CONF}
fi
CONF=/opt/etc/lighttpd/lighttpd.conf
if ! grep -q "^server.event" ${CONF} ; then
  sed -i -e "s/#.*server.event.*/&\nserver.event-handler = \"poll\" # needed on OS X server/" ${CONF}
fi

I'm sure next version will be properly packaged….

last edited on 1257077923|%e %b %Y, %H:%M %Z|agohover by frater + show more
unfold Re: Where can I find previous versions of optware packages by fraterfrater, 1257077708|%e %b %Y, %H:%M %Z|agohover
Re: Where can I find previous versions of optware packages
egalitarianegalitarian 1257109426|%e %b %Y, %H:%M %Z|agohover

Thank you, very much! That fixed it…

New post
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License