Joe Hoyle
Forum Replies Created
-
Forgive me for my ignorance, but I really don’t see how I am incorrect here.
>> if ( ‘checkthedatabaseplease’ === 0 ) { which would return false, not true, since they are obviously not the same values.
That’s not what it does, it does
if ( 'checkthedatabaseplease' == 0 )
which is(bool) true
Forum: Plugins
In reply to: [GoSquared] [Plugin: GoSquared WordPress Plugin] PHP NoticesAhh cool, I searched on Google and didnt find it somehow, my bad!
We are indeed planning to add this.
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Doesn't work with 3.3Ahh, try switching to HTML editor in the main content area, then reload the page. For some reason, if you don’t have the TinyMCE Visual view set on teh main content, other TinyMCEs don’t work.
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Doesn't work with 3.3Hmm, I don’t remember having that issue no, so unless I made a fixed without thinking about it, I don’t think so.
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Doesn't work with 3.3I opened a pull request here: https://github.com/hunk/Magic-Fields/pull/157
clone from [email protected]:humanmade/Magic-Fields.git to use a version compatibile with 3.3
I have fixed the registration issue and the logout issue. Presuming this was due to the Facebook API changes.
Let me know if you want the fixes contributed, are you on GitHub, or I can send them manually?
Thanks
Hey guys,
Sorry about no replies, I never notice issues on the WordPress support forums. I run support from here: https://github.com/joehoyle/JH-Portfolio/issues
There is a new beta out today (0.9.7 Beta 2) which is made for WP 3. Grab that here: https://github.com/joehoyle/JH-Portfolio/downloads
Forum: Plugins
In reply to: [Plugin: Gurken Subscribe to Comments] Undefined variablesIn version 1.6, I added an isset() for the $_POST variable as it was creating a PHP Notice:
add_action('init', create_function('$a','global $sg_subscribe; if ( isset( $_POST[\'solo-comment-subscribe\'] ) && $_POST[\'solo-comment-subscribe\'] == \'solo-comment-subscribe\' && is_numeric($_POST[\'postid\']) ) {
Forum: Fixing WordPress
In reply to: HTTP Error: Could not open handle for fopen()Be sure to check whatever URL you are trying to get does not return a 404 header. I recently had the same problem – even though the page did contain content, it was returning a 404 header. This wasn’t an issue in any *nix environment, but it seems Win32 will not attempt to get the content if a 404 is returned.
Forum: Plugins
In reply to: [Plugin: JH Portfolio] Problems with activationHi Bagira,
Are you setting the error_reporting option sin your php.ini? Also, I recommend trying the latest Beta here: https://github.com/joehoyle/JH-Portfolio/downloads
If you continue to have problems, you will receive a response quicker if you file a bug at https://github.com/joehoyle/JH-Portfolio/issues as the WordPress Forums is not very good for bug tracking, I prefer to keep it all over on github
Thanks!
Joe
Forum: Plugins
In reply to: [Plugin: JH Portfolio] Problem with media galleryHi There,
Can you try the new beta here: https://github.com/joehoyle/JH-Portfolio/downloads and let me know if that help at all?
Also, you could file the error report here: https://github.com/joehoyle/JH-Portfolio/issues as the WordPress forums is not very good for bug tracking etc.
Thanks
Joe
Forum: Plugins
In reply to: [Plugin: JH Portfolio] Problems with activationHi Bagira,
Could you tell me what version of PHP you are running?
You are receiving all the notices because you have strict error reporting turned on in your php.ini . A lot of these notices have been fixed in version 0.9.6 (which release is imminent). As a quick fix you could turn off strict error reporting in your php.ini (strict reporting is not recommended for a production site anyhow)
Thanks!
Joe
Forum: Plugins
In reply to: [Plugin: JH Portfolio] Creating Custom Page TemplatesHi there,
I have written a brief guide and template function reference here: https://wiki.github.com/joehoyle/JH-Portfolio/creating-themes-code Feel free to ask any questions if you need help etc. You’d be better off creating an issue here: https://github.com/joehoyle/JH-Portfolio/issues as I get notifications to replies etc.
Thanks
Forum: Plugins
In reply to: [Plugin: JH Portfolio] Empty portfolio entriesHi There,
COuld you paste me the error is is given (delete your full server path is required). If you don’t mind creating an error report you could do so here: https://github.com/joehoyle/JH-Portfolio/issues (it’s a bit easier to track bugs etc on github)
Thanks!