"Reloaded site preferences"? - filenet-p8

In SystemOut logs of a Filenet WorkplaceXT application, I can see "Reloaded site preferences (a big number)" printed every now and then. What is this "big number" printed next to the text "Reloaded site preferences"??
Anyone knows?

Got it.. Its milliseconds for the time when the site Preferences are being loaded. What an obvious answer was that!! Stupid me...

Related

Google Gmail - "The conversation that you requested could not be loaded"

It seems like a link like:
https://mail.google.com/mail/u/0/#inbox/1648ec7930317b4a
Displays 'The conversation that you requested could not be loaded'. The email with that id is clearly in the inbox (retrieved via https://developers.google.com/gmail/api/v1/reference/users/messages/get).
Is this the correct way to link to an email by id?
Edit: I should also mention that sometimes it works, sometimes it does not.
To overcome try setting:
Gmail / Settings / Conversation view=on
Seems to me as a bug
This will fix the problem. Your reading pane is not enabled. I had the same problem this morning. I didn't change anything. It just started happening. Good luck, I hope this helps. You can fix this by:
Log into your gmail account
Go to settings -> See all settings
Click the "Inbox" Tab
Reading pane: "Enable reading pane"

I'm looking for help integrating Paypal IPN's with Marklogic

I'm using ngrok to tunnel to my localhost. The IPN simulator runs smoothly, as does Postman. But once I run through the whole process (make a transaction, wait for IPN), I'm getting the following error: 400 XDMP-REQUTF8SEQ: Invalid UTF-8 escape sequence -- requests are not UTF-8 encoded.
I put a xdmp:log at the entry point of the app and nothing was logged, so I believe the error occurs when the request hits the server. Is there a way to handle this at the server level? Has anyone had success integrating IPN's with ML?
Any help would be much appreciated! Thanks!
I think I found the answer:) In the IPN docs it says: When testing using the IPN Simulator, the character encoding will always be UTF-8. So if they're telling me that the messages will always be UTF-8 encoded when using the simulator, will the real messages be any different? Turns out that they just might be!
In the profile section of the PP account, click on "My Selling Tools" and scroll down to the bottom of the page. There should be a link that says "Paypal button language encoding". From there, click "More options" and you'll see what your options are. Mine was set up as "windows-1252". I guess that's what it is by default. Hope this helps someone else!

Magento Front controller reached 100 router match iterations issue

I currently have a Magento site version 1.9.1.0 and have the "Front controller reached 100 router match iteration" reports. It's bringing down the site several times a day.
I have followed the steps in this post Magento "Front controller reached 100 router match iterations" error
and when the site went down last I believe the controller that seems to reappearing is the '/admin' path as shown in
2015-09-19T16:55:02+00:00 DEBUG (7): ----Matching routers-------------- ----------------
2015-09-19T16:55:02+00:00 DEBUG (7): Total 7: admin, standard, install, wordpress_addon, cms, wordpress, default
2015-09-19T16:55:02+00:00 DEBUG (7): - Iteration 1
2015-09-19T16:55:02+00:00 DEBUG (7): Request: [path_info=/admin] [module=][action=][controller=][controller_module=][route=]
There is redis, varnish and memcache also running and the cache is saved to the database. When the site goes down I restart these services and it will fix the problem temporarily but obviously this isn't the solution. It also seems that the more I restart the services, the more it happens. This problem happened about a year ago and in order to rectify it, these were added and the problem seemed to be fixed but now has reappeared (badly).
I also found this post http://magentosupport.help/knowledgebase/solved-front-controller-reached-100-router-match-iterations/ which I have gone through each step and checked each one but still the problem hasn't been fixed.
I was going to try this patch https://github.com/convenient/magento-ce-ee-config-corruption-bug#update-good-news-a-patch-from-magento
but my hosting company told me it wouldn't work because it doesn't apply to my version.
The site has multiple stores and lots of additional extensions, I would really appreciate it if anyone could give me any advice because I am desperately stuck.
Kind Regards,

Personal webpage set in https without my interaction. How to undo it?

i've got a little problème im not even abble to clearly formulate.
And this didnt helped me finding an answer on the internet.
So I rely on you people if somehow you have allready encouter this problem or either simply had an idea of where this could came from.
Here is my problem : When I try to connect on my personal website the navigator (Chrome or Firefox, haven't test with others) told me the certificate of security is invalid and is only valid for ssl1.ovh.net (ovh is my web hosting-provider).
The error code is : ssl_error_bad_cert_domain.
Well if any of you has an idea of where this could came from ?
Here is my website if some wants to have a look : maelmayon.fr
Thank you for reading it, I hope someone could help me.
Even though this is not a solution to the underlying problem, this is a nice workaround.
Either add a security exception in your browser, or explicitly link via http://. The security violation report should only show when trying to connect via https://.
I think you'd have to contact your provider for a shared SSL certificate to enable connection via https

Magento can't save new products anymore

Everything was fine 'til this morning. I've tried clearing cache, re indexing, all tips I could find on the internet.
Here is the message I'm getting
Fatal error: Call to a member function getId() on a non-object in /home5/rockbott/public_html/app/code/core/Mage/Adminhtml/controllers/Catalog/ProductController.php on line 578
here is line 577 and 578:
if (Mage::app()->isSingleStoreMode()) {
$product->setWebsiteIds(array(Mage::app()->getStore(true)->getWebsite()->getId()));
A newly created product gives me Fatal Error message. Duplicated product gives me the same, but when I go to manage products it appears, but without SKU# and 0 stock count. When I try to edit that product again - I get Fatal Error.
Please help me with my problem.
Thanks in advance.
Thanks for your response.
Someone suggested that I clear log file and I did. I'm sorry I don't have the log file. Compiler is disabled as well. Would you be kind enough to take a look here: http://www.magentocommerce.com/boards/viewthread/347764/ I've posted more information there including reports.
Thank you
Anna
I realize this is old, but on a Magento 1.9.0.1 install i was having the same problem. I'm not sure what is happening but enabling the cache allowed it to work for me. Weird.
What appears to be causing it in my case is a remnant logging line in Mage.php that I was using to track events.
On line 447 I had:
Mage::log($name, null, 'events.log');
Removing this logging line resolved the issue.
With your informations is difficult to find the problem.
Can you paste your system.log file?
One question: Do you have the compiler enabled? Try to disable it.
I had the same error. Solution turned out to be very simple: you need to replace getStore(true) to getStore(1).
Its very strange because in PHP true same as 1 ... but in this it was a mistake. If you make a "more correct" and write:
$product->setWebsiteIds(array(Mage::app()->getStore(Mage::app()->getStore()->getId())->getWebsite()->getId()));
Magento give you not true website. Was too lazy to look for, as well as programmers Magento (getStore (true)) :)) so I decided to leave it

Resources