• Hallo,

    Ik heb mijn website van locale host geupload naar externet host.
    Maar de homepage blijft wit. Ik heb nagekeken of mn database naam etc allemaal goed is, maaar dat is echt correct. Wat gaat er fout?

    Kan iemand alsjeblieft helpen, ik ben al dagen bezig en de wanhoop nabij…

    edit: heb debug aangezet en dit komt eruit:

    Warning: Unterminated comment starting line 1315 in /var/www/xxx/6/101077/webspace/httpdocs/wp-includes/wp-db.php on line 1315 Parse error: syntax error, unexpected $end, expecting T_FUNCTION in /var/www/xxx/6/101077/webspace/httpdocs/wp-includes/wp-db.php on line 1315

    ik heb alleen geen idee wat dit beteknt. wie weet het wel?

    Oke de code op de regel is als volgt:

    /**
    * Retrieve one column from the database.
    *
    * Executes a SQL query and returns the column from the SQL result.
    * If the SQL result contains more than one column, this function returns the column specified.
    * If $query is null, this function returns the specified column from the previous SQL result.
    *
    * @since 0.71
    *
    * @param string|null $query Optional. SQL query. Defaults to previous query.
    * @param int $x Optional. Column to return. Indexed from 0.
    * @return array Database query result. Array indexed from 0 by SQL result row number.
    */
    function get_col( $query = null , $x = 0 ) {
    if ( $query )
    $this->query( $query );

    $new_array = array();
    // Extract the column values
    for ( $i = 0, $j = count( $this->last_result ); $i < $j; $i++ ) {
    $new_array[$i] = $this->get_var( null, $x, $i );
    }
    return $new_array;
    }

    /**’

    Suggesties? Iemand??

2 reacties aan het bekijken - 1 tot 2 (van in totaal 2)
  • Heb je wellicht het webadres voor ons, dan kunnen we kijken of we wellicht zelf iets kunnen zien (in de code van de pagina).

    Elja

    Thread starter Andrea

    (@nicolien)

    Hoi Elja, bedankt voor je snelle reactie.
    Zie bovenstaande edit. Ik ben echt een rookie en heb geen idee wat het inhoudt. Kan jij me verder helpen?

2 reacties aan het bekijken - 1 tot 2 (van in totaal 2)

Het onderwerp ‘Homepage wit’ is gesloten voor nieuwe reacties.