C8H10N4O2
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] W3 Cannot Verify Known Good Newrelic API KeyYou’re welcome, I’m glad I could help.
Forum: Plugins
In reply to: [WP Glossary] Errors with WordPress 3.6Hi,
I’m no longer using this plugin so I don’t know if the problem has been solved.
C8.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Cannot Verify Known Good Newrelic API KeyOk, so the answer is explained in another thread but this one is the one that gets returned on a google search so I will copy the response here :
Be sure you’re using your API Key, from New Relic, not your License Key. To get your API key in New Relic, go to Account Settings->Integrations->Data Sharing, enable API access, and you will then see the key.
Sure enough I was trying to validate the license key… It’s working with the API key, now.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Cannot Verify Known Good Newrelic API KeyHi, same thing here. When clicking the Verify Key button it says “The API key could not be verified” but I know my key is valid…
I just set up New Relic so maybe I just need to wait ?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search results and quotesWell that’s embarassing…
I did what you said and as you said, relevansii displayed “d étude”. But when checking the results, I found that the search went fine and that all 3 results are returned by relevansii…
WordPress search now also displays 3 results for the search on “étude” (and still only 1 for “d’étude” but I think it’s normal).
I’m pretty sure I did not have hallucinations as I’ve retested it 2 or 3 times since 5 days ago. I’ve uninstalled a plugin called Popular Post yesterday so maybe it’s linked ?
Anyway thanks for helping, thanks for your marvelous plugin, and sorry for your time !
Thanks for your plugin !
I hope what I’ve done this morning will help you in fixing this !
Forum: Plugins
In reply to: [WP-PostRatings] Desactivate ratings for custom post typesHi,
If you want to do this, you can use the following snippet in your
functions.php
.function my_columns_filter( $columns ) { unset($columns['ratings']); return $columns; } // Replace "CUSTOMPOSTTYPE" with the name of your custom post type add_filter( 'manage_edit-CUSTOMPOSTTYPE_columns', 'my_columns_filter',10, 1 );
It would be cool to be able to select custom post types from the WP-Postrating admin.
Thanks.
Ok, I’m pretty confident in saying that this issue is definitely related to the french traduction :
On a french install, I’ve deactivated the plugin and deleted the pages (all pages, including the two “Catégories” pages).
Then, I’ve changed the WordPress language in my wp-config.php to en_US.
Then, I’ve reactivated the plugin. And pages are fine, no duplicates.
I think I’ve circled the issue the best I could.
Thanks for this plugin.
Hmmm. I don’t know what to think.
Tried again but on a French WordPress new install… and it failed.
At the moment I’ve tested 4 times.
2 with brand new WordPress installs : 2 Success
2 with brand new French WordPress install : 2 Failed (i.e. got 2 “Catégories” pages).My working installation is also in French.
I suspect there may be something with encoding or quotes…
I’ve yet to have any install on a French WordPress that works fine.
Thanks
Hi and thanks for caring,
I’ve activated and deactivated the plugin more times than I can count. How would I go in order to make a “clean” reinstall ?
Here is what I’ve done this morning :
I’ve uninstalled the plugin by clicking Events > Settings > Uninstall. At this moment, I still had the Event Manager related pages in Pages > All pages. So I went ahead and deleted the Event Manager related pages.
Then I reactivated the plugin and again, I have two “Categories” pages.
I’ve tried this on a brand new WP 3.5.2 install and there is no problem. So it’s either a problem on my installation or some sort of edge case…
If nobody can reproduce, I’ll mark the topic as resolved.
If that matters, I’m on WP 3.6.
Thanks.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Wishlist item: index and search pdf-filesFrom the Relevanssi feature page :
Features Relevanssi doesn’t have
As great as Relevanssi is, there are some things it doesn’t do. Here’s a quick list of the features people most often ask for but which Relevanssi doesn’t offer.
Relevanssi can’t search the contents of PDFs, Word documents, Excel spreadsheets or other external files.
Forum: Plugins
In reply to: [WP-PostRatings] Pot fileHi,
You can use the template part to translate what the plugin displays.
Tu peux utiliser la page “Rating Templates” pour personnaliser et traduire ce que le plugin affiche.
Forum: Fixing WordPress
In reply to: What does WP default to if cURL is not enabledConfirmed to be working on my local test platform.
Be aware you’ll still need to set your proxy informations if you have one. Otherwise, you’ll not be able to add a new plugin (at least in my case).
Thanks.
Forum: Fixing WordPress
In reply to: What does WP default to if cURL is not enabledIt seems I may be able to use the Core Control Plugin to disable the cURL transport.
Waiting for my sys admin guy to reactivate cURL to see if it works.
Thanks.
Forum: Fixing WordPress
In reply to: What does WP default to if cURL is not enabledFrom the source :
The order for blocking requests is cURL, Streams, and finally Fsockopen.
Now to find a way to block the cURL transport.
Thanks.