shepsta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: open link in new window/tab does not workWhere exactly are you seeing it not working?
http://k12edtalk.com/2015/05/curmudgucation-blog-makes-my-must-read-list/I look at the link “The Ballast”
Formatting correctly. Opens in new window in Firefox and IE.
Thinking its your PC, not the site.
Forum: Fixing WordPress
In reply to: Multiple File Uploading issuesDiscovered the solution to this problem, or more rather a workaround. What I discovered is that GoDaddy’s servers were lagging out trying to crunch and create the thumbnails. I didn’t notice before, but I was creating 9 thumbnails per image due to the theme and a gallery plugin.
I also discovered their servers are set to cut a script after 3:30 if its using 100% of any resource. So if it was in the middle of crunching, the server would kick out an error page. either 404 or connection was reset.
For some reason, their servers were also having a big problem using Imagemagick for image editing. One image would take upwards of 20 seconds to make all the thumbnails.
I commanded wordpress to prioritize GD by adding this code to the functions
add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }Imagemagick would use 100% CPU trying to process images, whereas GD uses 100% I/O and no CPU.
After hashing out the themes thumbnails that weren’t being used, and with the changes to the image editor, I was able to upload over 300 images a shot rather than the previous 15 images.Its not a cure, but hopefully my trials help someone else.
Forum: Fixing WordPress
In reply to: Images on wp-uploads but can't see them on websiteif you still have access to the wp website address , should use a proper moving plugin. all-in-one wp migration, etc. Trying to copy/paste stuff, you’re going to loose the battle correcting the addresses in the sql db.
Forum: Fixing WordPress
In reply to: Can't find large files uploaded via FilezillaWordPress doesn’t scan directories for media. You can try using a plugin called “add from server” which will add another option to the media menu.