Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 11/05/2014, à 14:58

ethan7888

erreur php lié à wordpress

Bonjour à tous,

J'ai installé wordpress sur une virtuelle machine  un ubuntu serveur 14.04 LTS

paquets installés:

- mysql-server
- phpmyadmin
-php5
- apache2
- wordpress

J'ai modiifé le fichier 000-defaut (dans /etc/apache2/sites-availables) pour que mon root directory soit  "/home/ethan7888/www" . (j'aurai pu le laisser dans le /var/www mais je voulais faire un test sur un autre root directory ^^^)

J'ai redémarré le service apache > Ok

Ensuite j'ai modifié le propriétaire et le groupe sur ce fameux nouveau répertoire www. Puis Ensuite ses droits (chmod)

chown www-data www/
chgrp www-data www/
chmod 755 www/

J'ai décompressé le dossier wordpress (dernière version en Français) dans le dossier www/

J'ai ensuite crée ma base de donné en ligne de commande via mysql > Ok

Ensuite je suis aller sur mon navigateur de mon host physique et tapez : http://adresseipvm/wp-admin

Voiici ce que m'affiche le navigateur:

. __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the upper corner.' ) . '

'; // Not using chaining here, so as to be parseable by PHP4. $screen = get_current_screen(); $screen->add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => $help, ) ); // Help tabs $help = '

' . __( 'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.' ) . '
'; $help .= '

' . __( 'Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.' ) . '
'; $screen->add_help_tab( array( 'id' => 'help-navigation', 'title' => __( 'Navigation' ), 'content' => $help, ) ); $help = '

' . __( 'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.' ) . '
'; $help .= '

' . __( 'Screen Options - Use the Screen Options tab to choose which Dashboard boxes to show.' ) . '
'; $help .= '

' . __( 'Drag and Drop - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.' ) . '
'; $help .= '

' . __( 'Box Controls - Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.' ) . '
'; $screen->add_help_tab( array( 'id' => 'help-layout', 'title' => __( 'Layout' ), 'content' => $help, ) ); $help = '

' . __( 'The boxes on your Dashboard screen are:' ) . '
'; if ( current_user_can( 'edit_posts' ) ) $help .= '

' . __( 'At A Glance - Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '
'; $help .= '

' . __( 'Activity - Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '
'; if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) $help .= '

' . __( "Quick Draft - Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." ) . '
'; if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) $help .= '

' . __( 'WordPress News - Latest news from the official WordPress project, the WordPress Planet, and popular and recent plugins.' ) . '
'; else $help .= '


Manque t-il un paquet lié à PHP ?

Merci d'avance pour votre aide

Hors ligne

#2 Le 11/05/2014, à 15:40

casperfr

Re : erreur php lié à wordpress

Bonjour.
Il te manque les paquets
libapache2-mod-php5
php5-mysql

Ensuite le premier démarrage de l'installation a lieu. A la racine de WordPress. Wp-admin est l'administration une fois WordPress installé.

Tu peux aussi installé le module rewrite pour utilisé les permalien de WordPress
a2enmod rewrite
Puis redémarrer apache
(J'espère que les instruction que je t'écris son bonne. J'en vois le message depuis mon téléphone)

Hors ligne

#3 Le 13/05/2014, à 00:22

ethan7888

Re : erreur php lié à wordpress

casperfr a écrit :

Bonjour.
Il te manque les paquets
libapache2-mod-php5
php5-mysql

Ensuite le premier démarrage de l'installation a lieu. A la racine de WordPress. Wp-admin est l'administration une fois WordPress installé.

Tu peux aussi installé le module rewrite pour utilisé les permalien de WordPress
a2enmod rewrite
Puis redémarrer apache
(J'espère que les instruction que je t'écris son bonne. J'en vois le message depuis mon téléphone)


Bonjour Caspefr,

effectivement en lisant certains mots clés dans les messages d'erreurs j'ai trouvé la solution hier. Il me manquait juste le paquet liabapache2-mod-php5 ^^

Merci d'avoir pris la peine de répondre en tout cas ^^

Hors ligne