• 07-02-2016, 19:48:00
    #1
    Merhaba arkadaşlar Codecanyon' da yer alan Buzzy scriptini bugün satın aldım. Siteme scripti attı ve kurulumu yapmaya çalıştım. Veritabanı adı, Kullanıcı adı ve şifre kısmını ekleyip son aşamayı tamamlamak istediğimde aşağıdaki hatayı veriyor.

    is_executable(): open_basedir restriction in effect. File(/usr/lib/php) is not within the allowed path(s): (/home2/filminko:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp)

    Bir türlü çözemedim. Lütfen yardımcı olun sabahtan beridir uğraşıyorum kafayı yiyicem nerdeyse.
  • 07-02-2016, 20:10:52
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Aldığın script CodeIgniter altyapısını mı kullanıyor? Öyleyse config.php'deki sess_save_path parametresini şöyle değiştir:
    $config['sess_save_path'] = '/tmp/';
  • 07-02-2016, 20:13:01
    #3
    Developer
    whm panelde tweak settings'den ilgili domaini seçip kaydederseniz problem çözülecektir.
  • 12-06-2016, 13:10:57
    #4
    Kimlik doğrulama veya yönetimden onay bekliyor.
    brown adlı üyeden alıntı: mesajı görüntüle
    whm panelde tweak settings'den ilgili domaini seçip kaydederseniz problem çözülecektir.
    kapalıysa yetkımız ne yapmamız gerek?
  • 04-07-2016, 16:27:56
    #5
    Konu biraz eski ama bu lanet olası scriptle ilgili bir kaç büyük sorun bulunmakta.

    Şimdi dostum kurulum aşamasında aldığın bu sorunu halletmek için /public_html/vendor/symfony/process dizininde bulunan PhpExecutableFinder.php dosyasını aç ve aşağıdaki kod ile değiştir.

    Buzzy 1.4 verisyonunda kesin çalışır.

    <?php
    
    /*
     * This file is part of the Symfony package.
     *
     * (c) Fabien Potencier <fabien@symfony.com>
     *
     * For the full copyright and license information, please view the LICENSE
     * file that was distributed with this source code.
     */
    
    namespace Symfony\Component\Process;
    
    /**
     * An executable finder specifically designed for the PHP executable.
     *
     * @author Fabien Potencier <fabien@symfony.com>
     * @author Johannes M. Schmitt <schmittjoh@gmail.com>
     */
    class PhpExecutableFinder
    {
        private $executableFinder;
    
        public function __construct()
        {
            $this->executableFinder = new ExecutableFinder();
        }
    
        /**
         * Finds The PHP executable.
         *
         * @param bool $includeArgs Whether or not include command arguments
         *
         * @return string|false The PHP executable path or false if it cannot be found
         */
        public function find($includeArgs = true)
        {
            $args = $this->findArguments();
            $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
    
            // HHVM support
            if (defined('HHVM_VERSION')) {
                return (getenv('PHP_BINARY') ?: PHP_BINARY).$args;
            }
    
            // PHP_BINARY return the current sapi executable
            if (defined('PHP_BINARY') && PHP_BINARY && in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg')) && is_file(PHP_BINARY)) {
                return PHP_BINARY.$args;
            }
    
            if ($php = getenv('PHP_PATH')) {
                if (!is_executable($php)) {
                    return false;
                }
    
                return $php;
            }
    
        }
        /**
         * Finds the PHP executable arguments.
         *
         * @return array The PHP executable arguments
         */
        public function findArguments()
        {
            $arguments = array();
    
            if (defined('HHVM_VERSION')) {
                $arguments[] = '--php';
            } elseif ('phpdbg' === PHP_SAPI) {
                $arguments[] = '-qrr';
            }
    
            return $arguments;
        }
    }