Eric Murphy
Forum Replies Created
-
Forum: Plugins
In reply to: [B09 Link to Existing Content] Inserting Links doesn't workStill doesn’t work, the list is still empty. I used the ltec.wplink.js from your link.
Forum: Plugins
In reply to: [B09 Link to Existing Content] Inserting Links doesn't workIt’s caused by this:
TypeError: inputs.url.focus(…)[0] is undefined
ltec.wplink.js:318I think it’s a rather easy solution:
Simply add a checkbox
[x] Send output to the_content filterOr simply add a hook, e.g.
the_q2w3_content.I don’t want to use any php. I want to use your PHP free version.
I simply want to use
[foo]
in your q2w3 manager and set LOCATION to FOOTER/WIDGET (or whatever).I just want that your plugin runs its own hooks or runs
the_contentorwidget_textbefore outputting.Because I want to write a plugin that is displays the current time with the help of a shortcode like
[currenttime]But since hooks are missing it displays only
[currenttime]
instead of
12:34Forum: Plugins
In reply to: [Wordpress Font Uploader] Crashes WordPress Multisite WPMSYes, without “network activate” it works.
However trying your plugin out it seems that it uploads it not into the media upload folder
“http://domain.com/subblog/files/2013/06/font.ttf”but instead into
“http://domain.com/subblog/wp-content/uploads/fonts/font.ttf”
which is wrong because such a subfolder does not exist.
I also don’t like that you don’t announce which folder the font has been uploaded to.
Additionally I don’t like that your plugin’s name is “Font Uploader”, yet your plugin not only uploads fonts, but also allows to apply the uploaded fonts (and those fonts ONLY) to elements.
That way, one needs to use different plugins (i.e. your plugin and someone else’s plugin) depending on whether one wants to set, say, the header with font hosted by Google or a with an uploaded font or with a standard font like “Arial” or a font supplied by the theme.
You should stick to the font uploading capability only or make two plugins.
Forum: Plugins
In reply to: [Wordpress Font Uploader] Crashes WordPress Multisite WPMSLet me also add, that only the network admin pages are affected.
The normal admin pages and the normal web pages are not affected.
Forum: Plugins
In reply to: [Wordpress Font Uploader] Crashes WordPress Multisite WPMSThe newest = 3.5.2
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksAnd you still misunderstand.
What I suggest is to change
href='" . urldecode($rk->referrer) . "'>"to
href='http://anonym.to/?" . urldecode($rk->referrer) . "'>"THAT IS ALL.
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksWhat?
CNN.com will not know that I came from mywebsite.com.
CNN.com will only know that I came from “http://anonym.to/
And this is the whole purpose: CNN.com does not know what site I originally came from.
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksI still don’t know whether you understand what my suggestion is about.
What I propose is a harmless modification of your plugin, that requires 10 seconds of your time.
It doesn’t make any changes to $ _SERVER [‘HTTP_REFERER’] nor to the database nor does it require additional redirection scripts.
I merely suggest that you prepend outgoing links (i.e. from my blog) with “http://anonym.to/?”
If I have a website (mywebsite.com) and someone, let’s say CNN, links to me then CURRENTLY your plugin (on the “Latest Referrer” tab) lists “cnn.com” as the referrer and links to “http://www.cnn.com”.
What I suggest is that it doesn’t link to “http://www.cnn.com” but to “http://anonym.to/?http://www.cnn.com”.
That’s all.
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksThen simply change
<td><a target='_blank' href='" . urldecode($rk->referrer) . "'>" . urldecode($rk->referrer) . "</a></td>to
<td><a target='_blank' href='http://anonym.to/?" . urldecode($rk->referrer) . "'>" . urldecode($rk->referrer) . "</a></td>No change to the database needed, merely to the output.
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksSimply prepend “http://anonym.to/?” to every link under the “Latest Referrers” tab.
Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksI give you another example:
A spammer sends me a fake referrer link.
By clicking on it the spammer knows that his link worked and hence will send me 100s more.Forum: Plugins
In reply to: [StatPress Visitors] Suggestion: Anonymize clicking on the referrer linksBecause it shouldn’t be anyone’s business to know that a blog owner has visited them, what IP the blog owner has, what URL the blog owner comes from.
Take for example your own plugin. I as the blog owner click on a referrer link (e.g. maliciouswebsite.com) and then the owner of maliciouswebsite.com knows that I come from http://myblog.com/wp-admin/admin.php?page=statpress-visitors/admin/luc_admin.php
He now knows what IP I have and knows that I use statpress and if statpress has some vulnerability then lord knows what he can do with my IP.