• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Zaypay Problem

VimeraOT

New Member
Joined
May 20, 2011
Messages
15
Reaction score
0
Hello guys,
somehow I got a really weird problem with zaypay. This is the error log, when I click on the donate button:

Code:
Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 80 Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 80 Warning: Invalid argument supplied for foreach() in /var/www/zaypay/includes/Zaypay.class.php on line 80 Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 90 Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 90 Warning: Invalid argument supplied for foreach() in /var/www/zaypay/includes/Zaypay.class.php on line 90 Notice: Undefined variable: language_list in /var/www/zaypay/includes/Zaypay.class.php on line 99 Notice: Undefined variable: country_list in /var/www/zaypay/includes/Zaypay.class.php on line 99 Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 119 Notice: Trying to get property of non-object in /var/www/zaypay/includes/Zaypay.class.php on line 119

The strange thing is, that I got my php.ini file with extension=openssl.so and allow_url_fopen=on, still i got this problem. Can anyone help out?
 
did you configure price settings properly in config.php of zaypay? because it looks like this is failing
Code:
    public function list_locales ($optional_amount = null) {
      [B][COLOR="red"]$XML  = $this->RequestURL("/{$optional_amount}/pay/{$this->price_setting_id}/list_locales?key={$this->price_setting_key}");[/COLOR][/B]
      $oXML = $this->parseXML($XML);

      if ($this->checkXMLError($oXML)) {
        return false;
      }

      foreach ($oXML->languages->language AS $language) {
 
Back
Top