Ken Cook
Forum Replies Created
-
Finally had to return to the old server, remove WF from there, then re-copy to the new server.
Edited – See my topic from a couple of weeks ago. Site failed after moving to a new server.
I did that a few days ago @wyfann – I’ve used the find command to locate any of these files, checked php.ini for that account, created a php.ini in that account and still receiving the issue. If I’m grepping, for what should I grep to find the relevant entry?
Check your server and make certain you are the owner and a group member of the files and directories where your WordPress install is living. For Linux command line you can navigate to your directory and do an
ls -lcommand. If your directory doesn’t belong to your account that will cause the same situation. To remedy it simply perform achowncommand, thusly:
chown user:group -R mydirectoryWhere user and group are the appropriate username and groupname and mydirectory is the folder where your WordPress installation exists.
Forum: Plugins
In reply to: [contact form 7 pdf extension] Formating issue?I am still waiting for a response on this one.
All paragraphs and
<LI>are losing the line breaks.- This reply was modified 9 years, 1 month ago by Ken Cook.
Forum: Plugins
In reply to: [The Events Calendar] Modal popup on mouseover in calendar viewForum: Plugins
In reply to: [The Events Calendar] Modal popup on mouseover in calendar viewI see your answer on your site to nermoz. Hopefully you will have a fix soon and let us know.
- This reply was modified 9 years, 6 months ago by Ken Cook. Reason: Added a link to the website
Found it in commentmeta -> yasr_pro_visitor_review_rating – but I still wonder about your reasoning for not continuing to store the ratings in yasr_log. Was there a special purpose there?
I had already written an extender plugin. I was just hoping you had something ready to go but it only took a few minutes to write the extension.
Forum: Plugins
In reply to: previous_post_link inside of a function?Ah, smack my head, get_previous_post_link() – I was using the wrong hook.
Forum: Hacks
In reply to: Output location of results from filterHmm, changed to
add_actioninstead ofadd_filterusing the code below. The only output I get is the hyphen – which is exactly where I want it to be. What am I missing on the links to keep them from parsing?function prevnext( $content ) { $content .= '<div>' . previous_post_link() . '-' . next_post_link() . '</div>'; return $content; } add_action( 'the_content', 'prevnext', 4 );Forum: Hacks
In reply to: Output location of results from filterI should have included in the original post I had already adjusted the priority. It really is independent of any plugins – my foggy brain just included that bit about the plugin. What I’m wanting to do is essentially include the function as the last line of the content in the post() loop. In other words, regardless of how long the post is I want that function to be treated as the last lines of the post content.
I got it. Post edited.
Unfortunately I had to find another plugin for time constraints. I hope Daniel gets it all straightened out because I did use the plugin for quite some time with great results. Last week I switched to UpdraftPlus. But, Daniel when you get the issues resolved let us know. Thanks!
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] The pre tag bug report.You could create a class:
.my-code{ font-family: monospace; white-space: pre; }