jackrugile
Forum Replies Created
-
Forum: Plugins
In reply to: [Allow Numeric Slugs] 404 for Pages Using Numeric Titles/URLs+1 I’m getting the same behavior.
Forum: Plugins
In reply to: [Thumbnail Upscale] Upscale crop position?Late reply, but I found the solution for accounting for crop positions. I submitted it to GitHub here: https://github.com/jackrugile/wp-thumbnail-upscale/commit/eb48b515ed0ad58b784c3e146403f59262046553
Add this directly before the return of the main function.
if(is_array($crop)) { if($crop[ 0 ] === 'left') { $s_x = 0; } else if($crop[ 0 ] === 'right') { $s_x = $orig_w - $crop_w; } if($crop[ 1 ] === 'top') { $s_y = 0; } else if($crop[ 1 ] === 'bottom') { $s_y = $orig_h - $crop_h; } }Forum: Plugins
In reply to: [Manual Image Crop] Error after deactivating/deleting and reinstalling.Same issue for me as well. Version 3.9.2. All seems to work fine until I go to change anything on the options page.
Screenshot here: http://i.imgur.com/ea1D5da.jpg
Forum: Fixing WordPress
In reply to: Intermittent Failed to Open Stream After Move to Root – GodaddyYeah, I’ve always had this issue, specifically with GoDaddy sites. It will be finicky for an hour or so, then it’s fine. I wish there was a better way to go about it. I usually just put up a nice looking down for maintenance page until I know it is fully settled. If anyone has a way to prevent this, I’d love to know.
Forum: Fixing WordPress
In reply to: Bug: Media Library loses focus on drag and drop uploadsYeah, this is a really annoying bug, affecting me as well. The only temporary fix that works for me is this:
1. When the window becomes unresponsive, don’t leave the window or tab.
2. Instead, start to drag another image from your filesystem onto the media uploader, but don’t drop it. Bring it back to your file system and let go. This will trigger the drag and drop overlay open/close again and hopefully let you get the proper focus again.
3. Prosper.Nothing like good old user error bringing down the overall rating of a plugin. The settings panel is located under Settings > Password Protected.
Forum: Plugins
In reply to: [Fotobook] CRON job not updating albumHey, I know this is a late reply, but I was having the same problem and finally figured it out. Hopefully the solution is still relevant to you.
At first I was having trouble with getting my CRON job to even run the correct file. Then I was having trouble with CRON job that had parameters in the URL.
So for starters, I know CRON job commands can vary from host to host. For Hostgator though, I use the following command:
php -q /home/USERNAME/public_html/wp-content/plugins/fotobook/cron.php >/dev/null 2>&1Instead of using the parameters that are given in the URL on the plugin game, I just hard code those values into the cron.php script.
This:
if(isset($_GET['update']) && isset($_GET['secret']) && $_GET['secret'] == get_option('fb_secret')) { echo 'Updating Fotobook (be patient)...'; ob_flush(); flush(); $facebook = new FacebookAPI; if($facebook->link_active()) $facebook->update_albums(); echo 'Done'; } else { echo 'Invalid URL'; }Becomes this:
$secret = 'YOUR_SECRET_NUMBER_HERE'; if($secret == get_option('fb_secret')) { echo 'Updating Fotobook (be patient)...'; ob_flush(); flush(); $facebook = new FacebookAPI; if($facebook->link_active()) $facebook->update_albums(); echo 'Done'; } else { echo 'Invalid URL'; }Let me know if you have any questions or if that doesn’t work.