Ondersteuning » Thema en CSS/opmaak » Kan de pagina's niet meer bewerken

  • Opgelost jens.decaluwe

    (@jensdecaluwe)


    Beste,

    Ik ben een beetje ten einde raad, en hoop echt dat iemand me kan helpen.
    Probleem is begonnen toen ik site wat aan het aanpassen was, niks belangrijks gewoon wat nieuwe info plaatsen enzo….

    Als ik op een pagina iets wil aanpassen dien ik normaal gezien enkel op de edit knop te drukken en kan ik direct doen.

    Maar nu dus niet meer, heb al aardig wat rond gezocht maar zie nergens de oplossing.

    Ik kan dus niet meer in mijn pagina’s werken, alle info staat er wel nog deze kan ik nog lezen op de site zelf.
    Wanneer ik op de edit knop druk, krijg ik 404-pagina.

    en nu krijg ik ook een foutcode te zien die te maken geeft met edit.php zo blijkt

    Weet niet of beide zaken iets met elkaar te maken hebben.

    Deze foutcode krijg ik.

    Parse error: syntax error, unexpected T_LNUMBER in /home/deb30522/domains/ivvoh.be/public_html/wp-admin/edit.php on line 8

    Hieronder de volledige edit.php

    1  <?php
       2  /**
       3   * Edit Posts Administration Screen.
       4   *
       5   * @package WordPress
       6   * @subpackage Administration
       7   */
       8
       9  /** WordPress Administration Bootstrap */
      10  require_once ( './admin.php' );
      11
      12  if ( ! $typenow )
      13      wp_die( __( 'Invalid post type' ) );
      14
      15  $post_type = $typenow;
      16  $post_type_object = get_post_type_object( $post_type );
      17
      18  if ( ! $post_type_object )
      19      wp_die( __( 'Invalid post type' ) );
      20
      21  if ( ! current_user_can( $post_type_object->cap->edit_posts ) )
      22      wp_die( __( 'Cheatin’ uh?' ) );
      23
      24  $wp_list_table = _get_list_table('WP_Posts_List_Table');
      25  $pagenum = $wp_list_table->get_pagenum();
      26
      27  // Back-compat for viewing comments of an entry
      28  foreach ( array( 'p', 'attachment_id', 'page_id' ) as $_redirect ) {
      29      if ( ! empty( $_REQUEST[ $_redirect ] ) ) {
      30          wp_redirect( admin_url( 'edit-comments.php?p=' . absint( $_REQUEST[ $_redirect ] ) ) );
      31          exit;
      32      }
      33  }
      34  unset( $_redirect );
      35
      36  if ( 'post' != $post_type ) {
      37      $parent_file = "edit.php?post_type=$post_type";
      38      $submenu_file = "edit.php?post_type=$post_type";
      39      $post_new_file = "post-new.php?post_type=$post_type";
      40  } else {
      41      $parent_file = 'edit.php';
      42      $submenu_file = 'edit.php';
      43      $post_new_file = 'post-new.php';
      44  }
      45
      46  $doaction = $wp_list_table->current_action();
      47
      48  if ( $doaction ) {
      49      check_admin_referer('bulk-posts');
      50
      51      $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), wp_get_referer() );
      52      if ( ! $sendback )
      53          $sendback = admin_url( $parent_file );
      54      $sendback = add_query_arg( 'paged', $pagenum, $sendback );
      55      if ( strpos($sendback, 'post.php') !== false )
      56          $sendback = admin_url($post_new_file);
      57
      58      if ( 'delete_all' == $doaction ) {
      59          $post_status = preg_replace('/[^a-z0-9_-]+/i', '', $_REQUEST['post_status']);
      60          if ( get_post_status_object($post_status) ) // Check the post status exists first
      61              $post_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type=%s AND post_status = %s", $post_type, $post_status ) );
      62          $doaction = 'delete';
      63      } elseif ( isset( $_REQUEST['media'] ) ) {
      64          $post_ids = $_REQUEST['media'];
      65      } elseif ( isset( $_REQUEST['ids'] ) ) {
      66          $post_ids = explode( ',', $_REQUEST['ids'] );
      67      } elseif ( !empty( $_REQUEST['post'] ) ) {
      68          $post_ids = array_map('intval', $_REQUEST['post']);
      69      }
      70
      71      if ( !isset( $post_ids ) ) {
      72          wp_redirect( $sendback );
      73          exit;
      74      }
      75
      76      switch ( $doaction ) {
      77          case 'trash':
      78              $trashed = 0;
      79              foreach( (array) $post_ids as $post_id ) {
      80                  if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
      81                      wp_die( __('You are not allowed to move this item to the Trash.') );
      82
      83                  if ( !wp_trash_post($post_id) )
      84                      wp_die( __('Error in moving to Trash.') );
      85
      86                  $trashed++;
      87              }
      88              $sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids) ), $sendback );
      89              break;
      90          case 'untrash':
      91              $untrashed = 0;
      92              foreach( (array) $post_ids as $post_id ) {
      93                  if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
      94                      wp_die( __('You are not allowed to restore this item from the Trash.') );
      95
      96                  if ( !wp_untrash_post($post_id) )
      97                      wp_die( __('Error in restoring from Trash.') );
      98
      99                  $untrashed++;
     100              }
     101              $sendback = add_query_arg('untrashed', $untrashed, $sendback);
     102              break;
     103          case 'delete':
     104              $deleted = 0;
     105              foreach( (array) $post_ids as $post_id ) {
     106                  $post_del = get_post($post_id);
     107
     108                  if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
     109                      wp_die( __('You are not allowed to delete this item.') );
     110
     111                  if ( $post_del->post_type == 'attachment' ) {
     112                      if ( ! wp_delete_attachment($post_id) )
     113                          wp_die( __('Error in deleting...') );
     114                  } else {
     115                      if ( !wp_delete_post($post_id) )
     116                          wp_die( __('Error in deleting...') );
     117                  }
     118                  $deleted++;
     119              }
     120              $sendback = add_query_arg('deleted', $deleted, $sendback);
     121              break;
     122          case 'edit':
     123              if ( isset($_REQUEST['bulk_edit']) ) {
     124                  $done = bulk_edit_posts($_REQUEST);
     125
     126                  if ( is_array($done) ) {
     127                      $done['updated'] = count( $done['updated'] );
     128                      $done['skipped'] = count( $done['skipped'] );
     129                      $done['locked'] = count( $done['locked'] );
     130                      $sendback = add_query_arg( $done, $sendback );
     131                  }
     132              }
     133              break;
     134      }
     135
     136      $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback );
     137
     138      wp_redirect($sendback);
     139      exit();
     140  } elseif ( ! empty($_REQUEST['_wp_http_referer']) ) {
     141       wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) );
     142       exit;
     143  }
     144
     145  $wp_list_table->prepare_items();
     146
     147  wp_enqueue_script('inline-edit-post');
     148
     149  $title = $post_type_object->labels->name;
     150
     151  if ( 'post' == $post_type ) {
     152      get_current_screen()->add_help_tab( array(
     153      'id'        => 'overview',
     154      'title'        => __('Overview'),
     155      'content'    =>
     156          '<p>' . __('This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.') . '</p>'
     157      ) );
     158      get_current_screen()->add_help_tab( array(
     159      'id'        => 'screen-content',
     160      'title'        => __('Screen Content'),
     161      'content'    =>
     162          '<p>' . __('You can customize the display of this screen’s contents in a number of ways:') . '</p>' .
     163          '<ul>' .
     164              '<li>' . __('You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.') . '</li>' .
     165              '<li>' . __('You can filter the list of posts by post status using the text links in the upper left to show All, Published, Draft, or Trashed posts. The default view is to show all posts.') . '</li>' .
     166              '<li>' . __('You can view posts in a simple title list or with an excerpt. Choose the view you prefer by clicking on the icons at the top of the list on the right.') . '</li>' .
     167              '<li>' . __('You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.') . '</li>' .
     168          '</ul>'
     169      ) );
     170      get_current_screen()->add_help_tab( array(
     171      'id'        => 'action-links',
     172      'title'        => __('Available Actions'),
     173      'content'    =>
     174          '<p>' . __('Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:') . '</p>' .
     175          '<ul>' .
     176              '<li>' . __('<strong>Edit</strong> takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.') . '</li>' .
     177              '<li>' . __('<strong>Quick Edit</strong> provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.') . '</li>' .
     178              '<li>' . __('<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' .
     179              '<li>' . __('<strong>Preview</strong> will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.') . '</li>' .
     180          '</ul>'
     181      ) );
     182      get_current_screen()->add_help_tab( array(
     183      'id'        => 'bulk-actions',
     184      'title'        => __('Bulk Actions'),
     185      'content'    =>
     186          '<p>' . __('You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.') . '</p>' .
     187                  '<p>' . __('When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '</p>'
     188      ) );
     189
     190      get_current_screen()->set_help_sidebar(
     191      '<p><strong>' . __('For more information:') . '</strong></p>' .
     192      '<p>' . __('<a href="http://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .
     193      '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     194      );
     195
     196  } elseif ( 'page' == $post_type ) {
     197      get_current_screen()->add_help_tab( array(
     198      'id'        => 'overview',
     199      'title'        => __('Overview'),
     200      'content'    =>
     201          '<p>' . __('Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.') . '</p>'
     202      ) );
     203      get_current_screen()->add_help_tab( array(
     204      'id'        => 'managing-pages',
     205      'title'        => __('Managing Pages'),
     206      'content'    =>
     207          '<p>' . __('Managing pages is very similar to managing posts, and the screens can be customized in the same way.') . '</p>' .
     208          '<p>' . __('You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.') . '</p>'
     209      ) );
     210
     211      get_current_screen()->set_help_sidebar(
     212      '<p><strong>' . __('For more information:') . '</strong></p>' .
     213      '<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .
     214      '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
     215      );
     216  }
     217
     218  add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );
     219
     220  require_once ('./admin-header.php');
     221  ?>
     222  <div class="wrap">
     223  <?php screen_icon(); ?>
     224  <h2><?php
     225  echo esc_html( $post_type_object->labels->name );
     226  if ( current_user_can( $post_type_object->cap->create_posts ) )
     227      echo ' <a href="' . esc_url( $post_new_file ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
     228  if ( ! empty( $_REQUEST['s'] ) )
     229      printf( ' <span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() );
     230  ?></h2>
     231
     232  <?php if ( isset( $_REQUEST['locked'] ) || isset( $_REQUEST['updated'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) ) {
     233      $messages = array();
     234  ?>
     235  <div id="message" class="updated"><p>
     236  <?php if ( isset( $_REQUEST['updated'] ) && $updated = absint( $_REQUEST['updated'] ) ) {
     237      $messages[] = sprintf( _n( '%s post updated.', '%s posts updated.', $updated ), number_format_i18n( $updated ) );
     238  }
     239
     240  if ( isset( $_REQUEST['locked'] ) && $locked = absint( $_REQUEST['locked'] ) ) {
     241      $messages[] = sprintf( _n( '%s item not updated, somebody is editing it.', '%s items not updated, somebody is editing them.', $locked ), number_format_i18n( $locked ) );
     242  }
     243
     244  if ( isset( $_REQUEST['deleted'] ) && $deleted = absint( $_REQUEST['deleted'] ) ) {
     245      $messages[] = sprintf( _n( 'Item permanently deleted.', '%s items permanently deleted.', $deleted ), number_format_i18n( $deleted ) );
     246  }
     247
     248  if ( isset( $_REQUEST['trashed'] ) && $trashed = absint( $_REQUEST['trashed'] ) ) {
     249      $messages[] = sprintf( _n( 'Item moved to the Trash.', '%s items moved to the Trash.', $trashed ), number_format_i18n( $trashed ) );
     250      $ids = isset($_REQUEST['ids']) ? $_REQUEST['ids'] : 0;
     251      $messages[] = '<a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a>';
     252  }
     253
     254  if ( isset( $_REQUEST['untrashed'] ) && $untrashed = absint( $_REQUEST['untrashed'] ) ) {
     255      $messages[] = sprintf( _n( 'Item restored from the Trash.', '%s items restored from the Trash.', $untrashed ), number_format_i18n( $untrashed ) );
     256  }
     257
     258  if ( $messages )
     259      echo join( ' ', $messages );
     260  unset( $messages );
     261
     262  $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'locked', 'skipped', 'updated', 'deleted', 'trashed', 'untrashed' ), $_SERVER['REQUEST_URI'] );
     263  ?>
     264  </p></div>
     265  <?php } ?>
     266
     267  <?php $wp_list_table->views(); ?>
     268
     269  <form id="posts-filter" action="" method="get">
     270
     271  <?php $wp_list_table->search_box( $post_type_object->labels->search_items, 'post' ); ?>
     272
     273  <input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all'; ?>" />
     274  <input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" />
     275  <?php if ( ! empty( $_REQUEST['show_sticky'] ) ) { ?>
     276  <input type="hidden" name="show_sticky" value="1" />
     277  <?php } ?>
     278
     279  <?php $wp_list_table->display(); ?>
     280
     281  </form>
     282
     283  <?php
     284  if ( $wp_list_table->has_items() )
     285      $wp_list_table->inline_edit();
     286  ?>
     287
     288  <div id="ajax-response"></div>
     289  <br class="clear" />
     290  </div>
     291
     292  <?php
     293  include ('./admin-footer.php');

    Hopelijk kan er me iemand helpen, alvast bedankt!!!!

5 reacties aan het bekijken - 1 tot 5 (van in totaal 5)
  • Waarschijnlijk veroorzaakt een plugin de problemen. Alle plugins als eens uitgeschakeld?

    Thread starter jens.decaluwe

    (@jensdecaluwe)

    Heb dit net eens geprobeerd, alle pugin uitgeschakeld. nog steeds hetzelfde probleem.

    Ik krijg 2 verschillende foutcode,

    als ik vanop de site op edit klik krijg ik volgende foutmelding. (deze spreekt op post.php)

    Parse error: syntax error, unexpected T_REQUIRE_ONCE in /home/deb30522/domains/ivvoh.be/public_html/wp-admin/post.php on line 2

    Wil ik het doen van uit het beheerscherm en ik klik op pagina dan krijg ik volgende foutmelding (Deze spreekt op edit.php)

    Parse error: syntax error, unexpected T_REQUIRE_ONCE in /home/deb30522/domains/ivvoh.be/public_html/wp-admin/edit.php on line 2

    Even WordPress opnieuw downloaden en dan via FTP alleen de / wp-admin / folder opnieuw uploaden en overschrijven.

    Daarna goed kijken naar de leeftijden en feedbacks van plugins.

    Thread starter jens.decaluwe

    (@jensdecaluwe)

    Shmoo,

    Oke, ik probeer het nu.
    Wat bedoel je met naar de leeftijden en feedbacks van plugins kijken

    Thread starter jens.decaluwe

    (@jensdecaluwe)

    Ik heb dus wordpress opnieuw gedownload en dan via FTP (filezilla)de WP admin folder overgeschreven op de bestaande.

    Jammer genoeg is het hiermee niet opgelost, ik krijg nog steeds dezelfde foutcode’s zoals eerder beschreven.

    Help???

5 reacties aan het bekijken - 1 tot 5 (van in totaal 5)
  • Het onderwerp ‘Kan de pagina's niet meer bewerken’ is gesloten voor nieuwe reacties.