Title: deez717's Replies | WordPress.org

---

# deez717

  [  ](https://wordpress.org/support/users/deez717/)

 *   [Profile](https://wordpress.org/support/users/deez717/)
 *   [Topics Started](https://wordpress.org/support/users/deez717/topics/)
 *   [Replies Created](https://wordpress.org/support/users/deez717/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/deez717/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/deez717/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/deez717/engagements/)
 *   [Favorites](https://wordpress.org/support/users/deez717/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share Button] Total Share 0000 being posted in Excerpts/Facebook](https://wordpress.org/support/topic/total-share-0000-being-posted-in-excerptsfacebook/)
 *  [deez717](https://wordpress.org/support/users/deez717/)
 * (@deez717)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/total-share-0000-being-posted-in-excerptsfacebook/#post-6041205)
 * Why not try something like this?
 *  `<?php echo '<p>' . substr(get_the_excerpt(), 4, 1000) . '</p>'; ?>`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Exports and Reports] Export URL Says "File Not Found."](https://wordpress.org/support/topic/export-url-says-file-not-found/)
 *  [deez717](https://wordpress.org/support/users/deez717/)
 * (@deez717)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/export-url-says-file-not-found/#post-6170826)
 * I had the same error; to fix it I modified the Admin.class.php file located in
   the directory at wp-content/plugins/exports-and-reports/wp-admin-ui/.
 * **Look for this line:**
 *     ```
       $this->export_url = $this->base_url.'?download=1&_wpnonce='.wp_create_nonce('wp-admin-ui-export').'&export=';
       ```
   
 * **Below that line I added the following (using mysite.com for this example):**
 *     ```
       $this->myexport_url = 'http://mysite.com/wp-content/exports/';
       ```
   
 * **Then I took this block for each file type (CSV, XML, JSON, etc…CSV block featured
   here)**
 *     ```
       $this->message('<strong>Success:</strong> Your export is ready, the download should begin in a few moments. If it doesn\'t, <a href="'.$this->export_url.urlencode($export_file).'" target="_blank">click here to access your CSV export file</a>.<br /><br />When you are done with your export, <a href="'.$this->var_update(array('remove_export'=>urlencode($export_file),'action'=>'export')).'">click here to remove it</a>, otherwise the export will be deleted within 24 hours of generation.');
                       echo '<script type="text/javascript">window.open("'.$this->export_url.urlencode($export_file).'");</script>';
       ```
   
 * **And replaced each instance of this:**
 *     ```
       .$this->export_url.urlencode($export_file)
       ```
   
 * **With:**
 *     ```
       .$this->myexport_url.urlencode($export_file)
       ```
   
 * **So it ended up looking like this:**
 *     ```
       $this->message('<strong>Success:</strong> Your export is ready, the download should begin in a few moments. If it doesn\'t, <a href="'.$this->myexport_url.urlencode($export_file).'" target="_blank">click here to access your CSV export file</a>.<br /><br />When you are done with your export, <a href="'.$this->var_update(array('remove_export'=>urlencode($export_file),'action'=>'export')).'">click here to remove it</a>, otherwise the export will be deleted within 24 hours of generation.');
                       echo '<script type="text/javascript">window.open("'.$this->myexport_url.urlencode($export_file).'");</script>';
       ```
   
 * Hope this helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My YouTube Channel] DeviceSupport "bug" in v2.x (pre-3.0 announcement)](https://wordpress.org/support/topic/devicesupport-bug-in-v2x-pre-30-announcement/)
 *  [deez717](https://wordpress.org/support/users/deez717/)
 * (@deez717)
 * [11 years ago](https://wordpress.org/support/topic/devicesupport-bug-in-v2x-pre-30-announcement/#post-6101781)
 * I just wanted to say thank you for providing such on the spot support. The wp-
   config/alpha package worked perfectly for me! A fix that took minutes!

Viewing 3 replies - 1 through 3 (of 3 total)