Bonjour à toute la communauté, Voilà aujourd'hui, pour l'installation de mon site internet, j'ai prix la décision de le travailliez avec Wordpress, toute mon installation c'est très bien passé jusqu'au moment l'installation du template choisi qui se nomme "blackfyre". Voici mon problème : Parse error: syntax error, unexpected 'protected' (T_PROTECTED) in /home/uxxxxxxxxx/public_html/wp-content/themes/blackfyre/pluginactivation.php on line 1 J'aurais voulu savoir si une personne aurais déjà reçu se problème également, et voir s'il ou elle pourrais aidée pour m'expliqué se que je devrais faire. Amicalement, Netri.
J'ai réussi à résoudre mon problème, mais maintenant, il me, mais ceci : Parse error: syntax error, unexpected '{' in /home/uXXXXXXXXX/public_html/wp-content/themes/blackfyre/themeOptions/functions.php on line 1 Voici le Script du fonctions.php : Code:<?php if(isset($_POST['submit_add_match'])) { $wpClanWars = new WP_ClanWars(); $date = $_POST['date']; $ENTRY_CREATED = @mktime($date['hh'],$date['mn'],0,$date['mm'],$date['jj'],$date['yy']); if ($ENTRY_CREATED !== FALSE) $ENTRY_CREATED = date('Y-m-d H:i:s', $ENTRY_CREATED ); else $ENTRY_CREATED = current_time( 'mysql' ); $team1_id = blackyfyre_return_team_id_by_post_id($_POST['team1']); $team2_id = blackyfyre_return_team_id_by_post_id($_POST['post_id']); if($_POST['match_id']!=0){ /*UPDATE*/ $arr = array( 'title' => isset($_POST['title']) ? $_POST['title'] : '', 'date' => $ENTRY_CREATED, 'game_id' => isset($_POST['game_id']) ? $_POST['game_id'] : 0, 'match_status' => isset($_POST['match_status']) ? $_POST['match_status'] : 0, 'description' => isset($_POST['description']) ? $_POST['description'] : '', 'external_url' => isset($_POST['external_url']) ? $_POST['external_url'] : '', ); }else{ /*INSERT*/ $arr = array( 'title' => isset($_POST['title']) ? $_POST['title'] : '', 'date' => $ENTRY_CREATED, #$wpClanWars->current_time_fixed('timestamp', 0), /*'post_id' => 0,*/ 'team1' => $team1_id[0]->id, 'team2' => $team2_id[0]->id, 'scores' => array(), 'game_id' => isset($_POST['game_id']) ? $_POST['game_id'] : 0, 'match_status' => isset($_POST['match_status']) ? $_POST['match_status'] : 0, 'description' => isset($_POST['description']) ? $_POST['description'] : '', 'external_url' => isset($_POST['external_url']) ? $_POST['external_url'] : '', 'status' => "pending" ); global $challenge_sent; $challenge_sent = 'yes'; } if ($_POST['match_id']==0) { /**** INSERT ****/ $match_id = $wpClanWars->add_match($arr); $wpClanWars->update_match_post($match_id); if($arr) { $scores = $_POST['scores']; foreach($scores as $round_group => $r) { for($i = 0; $i < sizeof($r['team1']); $i++) { $wpClanWars->add_round(array('match_id' => $match_id, 'group_n' => abs($round_group), 'map_id' => $r['map_id'], 'tickets1' => 0, 'tickets2' => 0 )); } } } } elseif ($_POST['match_id']!=0) { /**** UPDATE ****/ $wpClanWars->update_match($_POST['match_id'], $arr); } } Avez-vous une solution ? Amicalement, Netri.
Aurais-tu une version de ce thème à me proposer ? Ma version de Wordpress est Version 4.6.1 Amicalement, Netri.
La version que tu m'as donnée m'indique ceci maintenant : Parse error: syntax error, unexpected 'if' (T_IF) in /home/uxxxxxxxxx/public_html/wp-content/themes/blackfyre/pluginactivation.php on line 1