polyfade
Forum Replies Created
-
Forum: Plugins
In reply to: [Link Library] Links don’t importAlso running import to grab all links from home page returns a bunch of errors:
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Unexpected end tag : div in Entity, line: 20 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 9 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Warning: DOMDocument::loadHTML(): Empty string supplied as input in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 4 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figcaption invalid in Entity, line: 4 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 12 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 36 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 70 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figcaption invalid in Entity, line: 70 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 125 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 125 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 125 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 141 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 149 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 149 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 161 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Warning: DOMDocument::loadHTML(): Tag figure invalid in Entity, line: 171 in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1692
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Notice: Undefined variable: newlinkid in /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php on line 1749
Warning: Cannot modify header information – headers already sent by (output started at /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php:1692) in /Users/me/Sites/sandbox/wp-includes/pluggable.php on line 1251
Warning: Cannot modify header information – headers already sent by (output started at /Users/me/Sites/sandbox/wp-content/plugins/link-library/link-library-admin.php:1692) in /Users/me/Sites/sandbox/wp-includes/pluggable.php on line 1254
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Low stock itemsNevermind, the Stock Management option has to be applied first under Woocommerce settings.
Forum: Plugins
In reply to: [Date Pagination] RSS number of postsUsing this plugin and setting the option to eliminate
/category/
in the permalink structure with Yoast SEO, it only syndicates the posts on the first past.Since I am using yearly number pagination, and only have 3 published posts this year, it’s only syndicating those 3 and not the remaining 17 posts (20 posts total as specified in WP settings).
If I don’t use eliminate
/category/
via Yoast, but specify a custom permalink structure.https://mysite.com/%category%/%postname%/
and add.
as the category base, the RSS will show all 20 posts, but this plugin’s pagination will lead to a 404 when clicking any of the pagination links. ??Forum: Plugins
In reply to: [Date Pagination] Add class namesThis works for applying the same class name for each next and previous, but looking to apply different class names to each.
function posts_link_attributes() { return 'class="link-more"'; } add_filter('next_posts_link_attributes', 'posts_link_attributes'); add_filter('previous_posts_link_attributes', 'posts_link_attributes');
I’ve found adding
ini_set('zlib.output_compression', 0);
to the wp-config file works best. Otherwise, addingzlib.output_compression = off
to php.ini had no effect since it was already set to off.Viewing my phpinfo.php file with
<?php phpinfo(); ?>
stated:`
zlib.output_compression: Off
zlib.output_compression_level: -1
lib.output_handler: no value
`
I’m getting this too. I added this to my php.ini file:
`zlib.output_compression = 0
zlib.output_compression_level = -1`
I’m still getting the message with PHP v7.2.
- This reply was modified 6 years ago by polyfade.
Forum: Plugins
In reply to: [Contact Form 7] Constant Contact integration – different lists?Without lists, Contact Form 7’s integration with Constant Contact is unusable. Please add this in.
Silly me – forgot to choose Home page template
Forum: Plugins
In reply to: [codoforum-sso] What is “must use” SSO by garth mortensen?Do you have Bluehost hosting? It looks like it was installed by them in order to force your site to update, then break everything.
Forum: Plugins
In reply to: [Simply Static - The WordPress Static Site Generator] wp-json directoryI also noticed the incorrect URL is specified in the files found within the comments and feed directories
Forum: Plugins
In reply to: [Autoptimize] Main is not definedURL is https://strandmagazine.com/
Thanks @optimizingmatters
I would pay for this plugin too. The developer, @miyarakira, has always responded quickly to my questions in the past and routinely updated this plugin. It seems strange there hasn’t been any movement for awhile now.
Forum: Plugins
In reply to: [Custom Content Shortcode] Retrieve Image from ACF Options PageThanks @robey. I don’t recall what I ended up doing, but at least in future I’ll know what to do.
A complete oversight on my part. I’m embarrassed to say, I didn’t bother looking at the theme since I use this WP environment for testing. But, when logged out, in the sidebar, there is meta widget which includes the login link. Doh!
- This reply was modified 7 years, 1 month ago by polyfade.
@gioni Yes, they do try to log into it through my custom url. “Attempt to log in with prohibited username.” Attempts to log in to the custom url happen many times per day.
Currently, I use this domain as a testing sandbox. There’s like a total of 2 pages. No one else but me knows the custom url.
The site is hosted with Fastcomet.com, but the DNS is pointed at Cloudflare.
A snapshot of the last 24 hrs:
184 Malicious activities mitigated
0 Spam comments denied
0 Spam form submissions denied
86 Malicious IP addresses detected
83 Lockouts occurredI’ve also encountered this issue with other sites using WP Cerber. But, since those are higher traffic sites on different servers with multiple users, I thought maybe it was more susceptible to this kind of problem.
BTW, I’ve run a thorough scan on my Mac for any kind of malware, but Bitdefender returned nothing.
- This reply was modified 7 years, 1 month ago by polyfade.