bOmBeLq / Ponzi

Ponzi script for cryptocurrencies (eg. Bitcoin)
MIT License
20 stars 23 forks source link

Installing Error #7

Open plainpli opened 8 years ago

plainpli commented 8 years ago

~/project# php app/console doctrine:database:create PHP Warning: require_once(/root/project/app/bootstrap.php.cache): failed to open stream: No such file or directory in /root/project/app/console on line 10 PHP Fatal error: require_once(): Failed opening required '/root/project/app/bootstrap.php.cache' (include_path='.:/usr/share/php:/usr/share/pear') in /root/project/app/console on line 10

when running: php app/console doctrine:database:create

bOmBeLq commented 8 years ago

did "composer install" run fully until the end without any errors?

plainpli commented 8 years ago

I've cloned the git into /root/project and installed composer into the project folder without any errors indeed. I've had a hard time even using composer

bOmBeLq commented 8 years ago

but what's the output of "php composer install" after running it in project dir?

plainpli commented 8 years ago

Could not open input file: composer

plainpli commented 8 years ago

if you'd mind send me a shot at flhuzard@gmail.com, will reward you for helping

plainpli commented 8 years ago

php composer.json install returns:

{
    "name": "symfony/framework-standard-edition",
    "license": "MIT",
    "type": "project",
    "description": "The \"Symfony Standard Edition\" distribution",
    "autoload": {
        "psr-0": {
            "": "src/"
        }
    },
    "require": {
        "php": ">=5.3.3",
        "symfony/symfony": "~2.4",
        "doctrine/orm": "~2.2,>=2.2.3",
        "doctrine/doctrine-bundle": "~1.2",
        "twig/extensions": "~1.0",
        "symfony/assetic-bundle": "~2.3",
        "symfony/swiftmailer-bundle": "~2.3",
        "symfony/monolog-bundle": "~2.4",
        "sensio/distribution-bundle": "~2.3",
        "sensio/framework-extra-bundle": "~3.0",
        "sensio/generator-bundle": "~2.3",
        "incenteev/composer-parameter-handler": "~2.0",
        "bml/coin-bundle": "0.1",
        "doctrine/doctrine-fixtures-bundle": "2.2.*",
        "ircmaxell/password-compat": "@stable"

    },
    "scripts": {
        "post-install-cmd": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ],
        "post-update-cmd": [
            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ]
    },
    "config": {
        "bin-dir": "bin"
    },
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web",
        "incenteev-parameters": {
            "file": "app/config/parameters.yml"
        },
        "branch-alias": {
            "dev-master": "2.4-dev"
        }
    },
    "repositories": [
        {
            "type": "package",
            "package": {
                "name": "bml/coin-bundle",
                "version": "0.1",
                "source": {
                    "url": "https://github.com/bOmBeLq/BmlCoinBundle",
                    "type": "git",
                    "reference": "0.1"
                },
                "autoload": {
                    "psr-0": {
                        "Bml\\CoinBundle": "src"
                    }
                }
            }
        }
    ]
}
cirphrank commented 7 years ago

Please @all, I'm a newbie. How do I go about installing this script on my hosting account in the first place, it's unlike any other php script I've installed before. Thank you.