gnosis_wp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SQL InjectionsThanks, James. In regards to Retina, our IT folks, super-informed, stand behind it. I have always had some issues with the ‘Hardening WordPress’ codex page. I wish it was more prescriptive, especially with file permissions.
Forum: Fixing WordPress
In reply to: SQL InjectionsCan anything be injected via Contact Form 7:
https://wordpress.org/plugins/contact-form-7/Retina said that was a point of vulnerability. However, nothing is written to the database via the plugin only emailed, so this is confusing.
Retina is:
https://www.beyondtrust.com/products/retina-network-security-scanner/Forum: Plugins
In reply to: [Code Embed] No Custom Fields meta box in my themeThanks.
Forum: Fixing WordPress
In reply to: Chrome on iPADActually, it seems resolved if I place the following in the root .htaccess file:
<IfModule headers_module>
BrowserMatch MSIE ie
Header set X-UA-Compatible “IE=Edge,chrome=1”
</IfModule>Will continue to test
Forum: Fixing WordPress
In reply to: Chrome on iPADFinally figured out the Chrome on iPAD issue.
I have the following code in the header:
<meta http-equiv=”X-UA-Compatible” content=”IE=edge” /> So the site renders completely in all versions of IE.If I remove it, the site renders correctly in Chrome on the iPAD, but poorly in some versions of IE. Please see incorrect rendering in IE:
http://library.gc.cuny.edu/aleph/IE.jpgCorrect rendering:
http://library.gc.cuny.edu/aleph/correct_rendering.jpg
(includes code)Do you know how I can insure correct rendering in both IE and Chrome in iPAD?
Forum: Fixing WordPress
In reply to: Chrome on iPADHave a few times. I wish there was a way to install earlier versions of apps. We cannot control which browsers users use.
Using a child theme?
look at links above. With the exception of a few files, I set almost all the files to chown user:apache -R /wordpress and chmod 755 -R /wordpress. But this might be a red-herring.
Did you look at the other solutions? Also, what do you have your file permissions set as?
Did you remove white space after the last php bracket?
Do you use a child theme? If so, did you look at custom functions file?
Many of the forums suggested analogous solutions similar to:
http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/
http://premium.wpmudev.org/forums/topic/error-in-generated-sitemapxml-google-webmaster-tool-and-browser-check
http://www.piotrkrzyzek.com/wordpress-remove-blank-line-from-rss-feed-wordpress-error-on-line-2-at-column-6-xml-declaration-allowed-only-at-the-start-of-the-document/
https://www.youtube.com/watch?v=PGathYQHHzkSo I removed all the line-breaks after the last php bracket in custom-functions.php and it seems to have resolved the issue, but still not sure.
I removed all the white space from my theme functions file and it seemed to have resolved the issue.
Thank you. Appreciate it.
Forum: Plugins
In reply to: [User Role Editor] User Role Editor=>how to add a capability not listed?I see add_menu_page:
function add_plugin_page(){
add_menu_page( ‘Announcement Bar’, ‘Announcement Bar’, ‘manage_options’, ‘announcement-bar’, array( $this, ‘create_admin_page’), plugins_url( ‘announcement-bar/themify/img/favicon.png’ ) );add_menu_page(‘themify’, $theme->display(‘Name’), ‘manage_options’, ‘themify’, ‘themify_page’, get_template_directory_uri().’/themify/img/favicon.png’, 50);
and add_submenu_page:
add_submenu_page(‘themify’, $theme->display(‘Name’), __(‘Settings’, ‘themify’), ‘manage_options’, ‘themify’, ‘themify_page’);
add_submenu_page(‘themify’, $theme->display(‘Name’), __(‘Documentation’, ‘themify’), ‘manage_options’, ‘themify_docs’,So i assume, the capability is manage options and themify docs?
Forum: Plugins
In reply to: [User Role Editor] User Role Editor=>how to add a capability not listed?where is the capability ID obtained?