• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Forum
  3. Games
  4. Criminals & Maffiagames
  5. Uitbreidingen en Overige
  6. Archief
  7. Criminolz

Forum

  • Developer Gezocht

    Mikevdk 10 januari 2026 om 18:57
  • Op zoek naar de legends

    Syntax 5 januari 2026 om 13:50
  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Syntax 4 januari 2026 om 10:58
  • [FREE] WeFact Hosting module

    Jeroen.G 13 oktober 2025 om 14:09
  • Help testers nodig voor android app Urgent

    urgentotservices 26 september 2025 om 10:21
  • Versio vervanger

    Jeroen.G 25 augustus 2025 om 15:56
  • Afspraken systeem met planbeperking

    Lijno 1 augustus 2025 om 23:04
  • Partner Gezocht om meerdere NFT Collecties op Open Sea te Plaatsen

    NFT Art Designer 1 maart 2025 om 14:08

Marktplaats

  • 321 Nieuwe Domeinnamen December 2025

    shiga 1 januari 2026 om 10:26
  • Meerdere mafia game template te koop

    Syntax 28 december 2025 om 21:20
  • Van een pixelige afbeelding naar een strakke, moderne website

    Syntax 21 december 2025 om 17:05

betaalsysteem werkt niet?

  • criminalknows
  • 25 augustus 2011 om 15:31
  • Closed
  • criminalknows
    Beginner
    Berichten
    3
    • 25 augustus 2011 om 15:31
    • #1

    Hallo,

    Ik ben bezig met het criminolz script alleen ik krijg het betaalsysteem niet aan de praat, ik heb in de database mijn mollieid al aangepast naar mijn eigen id alleen er staat gewoon niks na bel en na de code die je moet invoeren tijdens het bellen. Ik zou het heel fijn vinden als iemand mij hiermee kon helpen.

    include.paymentscreen.php

    PHP
    <?php
    /*
    =======================================================================
     File      : belsysteem3.php
     Author    : Mollie B.V.
     Version   : 1.1 (Oct 2007)
     More information? Go to www.mollie.nl
    ========================================================================
    */
    
    
    
    
    /* below we'll fetch the payment information to present it to the user
    
    
       in case user is sent back to this payment-screen because payment failed,
       we don't need to refetch a new servicenumber and paycode, how smart ;-) */
    
    
    if ($m->servicenumber and $m->paycode) {
        $gotpayinfo = true;
    } else {
        $gotpayinfo = $m->getPayInfo();
    }
    
    
    if ($gotpayinfo) {
        $cur = '';
        if ($m->currency == 'eur') {
            $cur = '&euro;'; #  €;
        } elseif ($m->currency == 'dollar') {
            $cur = '$';
        } elseif ($m->currency == 'gbp') {
            $cur = '&pound;'; #  £;
        }
        
        $_SESSION['servicenumber'] = $m->servicenumber;
        $_SESSION['paycode'] = $m->paycode;
        echo '<font size="4"><b>Bel ' . $m->servicenumber . '</b></font><br />';
        
    
    
        
        echo '<br />';
        echo 'De code is: <font size="4"><b>' . $m->paycode . '</b></font><br>Vul deze code in op je telefoon.<br><br /><br />';
        echo '<form method="get" action="./index.php">
                <input type="hidden" name="p" value="credits" />
                <input type="hidden" name="c" value="'. $_GET['c'] .'" />
                <input type="hidden" name="action" value="check" />
                <input type="submit" value="Klik hier na het betalen!" class="submit">
              </form>';
    } else {
        echo 'Kon betaalinformatie niet ophalen.';
    }
    
    
    ?>
    Toon Meer


    class.micropayment-mollie.php

    PHP
    <?php
    /*
    =======================================================================
     File      : class.mollie-micropayment.php
     Author    : Mollie B.V.
     Version   : 1.2 (Nov 2007)
     More information? Go to www.mollie.nl
    ========================================================================
    */
    
    
    class micropayment {
        # default vars
    	var $partnerid	  	= null;
    	var $amount 	    	= 1.30;
    	var $report 	      = null;
    	var $country      	= 31;
      var $servicenumber 	= null;
      var $paycode     	  = null;
      var $duration     	= null;
      var $mode        	  = null;
      var $costperminute  = null;
      var $costpercall    = null;
      var $currency       = null;
      
      # after a paycheck is done, we can use these vars
      var $payed          = false;
      var $durationdone   = 0;
      var $durationleft   = null;
      var $paystatus      = null;
        
    	function setPartnerID($partnerid) {
    		$this->224365 = $partnerid;
    	}
    	
    	function setAmount($amount) {
    		if (is_numeric($amount) or $amount == 'endless') {
    		    $this->amount = $amount;
    		    return true;
    		} else return false;
    	}
    	
    	function setCountry($country) {
    		if (is_numeric($country)) {
    		    $this->country = $country;
    		    return true;
    		} else return false;
    	}
    	
    	function setReportURL($report) {
    		$this->report = $report;
    	}
    	
    	function setServicenumber($servicenumber) {
    		$this->servicenumber = $servicenumber;
    	}
    	
    	function setPaycode($paycode) {
    		$this->paycode = $paycode;
    	}
    	
    	function getPayInfo() {
    		$result = $this->sendToHost('www.mollie.nl', '/xml/micropayment/',
    							 		'a=fetch'.
    							 		'&partnerid='.urlencode($this->partnerid).
    							 		'&amount='.urlencode($this->amount).
    							 		'&servicenumber='.urlencode($this->servicenumber).
    							 		'&country='.urlencode($this->country).
    							 		'&report='.urlencode($this->report));
    							 		
    		if (!$result) return false;
    		
    		list($headers, $xml) = preg_split("/(\r?\n){2}/", $result, 2);
    		$data = XML_unserialize($xml);
    		
    		$this->servicenumber    = $data['response']['item']['servicenumber'];
    		$this->paycode          = $data['response']['item']['paycode'];
    		$this->amount           = $data['response']['item']['amount'];
    		$this->duration         = (isset($data['response']['item']['duration'])) ? $data['response']['item']['duration'] : '';
    		$this->mode             = $data['response']['item']['mode'];
    		$this->costperminute    = (isset($data['response']['item']['costperminute'])) ? $data['response']['item']['costperminute'] : '';
    		$this->costpercall      = (isset($data['response']['item']['costpercall'])) ? $data['response']['item']['costpercall'] : '';
    		$this->currency         = $data['response']['item']['currency'];
    		return true;
    	}
    	
    	function checkPayment() {
    		$result = $this->sendToHost('www.mollie.nl', '/xml/micropayment/',
    							 		'a=check'.
    							 		'&servicenumber='.urlencode($this->servicenumber).
    							 		'&paycode='.urlencode($this->paycode));
    		if (!$result) return false;
    		
    		list($headers, $xml) = preg_split("/(\r?\n){2}/", $result, 2);
    		$data = XML_unserialize($xml);
    		
    		$this->payed            = ($data['response']['item']['payed'] == 'true');
    		$this->durationdone     = (isset($data['response']['item']['durationdone'])) ? $data['response']['item']['durationdone'] : '';
    		$this->durationleft     = (isset($data['response']['item']['durationleft'])) ? $data['response']['item']['durationleft'] : '';
    		$this->paystatus        = $data['response']['item']['paystatus'];
    		$this->amount           = $data['response']['item']['amount'];
    		$this->duration         = (isset($data['response']['item']['duration'])) ? $data['response']['item']['duration'] : ''; 
    		$this->mode             = $data['response']['item']['mode'];
    		$this->costperminute    = (isset($data['response']['item']['costperminute'])) ? $data['response']['item']['costperminute'] : '';
    		$this->costpercall      = (isset($data['response']['item']['costpercall'])) ? $data['response']['item']['costpercall'] : '';
    		$this->currency         = $data['response']['item']['currency'];
    		return $this->payed;
    	}
    	
    	function sendToHost($host,$path,$data) {
    		$fp = @fsockopen($host,80);
    		if ($fp) {
    			@fputs($fp, "POST $path HTTP/1.0\n");
    			@fputs($fp, "Host: $host\n");
    			@fputs($fp, "Content-type: application/x-www-form-urlencoded\n");
    			@fputs($fp, "Content-length: " . strlen($data) . "\n");
    			@fputs($fp, "Connection: close\n\n");
    			@fputs($fp, $data);
    			$buf = '';
    			while (!feof($fp))
    			$buf .= fgets($fp,128);
    			fclose($fp);
    		}
    		return $buf;
    	}
    }
    
    
    
    
    
    
    
    
    ###################################################################################
    #
    # XML Library, by Keith Devens, version 1.2b
    # http://keithdevens.com/software/phpxml
    #
    # This code is Open Source, released under terms similar to the Artistic License.
    # Read the license at http://keithdevens.com/software/license
    #
    ###################################################################################
    
    
    class XML {
    	var $parser;   #a reference to the XML parser
    	var $document; #the entire XML structure built up so far
    	var $parent;   #a pointer to the current parent - the parent will be an array
    	var $stack;    #a stack of the most recent parent at each nesting level
    	var $last_opened_tag; #keeps track of the last tag opened.
    
    
    	function XML () {
     		$this->parser = xml_parser_create();
    		xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, false);
    		xml_set_object($this->parser, $this);
    		xml_set_element_handler($this->parser, 'open','close');
    		xml_set_character_data_handler($this->parser, 'data');
    	}
    	function destruct () { xml_parser_free($this->parser); }
    	function parse (&$data) {
    		$this->document = array();
    		$this->stack    = array();
    		$this->parent   = &$this->document;
    		return xml_parse($this->parser, $data, true) ? $this->document : NULL;
    	}
    	function open (&$parser, $tag, $attributes) {
    		$this->data = ''; #stores temporary cdata
    		$this->last_opened_tag = $tag;
    		if (is_array($this->parent) and array_key_exists($tag,$this->parent)) { #if you've seen this tag before
    			if (is_array($this->parent[$tag]) and array_key_exists(0,$this->parent[$tag])) { #if the keys are numeric
    				#this is the third or later instance of $tag we've come across
    				$key = count_numeric_items($this->parent[$tag]);
    			}
    			else {
    				#this is the second instance of $tag that we've seen. shift around
    				if (array_key_exists("$tag attr",$this->parent)) {
    					$arr = array('0 attr'=>&$this->parent["$tag attr"], &$this->parent[$tag]);
    					unset($this->parent["$tag attr"]);
    				}
    				else {
    					$arr = array(&$this->parent[$tag]);
    				}
    				$this->parent[$tag] = &$arr;
    				$key = 1;
    			}
    			$this->parent = &$this->parent[$tag];
    		}
    		else {
    			$key = $tag;
    		}
    		if ($attributes) $this->parent["$key attr"] = $attributes;
    		$this->parent  = &$this->parent[$key];
    		$this->stack[] = &$this->parent;
    	}
    	function data (&$parser, $data) {
    		if ($this->last_opened_tag != NULL) #you don't need to store whitespace in between tags
    			$this->data .= $data;
    	}
    	function close (&$parser, $tag) {
    		if ($this->last_opened_tag == $tag){
    			$this->parent = $this->data;
    			$this->last_opened_tag = NULL;
    		}
    		array_pop($this->stack);
    		if ($this->stack) $this->parent = &$this->stack[count($this->stack)-1];
    	}
    }
    
    
    function & XML_unserialize (&$xml) {
    	$xml_parser = new XML();
    	$data = $xml_parser->parse($xml);
    	$xml_parser->destruct();
    	return $data;
    }
    
    
    function count_numeric_items(&$array){
    	return is_array($array) ? count(array_filter(array_keys($array), 'is_numeric')) : 0;
    }
    
    
    ?>
    Toon Meer
  • Guest, wil je besparen op je domeinnamen? (ad)
  • Linkforsoad
    Intermediate
    Berichten
    364
    • 26 augustus 2011 om 01:53
    • #2

    Ik moet je bekennen dat ik dit script van Mollie niet ken, is het iets nieuws of juist een hele oude? Check iig dit eens:

    Whoops, nee, ik zei niets. Dit is natuurlijk het script voor de micropayment-betalingen. Ikzelf gebruik het iDEAL script, haalde ze even door elkaar.

    PHP
    class micropayment { 
        # default vars 
        var $partnerid          = null; 
        var $amount             = 1.30; 
        var $report           = null; 
        var $country          = 31; 
      var $servicenumber     = null; 
      var $paycode           = null; 
      var $duration         = null; 
      var $mode              = null; 
      var $costperminute  = null; 
      var $costpercall    = null; 
      var $currency       = null; 
       
      # after a paycheck is done, we can use these vars 
      var $payed          = false; 
      var $durationdone   = 0; 
      var $durationleft   = null; 
      var $paystatus      = null;
    Toon Meer

    Tijdzone: EDT
    Ziggo IP (VPN) over Comcast-lijn.

  • eeyk
    Crime-ware.nl
    Berichten
    1.184
    • 26 augustus 2011 om 08:27
    • #3

    Als je geen moer van php snap waarom gebruik je dan niet gewoon betaal popup?

    Uw website gratis adverteren? : http://www.crime-ware.nl/adverteren/
    Uniek pokémon spel : http://www.pocketmonsters.nl/
    * pocketmonsters website = Online!
    * alpha fase is online. v0.15.1
    * 47% klaar (béta versie opnieuw uitgesteld!)

  • legendd
    .........................
    Berichten
    344
    • 26 augustus 2011 om 11:38
    • #4

    Inderdaad ^^

    Ik kan je er bij helpen :)

    http://www.detaildesign.eu > Webdesign Bureau (binnenkort online)

  • dicola2
    --!PRO!--!--!WEBMASTER!--
    Berichten
    16
    • 22 december 2011 om 19:11
    • #5

    lolled, ik hoef persoonlijk niks aan me game te verdienen, ik doe eht gewoon eens om te testen, want ik ben van plan heel die credit opties weg te halen, en alles met geld laten werken, dus ook familie opstarten enzo

    Nieuwe reactie samengevoegd met originele reactie op 22.12.11 19:22:51:
    KAN IEMAND HELPEN? ik vind van refferal de beloningen niet;

    ? xd kan niet zo goed virtueel

  • Tim
    Enlightened
    Ontvangen Reacties
    77
    Berichten
    3.686
    • 22 december 2011 om 19:22
    • #6
    Citaat van dicola2

    lolled, ik hoef persoonlijk niks aan me game te verdienen, ik doe eht gewoon eens om te testen, want ik ben van plan heel die credit opties weg te halen, en alles met geld laten werken, dus ook familie opstarten enzo


    Nouja, test mislukt :)

    Op naar het volgende?

    Verder aan je profiel te zien zou dit absoluut geen probleem moeten zijn...

    Master student IT-recht en Master student Ondernemingsrecht & software ingenieur
    My Personal profile
    My professional profile (LinkedIn/CV)

  • Knowboard
    Intermediate
    Berichten
    192
    • 22 december 2011 om 20:27
    • #7
    Citaat van BrokenTrack


    Nouja, test mislukt :)

    Op naar het volgende?

    Verder aan je profiel te zien zou dit absoluut geen probleem moeten zijn...

    whahaha agreed..

    Talen: PHP, Javascript, SQL, XML, HTML, CSS, Java, C#

  • dicola2
    --!PRO!--!--!WEBMASTER!--
    Berichten
    16
    • 22 december 2011 om 21:09
    • #8

    this al fixed hoor :p
    aleen een foutje in het script heb ik gevonden,
    roulette staat niet bij ingame opties?
    en is ook nergens te bespeuren.

    Nieuwe reactie samengevoegd met originele reactie op 22.12.11 21:10:50:
    kheb eht menutje van vip etc die shit verandert xd tis nu een admin paneeltje geworden,
    morgen als ik paa ruurtjes tijd heb ga ik scripts maken er voor

    Nieuwe reactie samengevoegd met originele reactie op 22.12.11 21:11:32:
    kehb roulette al gevonden, in men prullenbak :D ik had die samen met de vip opties gewist perongeluk :D

    ? xd kan niet zo goed virtueel

  • Thisguyisgone
    Elite members
    Ontvangen Reacties
    197
    Berichten
    7.880
    • 22 december 2011 om 21:15
    • #9

    Euhm, standaard werkt het script wel.

  • dicola2
    --!PRO!--!--!WEBMASTER!--
    Berichten
    16
    • 22 december 2011 om 21:22
    • #10

    ja kweet :D
    weet ji jhoe het raad het getal php document heet?

    Nieuwe reactie samengevoegd met originele reactie op 22.12.11 21:24:38:
    L.GROOT heeft normaal 3 scriptjes geupload van admin :D
    waar vind je die,
    kheb topic als doorzocht

    ? xd kan niet zo goed virtueel

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Fijne feestdagen

    tcbhome 28 december 2025 om 13:55
  • Kritieke update voor Really Simple Security-plug-in

    K.Rens 16 november 2024 om 16:12
  • ING Nederland streeft naar ondersteuning van Google Pay tegen eind februari

    K.Rens 2 november 2024 om 16:09

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37

Gebruikers die dit topic bekijken

  • 2 Gasten
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design