PressPage Entertainment Inc
Forum Replies Created
-
Ensure that you are not mixing HTTP and HTTPS (secured and non-secured) links. You can verify by looking at the debug terminal of your web browser (F12 typically). If you are using Cloudflare for your CDN, ensure your SSL Encryption is in Full mode (typically defaults to Flexible mode). Enable SSL recommender on cloudflare and Always use HTTPS.
Forum: Plugins
In reply to: [Hide Featured Image] Plugin not workingI found the featured image is not hidden on WP 4.7.1, but adding the following line in your plugin makes it work on 4.7.1
.single-featured-image-header img{ display: none !important; }
so the style will be,
<style>
.has-post-thumbnail img.wp-post-image{ display: none !important; }
.single-featured-image-header img{ display: none !important; }
</style>Forum: Plugins
In reply to: [SQLite Integration] Can't edit database fileYou can download this utility to browse and edit SQLite database files,
Forum: Fixing WordPress
In reply to: SELECT SQL_CALC_FOUND_ROWS causing crashesThere are many resultions to this problem to prevent this query without modifying the core. Here is the simplest and most straightforward:
Hook into pre_get_posts, then in the hook function invoke the set method on the query object passing ‘no_found_rows’ to TRUE.
In code,
The hook,
add_action(‘pre_get_posts’,’no_rows_found_function’);The hook function,
function no_rows_found_function($query) {
$query->set(‘no_found_rows’,true);
}That’s it!
Forum: Plugins
In reply to: [Plugin: Smarty for WordPress] Some issuesSmarty for WordPress permits loading Smarty Template files within WordPress post/pages.
wp_head() and wp_footer() are used in your WordPress theme development, which by default you would still use.
To use your Smarty templates during your theme development, you must code your theme to invoke smarty_get_instance method from the Smarty for WordPress plugin and load up your Smarty templates when you need based on your requirements
Forum: Fixing WordPress
In reply to: can’t connect to the plugins.svn.wordpress-serverI was having to same problem and is the way Icorrected it.
1. Open TortoiseSVN -> Repo-browser (and wait for connect and load)
2. Now attempt to commit your changesShould now work
Forum: Fixing WordPress
In reply to: [Plugin: Useful 404’s] email notificationFound a problem, will break my links or redirect to a different page. Disabled the plugin and links are back to normal.
Forum: Fixing WordPress
In reply to: [Plugin: Useful 404’s] email notificationI am getting numerouse email notifications on broker links, though the site is operating normally. For example, I get a notification on an image that is display properly on the page. Why would I get so many links reporting like this?
Forum: Plugins
In reply to: [Plugin: Houdini] Plugin is uselessA method to combat screen scrapers would be to transform/render the static text into images, similar process as some captcha images are rendered.
Forum: Plugins
In reply to: [Plugin: Houdini] Plugin is uselessThanks to this blog, https://fourisland.com/blog/and-like-magic-nothing-happens/ addresses a few browser security breaches. Houdini addresses these breaches beginning in version 1.3
Forum: Plugins
In reply to: [Plugin: Houdini] Plugin is uselessThe disappearance feature only works with IE. Using Firefox, Safari, and Chrome, when more than 250 characters are selected, the selected text automatically is deselected. This is still an annoyance toc oontent stealers when they do not expect this feature! An update is forthcoming for the Admin to assign the number of selected characters before the text is deselected.
Thanks for your comments.
Keep the comments coming!Forum: Plugins
In reply to: [Plugin: Houdini] View source?Houdini is only a deterant as so claimed. If you want more security, then you need to write your own browser and remove the security holes that already exist, then you have to remove the existing browser from your operating system, though this is feasibile to do, the problem arises to getting market acceptance and market share or your browser would be useless. A KidSafeWebBrowser was first developed in January 2000 but the project was halted for this vary reason.
There are also other wordpress plugins that address security and plagiarism, and though not verified, houdini used in conjuncion with these other plugins is better than using houdini alone. The complexity of the internet presents itself to more questions than answers regarding security. Houdini is just another tool to use in your arsanal against security breaches.
For an analogy, if you live in a neighbor with a higher than normal crime rate, would you not want to have extra security on your home by installing additional locks or a security alarm system? Is this not the same for your web home?
Thanks for your comment.
Keep your comments coming?Forum: Plugins
In reply to: [Plugin: Houdini] View source?The Tip on the Tip & Technique page for disabling the context menu popup has been verified to prevent the context menu from popping up on both Internet Explorer and Firefox.
Thanks for your comment.
Keep the comments coming?Forum: Plugins
In reply to: [Plugin: Houdini] View source?The Tip & Technique page is from the Admin login dashboard, Scroll down to the Settings menu and look for Houdini, then click on Houdini.
Forum: Plugins
In reply to: [Plugin: Houdini] Plugin is uselessYour are very knowledgeable. If someone is really determined to steal your content, no security program will stop them. Houdini deters the theft and does not prevent theft as claimed, and thus is not useless. However, I welcome the challenge to make Houdini better with the Screen scraper program.
Thanks for your comment.
Keep the oomments coming?