Search:

Type: Posts; User: Dmitriy

Page 1 of 5 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    480,297

    Hello If you put something like 'cats and...

    Hello

    If you put something like 'cats and dogs' in a separate line in 'Auto-Moderation: Bad Words' input, the posts containing 'cats and dogs' will be put under moderation, but posts containing...
  2. Replies
    5
    Views
    5,164

    SOM for VB3 don't have the code to connect or...

    SOM for VB3 don't have the code to connect or administer DB connection too. There's some other problem or a combinations of a few. SOM talks a lot to remote servers & cURL library may slow the...
  3. Replies
    5
    Views
    5,164

    SOM is not using its own DB connection. It...

    SOM is not using its own DB connection. It doesnt' even have the code to connect to the DB or change connection settings. VB connects to the database each time its code is triggered & SOM uses that...
  4. If you really want to use Mac for server, than my...

    If you really want to use Mac for server, than my reply won't be helpful, but you may consider it as a way to go. More than 10 years of experience in this field after all. :)

    Here is the cheap way...
  5. Replies
    1
    Views
    2,816

    That code doesn't send blank e-mails. Look for...

    That code doesn't send blank e-mails. Look for mail() calls in other places of your site that might be connected to this script somehow.
  6. Replies
    2
    Views
    3,449

    I'd start from modifying the query line, like...

    I'd start from modifying the query line, like that

    mysql_query("UPDATE msm_content SET created = '2011-01-02 00:00:00', modified = '2011-01-01 00:00:00'", $con);
  7. Replies
    11
    Views
    10,732

    I see. I'd suggest to make form submit via AJAX,...

    I see. I'd suggest to make form submit via AJAX, so you don't have to reload anything if something fails - CAPTCHA or any other field that can't be validated on the client side.

    Another thing if...
  8. Replies
    11
    Views
    10,732

    Can't say exactly. The dump is saved when...

    Can't say exactly. The dump is saved when web-server thread crashes, but 400 error (the one that fires when the request too large) is not the one that makes server crash.

    If you need to debug some...
  9. Replies
    11
    Views
    10,732

    At least 2 comes into my mind: - some browsers...

    At least 2 comes into my mind:
    - some browsers have its own limits of cookie size (old versions of Mozilla and some *nix browsers)
    - IE6 and 7 has a known problem of cookies not saving when they...
  10. Replies
    11
    Views
    10,732

    Yes, it is. To increase request size in Apache,...

    Yes, it is. To increase request size in Apache, add directive LimitRequestFieldSize to the configuration file. Default value is 8190 bytes. To increase it 2 times add
    LimitRequestFieldSize 16380....
  11. Thread: MYSQL Query

    by Dmitriy
    Replies
    13
    Views
    5,966

    This one is complete correct example ...

    This one is complete correct example



    SELECT *
    FROM master_stock
    WHERE
    (symbol = 'BA' OR
    symbol = 'BAC' OR
    symbol = 'BMY' OR
  12. Thread: MYSQL Query

    by Dmitriy
    Replies
    13
    Views
    5,966

    I guess you really want to do this: ...

    I guess you really want to do this:

    (symbol='BA' OR symbol='BAC' OR symbol='BMY')
  13. Replies
    2
    Views
    4,107

    switch ($_GET['pos']) { case '0': //do...

    switch ($_GET['pos']) {
    case '0':
    //do something for &pos=0
    break;

    case '1':
    //do something for &pos=1
    break;

    .....
  14. Replies
    8
    Views
    3,363

    Oh, and, as far as I can see, this is an issue...

    Oh, and, as far as I can see, this is an issue with the Flash file itself, not with the way you're inserting it into the page, so you'd contact this flash file author on this issue. No one will tell...
  15. Replies
    8
    Views
    3,363

    Opera 9, IE 8, FF 3. OS - XP SP3. I didn't see...

    Opera 9, IE 8, FF 3. OS - XP SP3.

    I didn't see any preloader, but the movie start immidiately even on pretty slow connection (4 Mb/s). The problem I saw is when the iStockPhoto text is shown the...
  16. Thread: Haylee bit it

    by Dmitriy
    Replies
    6
    Views
    2,861

    You've burned the server down?

    You've burned the server down?
  17. Thread: Encryption?

    by Dmitriy
    Replies
    1
    Views
    2,939

    PHP: You can't protect your code from being...

    PHP:
    You can't protect your code from being reverse engineered. However, this process is not easy and very long. In most cases it is much easier to write new script that reverse engineer the other...
  18. Replies
    18
    Views
    7,132

    Than you have the category on the second page in...

    Than you have the category on the second page in $_GET['cat]. I see no problem.
  19. Replies
    18
    Views
    7,132

    Welcom, JM :) I'd suggest using E-NOTICE too...

    Welcom, JM :)

    I'd suggest using E-NOTICE too at dev stage.

    As for the posting vars. I can't understand your question either :) But a few guesses: If you're using a form on the next page, you...
  20. Replies
    18
    Views
    7,132

    If category selector is set via HTTP request,...

    If category selector is set via HTTP request, than forget about method 1. If it is set over POST request that the second one will do. If via GET request - both methods will not work.
    Calling an URL...
  21. Replies
    11
    Views
    4,640

    Hi there! Sorry, I wasn't able to show-up...

    Hi there!

    Sorry, I wasn't able to show-up earlier.

    Lynne, please, submit the ticket with the task description and we will see what we can do for you.
  22. Replies
    7
    Views
    3,372

    Hey Christopher 2 options :) Either google for...

    Hey Christopher

    2 options :) Either google for something like Web-site gallery script. I can't remember the solution names, but I've seen some pretty interesting.... or order a script from a great...
  23. Thread: Been a while

    by Dmitriy
    Replies
    4
    Views
    2,507

    You're welcome, Charles Then you will not have...

    You're welcome, Charles

    Then you will not have any trobules in writing the script. As for the try/catch. Don't use this to often or your code will become x-times bigger (and sometimes slower). Try...
  24. Thread: Been a while

    by Dmitriy
    Replies
    4
    Views
    2,507

    Hey Well, the're no big differance if you...

    Hey

    Well, the're no big differance if you don't go deep into predefined global arrays like $_SERVER, $_REQUEST etc. May be I forgot something, but it is really almost the same for CLI as for...
  25. Replies
    2
    Views
    3,010

    I strognly wouldn't recommend you to use XML for...

    I strognly wouldn't recommend you to use XML for storing production data. It is good for structuring & transfering data that should be used completely, but using XML in role of fully-functional DB...
Results 1 to 25 of 124
Page 1 of 5 1 2 3 4

1 2 3 4 5 6 7 8 9 10 11 12 13 14