Search results

  1. M

    Cornjob Setting

    It's not. The minute field can only take values in the range 0-59.
  2. M

    account suspended no copyright infringement

    It most certainly can. Hosting material copyrighted by someone else is obviously illegal. Embedding content is considered linking, which is usually not considered direct infringment, but this is still an open issue. It certainly won't keep you out of court. Even if you're not directly...
  3. M

    addon domain email password

    I'm not certain I understand the question. When you create an e-mail account on X10, you set the domain and password. If you're not certain how to configure clients for POP3 access, search the forums.
  4. M

    Aligning text + Images together

    What behavior do you want if there isn't enough horizontal space for all the items? To add a little to xav0989's answer, use classes, rather than inline styling, to associate a style to the elements. Make the names descriptive of what the elements are, rather than how they're styled (e.g. don't...
  5. M

    Web.config Help

    As per my sig, read the first link in my first post. Failing that, try Google and then the Mono community (forums, chat rooms &c).
  6. M

    winAPI java

    You could try importing user32.dll using @dll.import or System.loadLibrary to get access to PostMessage and send a WM_KEYDOWN & WM_KEYUP or WM_CHAR message(s). Of course, you still need to find the window handle. The "how" of that depends entirely on the windows of interest (All windows? All...
  7. M

    What is right meaning of this:

    That's quite a trick.
  8. M

    How does facebook do this?

    Whoops... I had $permitted and $submitted in the wrong order in the call to array_intersect(...). It preserves the element order for the first argument. The line should have read: $ok_submitted = array_values(array_intersect( $submitted, $permitted )) ; Calls to var_dump() (such as...
  9. M

    Someone please help me with sql

    Notionally, the empty set. Relational DBMSs, such as MySQL, are modeled after relationships, which are relations ([2]) where you don't care about domain order. In RDB parlance, "table" is synonymous with "relationship". An SQL statement creates a new relationship by joining, filtering and...
  10. M

    Web.config Help

    Actually, you are. Roles and authentication credentials have to be stored somehow. The default role provider on Mono is based on SQLite. Neither WindowsTokenRoleProvider nor SqlRoleProvider is available, and even one of those requires a DB connection.
  11. M

    Web.config Help

    What's the URL for a page with the error? Try adding a providers section. See also Mono Bug 362039.
  12. M

    Which is better postgresql or MySQL?

    Most recent post is over 1 year old--we didn't need this thread revived. Also, table is out of date; MySQL has many of the features that the table claims it doesn't have.
  13. M

    wrong path to web mail

    I'm also on lotus and do not see this behavior. Are you following the "Webmail" link in the "Mail" panel, then the "Go to Webmail Login" link on the next page? If not, how are you getting to webmail? Do you reach the page to choose a webmail client? Which webmail client are you using? Is your...
  14. M

    Questions about TOS

    The sentence continues with the crucial phrase "on our servers." You can link to copyrighted material, no problem. Embedding copyrighted material isn't prohibited in the ToS, and probably isn't illegal (disclaimer: I'm not a lawyer and can't guarantee the accuracy of these statements), but that...
  15. M

    Live Stream Wall

    Seconded. Make sure you have: a decent captcha (though captchas can be broken whenever they're solvable by humans, which defeats the point) or one or more alternative Turing tests, such as text CAPTCHAS. if you have a login system, captcha is skipped for logged in users as an alternative to...
  16. M

    How does facebook do this?

    Here's yet another way of handling multiple options and setting a default: $permitted = array( 'calendar' , 'staff', 'news', 'profile' ); $submitted = array_keys( $_GET ) ; # add default action of 'compose' $submitted[] = 'news'; //either: # legal options sent $ok_submitted =...
  17. M

    Ladder System Logical Errors

    "Scaffolding" is any code you write as a development aid, which gets deactivated/taken out of the production version. The most common scaffolding are asserts and statements to print variables.
  18. M

    Ladder System Logical Errors

    Please post sample data that demonstrates this behavior. You could also add some scaffolding code to print intermediate results and inserted values so you can get a better idea of what's going wrong. Better than scaffolding would be to use a PHP debugger to observe variables. Keep breaking...
  19. M

    Help Me in Coding

    With W3Schools, you'll end up having to unlearn so much, especially when it comes to MySQL+PHP. In particular, the MySQL+PHP tutorial is based on a terribly out of date MySQL driver (mysql was replaced by mysqli, which was replaced by PDO), which means it can't cover prepared statements. With...
  20. M

    Uploader

    You've got a major conceptual problem. You can only call functions within the current execution of a script. Once the page has been generated and sent to the client, the script exits. Clients (thankfully) have no way of directly executing functions in a script on a server; they can only make...
Top