From: Reini U. <ru...@x-...> - 2005-11-04 22:31:35
|
Very interesting, we never had Solaris 9 before. I try to figure out what's different with your platform. My daily harness tests contain several virgin loads for lots of possible configurations. (see tests/unit/test.php test=3DSetupWiki) For the first help you should move the InterWikiMap file out of your pgsrc to continue loading. Hmm. The special _tryinsertInterWikiMap is only called once from loadsave.php:SetupWiki Your crash is probably somewhere in PageType.php:PageType_interwikimap As next you could store a dummy static $this->_map, which should be enough function PageType_interwikimap($pagetext =3D false) { $this->_map =3D array('Upload' =3D> 'uploads'); $this->_regexp =3D $this->_getRegexp(); } PageType_interwikimap itself is needed at a lot of places to detect the linktype. 2005/11/4, Bill Gardner <wga...@ci...>: > Hi - I'm installing 1.3.11p1 on i86 Solaris 9, with apache2, php5, and > mysql4 all from CSW. The database is all set up and initialized. I'm > also using HTTP access control. > > When I initially browse to index.php and log in, this is the latest > output (I've done this a few times): > > ---------- > Loading up virgin wiki > AddCommentPlugin > from MIME file > /opt/csw/apache2/share/htdocs/wiki/pgsrc/AddCommentPlugin content is > identical to current version 1 - no new revision created > [lots more alphabetical entries cut] > InterWiki > from MIME file /opt/csw/apache2/share/htdocs/wiki/pgsrc/InterWiki > content is identical to current version 1 - no new revision created > InterWikiSearch > from MIME file > /opt/csw/apache2/share/htdocs/wiki/pgsrc/InterWikiSearch content is > identical to current version 1 - no new revision created > InterWikiMap > --------- > > and there the output dies. If I remove InterWikiMap from pgsrc, then > the loading goes right on through to _AuthInfo, then it prints > "InterWikiMap" and dies. By inserting echo statements, I've determined > that the constructor for PageType_interwikimap in lib/PageType.php does > execute, but I can't follow where it's bombing after that. If I could > figure out how to suppress it loading InterWikiMap altogether, I would > be happy to try that. > > I should also say that before I started tinkering, the default empty > InterWikiMap caused it to read the interwiki.map file, and it was dying > in exactly the same way. In case it was a problem with that file, I > inserted some bogus <verbatim> lines into InterWikiMap to prevent it > reading the file. Indeed, that prevented it, but I still can't get past > this crash. > > Can anyone help?? Thanks! -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |