Résolu Besoin d'aide pour le thème Wordpress blackfyre.

Discussion dans 'Résolu' créé par Netri, 20 Septembre 2016.

  1. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    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

    [​IMG]


    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.
     
    Dernière édition par un modérateur: 20 Septembre 2016
  2. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    Via le site : templetesfreedownload.wordpress

    Amicalement,
    Netri.
     
  3. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    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.
     
    Dernière édition par un modérateur: 20 Septembre 2016
  4. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    Aurais-tu une version de ce thème à me proposer ?

    Ma version de Wordpress est Version 4.6.1

    Amicalement,
    Netri.
     
  5. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    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
     
  6. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    Un compte test où ? Sur mon site Wordpress ?
     
  7. Netri

    Netri Membre

    Inscrit:
    6 Septembre 2016
    Messages:
    45
    J'aime reçus:
    4
    Points:
    533
    Aucun problème.

    Amicalement,
    Netri.
     

Partager cette page

  1. Ce site utilise des cookies. En continuant à utiliser ce site, vous acceptez l'utilisation des cookies.
    Rejeter la notice