transcendev
Forum Replies Created
-
Forum: Plugins
In reply to: [TD Admin Lock & Load] Membership sitesSorry, I didn’t see your post until now. You may have already tried this, but if not, I’m afraid it’s not going to solve your problem. This plugin will help prevent unauthorized access to the wp-admin login screen, but won’t prevent fake registrations.
Forum: Plugins
In reply to: [TD Ticket System] Can't loginShould be set to “Post name”, the “default” setting won’t work.
Forum: Plugins
In reply to: [TD Ticket System] Ticket loginI’ll keep it in mind for a future upgrade, but it currently does not do that.
Forum: Reviews
In reply to: [TD Ticket System] Easy setup!Thank you very much for the positive feedback!
Forum: Plugins
In reply to: [TD Ticket System] php mail functionThanks for sharing that. I should’ve known WordPress provided an email wrapper function. I’ll switch it to that by default in a future update.
Forum: Plugins
In reply to: [TD Ticket System] Can't loginDo you have the WordPress permalinks setting turned on?
The lighttpd server might have a lot to do with it.
Any way you can give me FTP access to just the ticket system plugins folder? I would welcome the opportunity to try and fix the issue. Understandable if you can’t. I run Linux machines in my office so I could probably install lighttpd locally and see if I can duplicate the issue that way.Do you know what version of PHP the server is running? That might have more to do with it than the server software.
The heredoc syntax is used similarly on the admin side to implement javascript. Do you see issues with that as well or is it only on the user end?
Found a free theme called Montezuma, hopefully the same one. Doesn’t seem to be any issue:
http://65.60.2.210/~mikestes/ticket-system/Do you have a link to your site that I could check out? Wondering if viewing the source would shine any light on the issue.
Is that a free theme? I’ll see if I can find and install it on my test blog and maybe I can duplicate the issue.
I’ve got to imagine it’s something within the theme causing the issue since it seems to work fine otherwise. Do you have debugging turned on on your WP install?The unexpected end of file error would suggest you might have left a bracket when you removed the function. Did you cut from line 520 to line 585?
Can you verify that the Montezuma theme has wp_footer() in the footer template? I’m wondering if it’s missing, as that is the hook that the particular function is added into. If that’s missing, then that function would go missing. I can’t imagine why else what would occur.
You might try changing line 52 in the plugin so that it hooks on the wp_head function instead and see if that fixes the issue.
so change:
add_action('wp_footer', 'td_tts_userAjax');to:
add_action('wp_head', 'td_tts_userAjax');Sorry you’re having trouble. Just a few questions.
When are you seeing that error? From within the admin panel or on the user end?What other plugins do you have installed?
Does your WordPress theme have the wp_footer() function in it?
The wp_enqueue_script function is useful for including commonly used javascript or jQuery modules that might end up as part of other plugins, but not particularly necessary for custom functions such as the ones in question. I can’t imagine anyone would likely name any javascript functions with that exact name.
Forum: Reviews
In reply to: [TD Ticket System] Incredibly UsableThank you very much for the positive review Dave! I hope to have some updates for the plugin very soon. Be sure to post any additional ideas for future updates in the forum. Thanks again.
Forum: Reviews
In reply to: [TD Ticket System] Too Many PHP ErrorsThank you kindly.
Forum: Reviews
In reply to: [TD Ticket System] Too Many PHP ErrorsI appreciate your feedback. If you can share the errors it would be extremely helpful.
Forum: Plugins
In reply to: [TD Ticket System] Error during activationI’m perplexed. The error would suggest there might be some whitespace after a heredoc declaration…but I just checked and that’s not the case.
I just delete the line-feed on that line and the next and re-entered. I’ll try re-committing that and we can see if it helps fix the issue.