diff --git a/file_entity.api.php b/file_entity.api.php
old mode 100644
new mode 100755
index 132186c..99aa893
--- a/file_entity.api.php
+++ b/file_entity.api.php
@@ -27,7 +27,7 @@
  *     ['bundles'][TYPE]['admin'] entry for the 'file' entity type, thereby
  *     controlling the path at which Field UI pages are attached for this file
  *     type, and which users may access them. Defaults to attaching the Field UI
- *     pages to the admin/config/media/file-types/manage/TYPE path and requiring
+ *     pages to the admin/structure/file-types/manage/TYPE path and requiring
  *     'administer site configuration' permission. See hook_entity_info() for
  *     details about this array. This value can also be set to NULL to suppress
  *     Field UI pages from attaching at all for this file type.
diff --git a/file_entity.module b/file_entity.module
old mode 100644
new mode 100755
index d5abdb2..2af80a7
--- a/file_entity.module
+++ b/file_entity.module
@@ -67,7 +67,7 @@ function file_entity_hook_info_alter(&$info) {
  */
 function file_entity_help($path, $arg) {
   switch ($path) {
-    case 'admin/config/media/file-types':
+    case 'admin/structure/file-types':
       $output = '<p>' . t('When a file is uploaded to this website, it is assigned one of the following types, based on what kind of file it is.') . '</p>';
       return $output;
   }
@@ -85,14 +85,14 @@ function file_entity_access($op) {
  */
 function file_entity_menu() {
   // File Configuration
-  $items['admin/config/media/file-types'] = array(
+  $items['admin/structure/file-types'] = array(
     'title' => 'File types',
     'description' => 'Manage settings for the type of files used on your site.',
     'page callback' => 'file_entity_list_types_page',
     'access arguments' => array('administer site configuration'),
     'file' => 'file_entity.admin.inc',
   );
-  $items['admin/config/media/file-types/manage/%'] = array(
+  $items['admin/structure/file-types/manage/%'] = array(
     'title' => 'Manage file types',
     'description' => 'Manage settings for the type of files used on your site.',
   );
@@ -317,9 +317,9 @@ function file_entity_entity_info_alter(&$entity_info) {
       // Provide a default administration path for Field UI, but not if 'admin'
       // has been explicitly set to NULL.
       'admin' => array(
-        'path' => 'admin/config/media/file-types/manage/%',
-        'real path' => 'admin/config/media/file-types/manage/' . $type,
-        'bundle argument' => 5,
+        'path' => 'admin/structure/file-types/manage/%',
+        'real path' => 'admin/structure/file-types/manage/' . $type,
+        'bundle argument' => 4,
       ),
     );
     $entity_info['file']['bundles'][$type] = array_intersect_key($info, drupal_map_assoc(array('label', 'admin')));
diff --git a/file_entity.tokens.inc b/file_entity.tokens.inc
old mode 100644
new mode 100755
index 4ace9c5..539d524
--- a/file_entity.tokens.inc
+++ b/file_entity.tokens.inc
@@ -101,7 +101,7 @@ function file_entity_tokens($type, $tokens, array $data = array(), array $option
           $replacements[$original] = (int) $count;
           break;
         case 'edit-url':
-          $replacements[$original] = url('admin/config/media/file-types/manage/' . $file_type['type'] . '/fields', $url_options);
+          $replacements[$original] = url('admin/structure/file-types/manage/' . $file_type['type'] . '/fields', $url_options);
           break;
       }
     }
