tgelles
Forum Replies Created
-
Just emailed!
Thanks for the prompt response!
Unfortunately, when I attempt to activate the patched version of the plugin it triggers a fatal error:
Fatal error: Uncaught Error: Undefined constant “WSAL_CONN_PREFIX”
in /[…]/wp-content/plugins/wp-security-audit-log/classes/Migration/class-migration.php on line 581Forum: Fixing WordPress
In reply to: Pagination Disappearing for PostsUpdate: I reverted to stock WP code for my index.php file (link to repo), and now what happens on the index.php page is the “Older Posts” link periodically does not appear–you need to refresh 3-5 times.
However, if on /page/2/ (or /3/ etc), the ‘Newer Posts’ always appears.
So pagination can always go from back, but not up…?
Bump as I’d also like to know about this. All I want on my front-page.php is a simple WP_Query where I display something like:
<h1><a href="<?php the_permalink();?>"><?php the_title();?></a></h1> <h2>THE EVENT START TIME</h2> <p><?php the_content(); ?></p>
Similar to jazibobs, I can get the standard functions but nothing beyond that. This shouldn’t be this difficult.
- This reply was modified 8 years ago by tgelles.
Additional information: I currently do not have IP address in the “Server IP Address: ” field. Oops.
Will adding the server IP address solve this issue, or negatively affect the 20 other sites mapped to various subdomains?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Limit all the CSS in page head ?Sorry, meant line 44. Screenshot: “
- This reply was modified 8 years, 2 months ago by tgelles.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Limit all the CSS in page head ?Hi Benjamin,
Here’s an example of the events page, but the code is on every page on line 43 https://cogsci.jhu.edu/events when you view source
- This reply was modified 8 years, 2 months ago by tgelles. Reason: specified events page
Forum: Fixing WordPress
In reply to: WordPress 4.6 has caused significant issues.I am also running CentOS 6.8, Apache/2.2.15 (Red Hat)
Forum: Fixing WordPress
In reply to: WordPress 4.6 has caused significant issues.I’ve been having the same exact issues as well. I too thought it was a caching issue, so disabled W3TC plugin + suspended transients, but it’s still doing the same thing.
running PHP 5.6.22 on a 64BitOS
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Memory Leak with Multisite?No, but I certainly will. There an amount you’d recommend?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Memory Leak with Multisite?Believe its for entire multisite network, as per the wp-config:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
The network is more than 15 sites; I’m just using the plugin for about that many
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Switching Date/View throwing 403 errorFigured it out. My .htaccess uses the 6G Firewall, and was thus forbidding any urls with a ~ in them:
# 6G:[REQUEST STRINGS]
<IfModule mod_alias.c>
RedirectMatch 403 (?i)(~|`|<|>|:|;|,|%|\\|\s|\{|\}|\[|\]|\|)
</IfModule>Removing the ~ worked.
Forum: Plugins
In reply to: [Zurb Foundation 5 Clearing Gallery] Working on Mapped Domains?So I discovered a function that changes the uploads directory:
function my_mapped_upload_url() { return get_site_url() . '/wp-content/uploads' ; } add_filter( 'pre_option_upload_url_path', 'my_mapped_upload_url' );
Would recommend anyone who has a similar setup to do the same.
Is working now!
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Gallery ShortcodesMy apologies, we’re evidently using a custom plugin that replaces default [gallery] shortcode to use Foundation’s clearing javascript.
What’s happening is this line of code in said plugin:
wp_get_attachment_image_src($id, 'full', false, false);
. Thewp_get_attachment_image_src
function is serving the image from the host.I realize this is outside the scope of the plugin’s support, but think it’s worth sharing in case anyone else encounters this problem.
Forum: Plugins
In reply to: [Easy Foundation Shortcode] Multisite Install with Own CSS & JS Theme FIlesThink I figured it out:
On line 41 of
osc_foundation_shortcode.php
change:add_action('admin_menu', 'osc_efs_add_admin_menu');
to
add_action('network_admin_menu', 'osc_efs_add_admin_menu');
And the EFS appears in the network admin menu