Hi
I have debian as an NFS client.
I would like to mount a remote NFS with a specific user permissions (to specify the remote user account)
How can I do that?
thanks
Hey all
I have an ASPXGRIDVIEW which is binded to an SQL query.
I added to the grid an additional COLUMNCUSTOMBUTTON.
But what happens is, that for all the rows it put a link there.
I am trying to find a way to add to this column a link (button) ONLY to specific rows!
I am unable to understand how to do it
thanks
Hi
I am using excanvas.js that is used with flot jquery graphs.
When in FF or chrome the graphs show great.
on IE I get this error:
Unknown runtime error excanvas.min.js, line 144 character 21
el.getContext = getContext;
// Remove fallback content. There is no way to hide text nodes so we
// just remove all childNodes. We could hide all elements and remove
// text nodes but who really cares about the fallback content.
el.innerHTML = '';
el in the stack is DispHTMLUnknownElement
What can that be?
Thank you?
Hey all
I am trying to find a way of sending email invoice via google checkout's API (and also in PayPal)
I can't find how. or at least how to generate a new order (money request)
thank you
Hi
I am getting
Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.Data.SqlClient.SqlException (0x80131904): Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
When I run the SAME query in the SQL query program I get result within seconds, and in LINQ it takes forever and fails.
What can cause this???
Thanks!
Hey all,
I have Facebook Toolkit for .NET and I am trying to check whether my application has permissions for a user.
I have the userId of the user, and I am trying to do:
_facebookAPI.Session.RequiredPermissions = listExtended;
_facebookAPI.Session.SessionKey = Resources.FbApplicationKey;
_facebookAPI.Session.SessionSecret = Resources.FbSecretKey;
_facebookAPI.Session.Login();
if (_facebookAPI.Users.HasAppPermission(Enums.ExtendedPermissions.publish_stream) &&
_facebookAPI.Users.HasAppPermission(Enums.ExtendedPermissions.offline_access))
I get session is invalid error.
How can I check permissions in offline mode?
thank you
Hello,
I am trying to sync between 2 tables:
I have active table where has auto_increment, and I have archive table with the same values.
I would like both ID's to be unique (between the tables as well) - I mean, I would like to save auto incremenet, and if I UNION both table I still have uniqness. How can I do that?
Is there a possibility to save auto increment when mysql is off?
Hi
I have this code
window.fbAsyncInit = function() {
FB.init({
appId: 'balblablablbal',
status: true,
cookie: true,
xfbml: false
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());
I would like to do something only after those JSs have been loaded (i.e. hook on FB.init event)
How can I do that
thanks