1
mlavwilson
Comments broke when I upgraded.
  • 2009/1/12 14:44

  • mlavwilson

  • Just popping in

  • Posts: 5

  • Since: 2006/4/10


I have an 2.0.16 install that I just upgraded to the current head. When I installed the patch the comment system is no longer working.
I can not find details on what needs to be done to get comments working again. Any help?



2
mlavwilson
A problem with PHP 4.3.11 and PHP 5.1.2 when parsing XML using xoops sax
  • 2006/10/8 13:02

  • mlavwilson

  • Just popping in

  • Posts: 5

  • Since: 2006/4/10


I have the following code that works great on my 5.1.2 local instance, then when I deploy it to my goDaddy server which is running 4.3.11, the $league varable does not contain any coaches that the FranchiseHandler created. Any ideas?
<?php
if (!defined("XOOPS_ROOT_PATH"))
{
    die(
"XOOPS root path not defined");
}

require (
XOOPS_ROOT_PATH."/class/ff/League.php");
require (
XOOPS_ROOT_PATH."/class/snoopy.php");
require (
XOOPS_ROOT_PATH."/class/xml/saxparser.php");
require (
XOOPS_ROOT_PATH."/class/xml/xmltaghandler.php");

class 
MflParser
{
    var 
$version "1.0.0";
    var 
$xml;
    var 
$league;

    function 
doParse($leagueId)
    {
        
$this->league = new League($leagueId);
        
$file "http://football.myfantasyleague.com/2006/export?L=".$leagueId."&TYPE=league";
        
$snoopy = new Snoopy();
        if (!
$snoopy->fetch($file) || !$snoopy->results)
        {
            
$this->_setErrors('Could not open file: '.$file);
            if (!empty (
$snoopy->error))
                
$this->_setErrors("Snoopy status=".htmlspecialchars($snoopy->error));
            if (
$snoopy->timed_out)
                
$this->_setErrors("Timed out");
        }
        
$this->xml $snoopy->results;

        
$leagueParser = new Mfl2Parser($snoopy->results$this->league);
        if (!
$leagueParser->parse())
        {
            
$this->_setErrors($this->_parser->getErrors(false));
            unset (
$leagueParser);
            return 
false;
        }
    }
}

class 
Mfl2Parser extends SaxParser
{
    var 
$league;
    
    function 
Mfl2Parser($input, &$league)
    {
        
$this->SaxParser($input);
        
$this->useUtfEncoding();
        
$this->addTagHandler(new FranchiseHandler());
        
$this->league $league;
    }
}

class 
FranchiseHandler extends XmlTagHandler
{
    function 
FranchiseHandler()
    {
    }

    function 
getName()
    {
        return 
"franchise";
    }

    function 
handleBeginElement($parser$attributes)
    {
        
$coach = new Coach($attributes["id"], $attributes["name"]);
        
$parser->league->coaches[$coach->id] = $coach;
        echo 
$attributes["id"] . "-" $attributes["name"];
    }
}
?>


<?php

class League
{
    var 
$id;
  var 
$coaches = array();
  
  function 
League($id)
    {
        
$this->id $id;
    }
}

class 
Coach
{
  var 
$id;
  var 
$name;
  var 
$players = array();
  
  function 
Coach($id$name)
    {
        
$this->id $id;
        
$this->name $name;
    }
}

class 
Player
{
  var 
$id;
  var 
$internalId;
}
?>



3
mlavwilson
Re: Headlines module not functioning
  • 2006/5/22 13:38

  • mlavwilson

  • Just popping in

  • Posts: 5

  • Since: 2006/4/10


I can not get this working! Has anyone got this working on godaddy?

http://help.godaddy.com/article.php?article_id=288&topic_id=&&



4
mlavwilson
Re: Installing Xoops on sourceforge servers (almost!)
  • 2006/4/19 2:02

  • mlavwilson

  • Just popping in

  • Posts: 5

  • Since: 2006/4/10


Has anyong installed this on a sourceforge site?




TopTop



Login

Who's Online

244 user(s) are online (139 user(s) are browsing Support Forums)


Members: 0


Guests: 244


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits