THELIA Forum

Welcome to the THELIA support and discusssion forum

Announcement

Rejoignez la communauté sur le Discord Thelia : https://discord.gg/YgwpYEE3y3

Offline


Bonjour, j'essaye d'installer Thelia, en vain, je suis sous Ubuntu 15.04.

J'ai télécharger la version 2.1.3 de thelia, j'ai configurer un virtualhost pour celui-ci.

thelia.conf
-----------------------------------------------------------------------------------------

<virtualhost *:80>

    ServerName thelia.local
    DocumentRoot "/var/www/thelia/web"

    <Directory "/var/www/thelia/web">
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>

    # Fichiers de log personnalisés
    Loglevel warn
    ErrorLog /var/log/apache2/votresite.error.log
    CustomLog /var/log/apache2/votresite.log combined

</virtualHost>

-----------------------------------------------------------------------------------------
j'ai rajouté dans mon hosts.

127.0.0.1 thelia.local


Quand je tape dans ma barre d'adresse thelia.local , j'obtient :

unregister(); $cacheLoader->register(true); */ $request = Request::createFromGlobals(); $thelia = new Thelia("prod", false); //$thelia = new HttpCache($thelia); $response = $thelia->handle($request)->prepare($request)->send(); $thelia->terminate($request, $response);

Et quand je tape thelia.local/install, j'obtient :

trans('French'); ?> trans('English'); ?>

trans('Welcome in the Thelia installation wizard.'); ?>

trans('We will guide you throughout this process to install any application on your system.'); ?>
trans('Continue'); ?>

sans css ni aucune couleur, juste ces messages, si je clique quand même sur continue, j'obtient :

exec(); $validationMessage = $checkPermission->getValidationMessages(); $_SESSION['install']['return_step'] = 'permission.php'; $_SESSION['install']['continue'] = $isValid; $_SESSION['install']['current_step'] = 'permission.php'; $_SESSION['install']['step'] = 2; ?>

trans('Checking PHP version and permissions'); ?>

    $data): ?>

trans( 'Continue' ); ?> refresh
trans( 'It seems that Thelia is already installed on this system. Please check configuration, perform some cleanup if required, an try again.' ); ?>
trans('

Sorry, an unexpected error occured: %err

Error details:

%details
', [ '%err' => $ex->getMessage(), '%details' => nl2br($ex->getTraceAsString()) ]); ?>

J'ai ne sais plus trop quoi faire, je travaille en embarqué et mes connaissances en web sont assez légères, est-ce un problème de permission?

Cordialement

Last edited by hydral (28-05-2015 16:43:30)

Offline


Ce que tu vois, c'est le code source des fichiers PHP.

PHP n'est sans doute pas installé ou activé et/ou correctement configuré sur ton serveur Web.


OpenStudio Toulouse

Offline


Pourtant je peux ouvrir une page phph avec un php info dedans et tout fonctionne.

Mon bundle de test sur symfony écris en php fonctionne aussi.

Je ne comprend pas.