Han Hartgers wrote: > Hello all, > > I am experiencing some problems with the freevo webserver after my > upgrade from version 1.7.6.1 to version 1.8.1 from source. > The freevo installation is on a Ubuntu 8.04 via epia machine > It all looks good and is in working state on the television, just as > before, but faster ;-). Only the webserver part has less > functionality. > > For instance the http://mediachan:8080/config.rpy and pluginconfig.rpy > are not returning a valid web page but a > "Request did not return a string" error > > Also the "scheduled recordings" gives an error message and the > following in the log: > > " File "/usr/share/freevo/htdocs/library.rpy", line 334, in _render > (got_schedule, recordings) = ri.getScheduledRecordings() > <type 'exceptions.AttributeError'>: 'module' object has no attribute > 'getScheduledRecordings'" > > See the attached log for more information. > > I have the feeling that both errors are connected somehow...... > > I tried different versions of twisted (version 2.4 2.5 and 8.1) but > that did not chance / solve the problem.... > > Deleting the /usr/share/freevo directory and a reinstalling everything > did also not solve / change the problem... > > Has someone a suggestion what the problem can be?
The only thing I can think of is the the recordserver and or the webserver was not stopped between upgrades. The line: (got_schedule, recordings) = ri.getScheduledRecordings() should read: (status, schedule) = self.recordclient.getScheduledRecordingsNow() This implies that there is an old version lying around, you may need to delete the site-packages/freevo and reinstall freevo. You can try an svn installation, just as easy as a source installation. The instructions are here: http://doc.freevo.org/SourceSVNInstallation. Duncan ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
