KDawson
Forum Replies Created
-
Here are about 6 hours of the server log from the time the post went up: [ https://dawson.nu/misc/sah-log.txt ]. The post’s ID on the site is /prophylactics-therapeutics-and-astrazeneca/ and there are 77 GET requests for it in this time. Jetpack stats showed 3 visits by the end of this period. (The log has been edited to remove requests from my IP own address and that of the server itself, mostly WordPress plugins’ housekeeping.)
Yes, it is https://suddenlyathome.net [ 67.207.90.244 ] .
Understand. The numbers still do not come close to adding up. Example: I put up a new post about 6 hours ago and according to my log file, 98 requests for “GET /new-post-title…” have been served, of which 60 came from unique IP addresses. Does Jetpack perhaps throw out hits from Twitter and Facebook? There are 58 of those out of the 98. Each one represents a click from a friend / follower responding to my posting of the new post’s URL on those platforms.
Given all of the above, how many visits does Jetpack report for the new blog post?
3.
If this all sounds to you like it might represent some sort of problem, I will be happy to share log files with the Jetpack team.
Forum: Plugins
In reply to: [Meteor Slides] Meteor Slides: height wrong (too small)Josh — thanks for getting back. I solved the problem a few days ago… your final suggestion describes it. I deleted and re-uploaded the slides and all started working.
I have the slides described as the actual size of the images. That 242px figure represents only a max in a responsive design. The slides now resize with the window size as they should.
Forum: Themes and Templates
In reply to: [Responsive] One Post per Widget on front pageNo answers here, solved it myself. Thought I’d post the solution in case anyone searches for the problem in future.
Instead of displaying the most recent three posts one per widget on the front page, I made a child theme and edited sidebar-home.php to include only a single widget, not three. Made it full width by applying class col-940.
In Appearance > Widgets > Home Widget 1, I added the Recent Post widget and set it to display 3 posts.
Then in the child theme’s style.css I added a rule for
.widget_recent_entries li(the three recent post links are displayed in an unordered list inside adivwith this class):.widget_recent_entries li {<br /> display: block;<br /> width: 32%;<br /> float: left;<br /> }Now the three list items (recent posts) display three-across inside the single front-page widget. A little judicious tinkering with margins and width in the above CSS code assures that the solution works responsively on all displays.
Forum: Fixing WordPress
In reply to: Media upload – "HTTP Error" after upgrade to WP 3.8I’m the server host for EllenGTodd. Some more details: after the upgrade to 3.8, image upload wasn’t working at all, as many (not all) upgraders have found. Following a tip elsewhere on this forum I manually edited the database to fix the upload_path (in the options table) — it had gone blank.
After that we could upload photos. But still no thumbnails were generated.
Again following a tip elsewhere in this forum, I looked at the ImageMagick library that PHP uses. These files in the /wp-includes directory:
class-wp-image-editor-gd.php
class-wp-image-editor-imagick.php
class-wp-image-editor.phpall had different sizes than the equivalent files in a 3.6.1 install. I moved them aside and copied in the corresponding files from 3.6.1. Result: still no thumbnails (so I restored the 3.8 files).