Undefined pop-up when refreshing sugarcrm dashlet - admin

I'm trying to modify a Sugarcrm (version 6.5.4).I'm logged as "Administrator"
I have a homepage, where i deleted some useless dashlets. Every dashlet on this home is refreshing every 30 seconds.
And every 30 seconds, i have a little pop-up appearing just few miliseconds saying just "Undefined". I tried to see with firebug what could be the error, and i did not find out.
I think maybe i deleted a field or something in my other datas which is related with a dashlet, but i can't see which one.
Does anybody have an idea on which error is running? or even if i can fix it, please?
Thanks for the time you took to read my poor description.
and Thanks by advance for the response you'll give me :)

Finally, i didn't find what was the cause of this popup, but i had several problems with the acces rights.
I changed them and now the popup turned from "Undefined" to "Loading".
Thanks again, and i hope it will help someone! :)

Related

Customer Cheating Paypal API deleting table items. (CFML)

I just had a customer go through some extensive steps in order to delete items prior to submitting the html form to try and avoid/delete line items that pertain to shipping. What they did was in the inspection part of chrome the opened the table and deleted the line items so when it transferred to Paypal they did not show up.
My question is how do I go about preventing this, I know they spent some time trying to figure it out.
The site is written mostly in CFML as I have a pretty good understanding from a previous job of mine, but I am having issues and want to prevent this from happening in the future.
Thanks for the help

Live.js Not Updating

I have a pos system that can write a order to a .txt file everytime something is changed (added or removed) in the order. I am trying to get a drive thru customer order display screen solution. I got everything working through using wamp webserver and displaying the content as html and having live.js refresh the chrome browser whenever there is an order update, however I am having issues when there isnt a refresh for over 5 minuets, it takes live.js 30-50 seconds to detect that the .txt file has changed and actually refresh the page. I need a solution that will always work instantly which live.js does fine until the computer idles for over 3-7 minuets.
Anyone experienced with live.js or have another solution that you think would perform better?
I can post the live.js code here if you guys want but its just the default code from live.js
Much appreciated.
just add to the head
meta http-equiv="refresh" content="1"
Will refresh the page every 1 second.

Why does the 'like' count in my page rollback?

I'm attempting to implement facebook "likes" and having a bit of trouble. The count keeps rolling back after a page refresh.
Steps to reproduce
Navigate to http://bookmill.co.kr/books/9/quotations/79 (note: this page is in Korean)
Click Like
Notice the like count increments
Refresh your browsers
Notice that after step #4 the count is rolled back? The like is posted to my Facebook wall. I'm not clear what's going wrong.
I attempted the same thing with: https://developers.facebook.com/docs/reference/plugins/like/
and it's rollback too.
Any idea what's going on? og tag is wrong? incorrect AppId?
facebooklikes: Well, developer.facebook has limitation. So you probably need to hire an expert in programming.

Like Button Error "This page is either disabled or not visible to the current user."

A week ago, the "Like Button" in a page I'm developping stopped working, whether I use XFBML or social plugins, I get the same result.
When some one tries to click the Like Button, the get an error message, and the link says "This page is either disabled or not visible to the current user."
What couldit be?
Had the same issue recently. If you used the like button generator, this is what solved it for me: you have to have the exact same settings in your iframe and open graph data as you did when you first generated the like button. Not sure why, but this was the only way to get mine to work. I had changed to a different layout and size. Of course, the facebook linter is definitely helpful as well:
http://developers.facebook.com/tools/debug
Put the url into the URL Linter and that should clear the cache. If it is still an issue, perhaps your link got blocked for spam. What is the url?

how know where is the error?

im using a django app (django adzone), well, but im trying to add banners, and django zone tell me " please fix the errors" , but nothing more, i cant see where are the errors.
any idea how ill know ?
EDITED
There's not trace about the error or something like that, is just a django admin message
see the images
thanks
Then your best shot is to install ipdb (easy_install ipdb) then drop these lines in at the end of the is_valid method (and if not create it):
import ipdb; ipdb.set_trace()
Save your form again, then go to the router. You'll have access to a shell where you can inspect several suspects like:
self.data
self.errors
OK, i know where is the error.
There's another field named "Advertiser", but Chrome dont display this field, i dont know why. sorry i think there is not error, just a Chrome "bug".
FF,Opera, IE are showing the complete form.
Thanks
Been there, seen that!
It's not a chrome bug it's the Ad blocker blocking the input!
You can:
Deactivate the Ad blocker or rename the field (Advertise)
Cheers