84.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

01-23-2014, 08:37 PM
Post: #111
RE:
Right guys and gals, I aint a nuller or hacker but if I can help I will. I think I have tracked down PhpHolidays-2.9.2 and also the zip file of the website its installed on. The files are 279.85 and 58.39. PM me if you can check these and see if they can be used and I'll send the link, and you can let me know if useable. Person's who have been selling, swopping or just not sharing on this post don't bother, and if the programme is useable, then + reps can be left if you want. Hope it works as it took a bit of finding the original script
Scam Buster

benji
01-23-2014, 09:18 PM
Post: #112
RE:
1. Nulled version of PHPHoliday version 2.9.2 is not based on original untouched package and has problems.
2. Meantime version 2.9.5 and 2.9.10 was out.
3. For example, for version 2.9.10 exist already two original distributions. One is from Jan 6th, 2014 and the other one is from yesterday.
4. Starting with 2.9.10 version, license checking system was improved. Old nulling techniques works partially.
01-24-2014, 11:21 AM
Post: #113
RE:
Set up phpholidays to my serve.

Fatal error:
The encoded file /home4/***/public_html/en/application/Install.php is corrupt. in Unknown on line 0

How should I do? Please help me.

Thx
01-24-2014, 06:16 PM
Post: #114
RE:
Hi
You need to open install.php file in the root not in the applicaiton folder
01-24-2014, 08:35 PM
Post: #115
RE:
Code:
Fatal error:
The encoded file /home4/***/public_html/en/application/Install.php is corrupt. in Unknown on line 0


This error appear when Ioncube Loader is not installed. You need to have installed at least version 4.4.x for Ioncube loader.


Check if it's installed on your server using phpinfo().
Code:
<?php
phpinfo();
?>
60.gif
01-24-2014, 10:58 PM
Post: #116
RE:
Currently IonCube Loader 4.2.2 is enabled. But there is a Fatal error:
The file /home4/*****/public_html/us/application/Install.php cannot be decoded by this version of the ionCube Loader. If you are the administrator of this site then please install the latest version of the ionCube Loader. in Unknown on line 0

How should i do?
01-25-2014, 01:19 AM
Post: #117
RE:
Please look at my previous post:
Code:
at least version 4.4.x for Ioncube loader.


You have veresion 4.2.2. Need to upgrade ioncube loader.
02-13-2014, 12:12 PM
Post: #118
RE:
I have installed 2.9.2, after configuring tours prices, found a problem, "price from" in product list and product details pages of "price from" is not the same. How is this going?
04-06-2014, 12:37 AM (This post was last modified: 04-06-2014 12:40 AM by baagiitours.)
Post: #119
RE:
i eicra phpholiday 2.9.10 upload
not install
Parse error: syntax error, unexpected end of file in
htdocs/library/Zend/Loader/Autoloader/Resource.php on line 165
php:

Code:
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category   Zend
* @package    Zend_Loader
* @subpackage Autoloader
* @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @version    $Id: Resource.php 24593 2012-01-05 20:35:02Z matthew $
* @license    http://framework.zend.com/license/new-bsd     New BSD License
*/

/** Zend_Loader_Autoloader_Interface */
require_once 'Zend/Loader/Autoloader/Interface.php';

/**
* Resource loader
*
* @uses       Zend_Loader_Autoloader_Interface
* @package    Zend_Loader
* @subpackage Autoloader
* @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license    http://framework.zend.com/license/new-bsd     New BSD License
*/
class Zend_Loader_Autoloader_Resource implements Zend_Loader_Autoloader_Interface
{
    /**
    * @var string Base path to resource classes
    */
    protected $_basePath;

    /**
    * @var array Components handled within this resource
    */
    protected $_components = array();

    /**
    * @var string Default resource/component to use when using object registry
    */
    protected $_defaultResourceType;

    /**
    * @var string Namespace of classes within this resource
    */
    protected $_namespace;

    /**
    * @var array Available resource types handled by this resource autoloader
    */
    protected $_resourceTypes = array();

    /**
    * Constructor
    *
    * @param  array|Zend_Config $options Configuration options for resource autoloader
    * @return void
    */
    public function __construct($options)
    {
        if ($options instanceof Zend_Config) {
            $options = $options->toArray();
        }
        if (!is_array($options)) {
            require_once 'Zend/Loader/Exception.php';
            throw new Zend_Loader_Exception('Options must be passed to resource loader constructor');
        }

        $this->setOptions($options);

        $namespace = $this->getNamespace();
        if ((null === $namespace)
            || (null === $this->getBasePath())
        ) {
            require_once 'Zend/Loader/Exception.php';
            throw new Zend_Loader_Exception('Resource loader requires both a namespace and a base path for initialization');
        }

        if (!empty($namespace)) {
            $namespace .= '_';
        }
        require_once 'Zend/Loader/Autoloader.php';
        Zend_Loader_Autoloader::getInstance()->unshiftAutoloader($this, $namespace);
    }

    /**
    * Overloading: methods
    *
    * Allow retrieving concrete resource object instances using 'get<Resourcename>()'
    * syntax. Example:
    * <code>
    * $loader = new Zend_Loader_Autoloader_Resource(array(
    *     'namespace' => 'Stuff_',
    *     'basePath'  => '/path/to/some/stuff',
    * ))
    * $loader->addResourceType('Model', 'models', 'Model');
    *
    * $foo = $loader->getModel('Foo'); // get instance of Stuff_Model_Foo class
    * </code>
    *
    * @param  string $method
    * @param  array $args
    * @return mixed
    * @throws Zend_Loader_Exception if method not beginning with 'get' or not matching a valid resource type is called
    */
    public function __call($method, $args)
    {
        if ('get' == substr($method, 0, 3)) {
            $type  = strtolower(substr($method, 3));
            if (!$this->hasResourceType($type)) {
                require_once 'Zend/Loader/Exception.php';
                throw new Zend_Loader_Exception("Invalid resource type $type; cannot load resource");
            }
            if (empty($args)) {
                require_once 'Zend/Loader/Exception.php';
                throw new Zend_Loader_Exception("Cannot load resources; no resource specified");
            }
            $resource = array_shift($args);
            return $this->load($resource, $type);
        }

        require_once 'Zend/Loader/Exception.php';
        throw new Zend_Loader_Exception("Method '$method' is not supported");
    }

    /**
    * Helper method to calculate the correct class path
    *
    * @param string $class
    * @return False if not matched other wise the correct path
    */
    public function getClassPath($class)
    {
        $segments          = explode('_', $class);
        $namespaceTopLevel = $this->getNamespace();
        $namespace         = '';

        if (!empty($namespaceTopLevel)) {
            $namespace = array();
            $topLevelSegments = count(explode('_', $namespaceTopLevel));
            for ($i = 0; $i < $topLevelSegments; $i++) {
                $namespace[] = array_shift($segments);
            }
            $namespace = implode('_', $namespace);
            if ($namespace != $namespaceTopLevel) {
                // wrong prefix? we're done
                return false;
            }
        }

        if (count($segments) < 2) {
            // assumes all resources have a component and class name, minimum
            return false;
        }

        $final     = array_p

pls help me
04-06-2014, 12:46 AM
Post: #120
RE:
http://www.mirrorcreator.com/files/XTDN4....zip_links

here for phpholidays 2.9.2 nulled
69.gif




60.gif