wycks
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: add port number for connection type SSH2You can append your port number to your hostname under your SSH connection information.
For example: https://www.example.com:14999
This post comes up high in the Google.
Some popular GPL compatible licenses:
- GPL 2/3
- LGPLv2.1
- AGPLv3.0
- apache2
- ModifiedBSD
- CC0(creative commons universal)
- clearbsd
- freeBSD
- MPL-2.0 (mozilla)
- Python
- Ruby
- WTFPL (the best one lol)
- MIT (technically called the X11License)
There are many more see below.
Also some listed above are not compatible with both GPL’s , for example Apache is only compatible with GPL3, the details are in the link.
Sorry for the long wait, I have fixed it so it recovers the space at the top, also the state is now persistent on refresh.
Plugin has been re-written from scratch please report any new issues in a new thread or via github: https://github.com/wycks/WP-File-Permission-Check
Forum: Plugins
In reply to: [File Permissions & Size Check] Basic programming flaws in this pluginsI completely re-wrote the whole plugin from scratch because it was poorly done.
1. It now uses the build in Jquery UI.
2. It now shows modified time and does better iteration
3. It ignore more files and some directories (cached)I tested this on several installs of 3.5.1 so if you run into any problems with new version please let me know via github because I don’t check here as often: https://github.com/wycks/WP-File-Permission-Check
Forum: Plugins
In reply to: [File Permissions & Size Check] How to useYou click Settings –>File Chcker and then “Run File Check”
The name “tabs” is hardcoded in jquery.ui AND jquery.tools. I did not know these before and would have never chosen jquery.tools, so the plugin has to be rewritten to just use jquery.ui.
Forum: Plugins
In reply to: [File Permissions & Size Check] Basic programming flaws in this pluginsThe plugin was abandoned because jquery.ui and jquery.tools have hardcoded “tabs” in core, which caused conflicts for output, I was going to rewrite it and fix the above as well, but never got around to it, maybe one of these days.
Forum: Plugins
In reply to: [Disable WordPress Core Updates] PHP NoticesThanks Robert Chapin , unfortunately that does not remove it from pinging for updates on every re-refresh, as far as I can tell it will still check for updates. This might have to be a trac issue.
Trying to set
pre_site_transient_update_core
to remove pings results in:Trying to get property of non-object list_core_update( ) update-core.php:156
Forum: Plugins
In reply to: [Disable WordPress Core Updates] PHP NoticesAs Robert Chapin said the problem is that it will ping for updates on every load when these filters are set (so it seems).
I have used this to remove it it from pinging for updates and the nag screen,
function remove_core_updates(){ global $wp_version; return (object) array( 'last_checked' => time(), 'version_checked' => $wp_version, ); } add_filter('pre_site_transient_update_core', 'remove_core_updates'); add_filter('pre_site_transient_update_plugins', 'remove_core_updates'); add_filter('pre_site_transient_update_themes', 'remove_core_updates');
It still throws a PHP warning ““Trying to get property of non-object”, no idea how to fix that without changing core, also there seems to be no way to hook into
dismissed_updates
.Just letting you know upgrading this widget blew everything up on a site using WPML, all widgets disappeared.
Moving to Widget logic, don’t have time to fix.
A simple solution if you are getting this error is to make sure your custom post type is attached to at least 1 category or taxonomy.
This error occurs when you make a post that has no category if your code is using
get_category_parents
Sorry I didn’t see this, I will be fixing this soon and using wp’s built in java-script instead.
It does not work in 3.3 either.
I recommend “widget logic” or “widget display”
There is an easier work-around, make sure the ending [/tab] and the start of the next [tab] have no space.
So it should be :
[tab name=”name”]
some content with breaks is okas lonjg as the [tab] brackets have none
[/tab][tab name=”two”]
more content
[/tab][end_tabset]