Search:

Type: Posts; User: Korvan

Page 1 of 12 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    6,816

    You can call up your email providers support and...

    You can call up your email providers support and see if they will allow one of your subdomains to point to your copy of OWA. That would be the best solution.

    IE apparently aheres to a strict P3P...
  2. Its not unusual, a lot of companies have intranet...

    Its not unusual, a lot of companies have intranet pages that are strictly dependant on the IE browser. It really isn't unheard of to restrict company pc's to one type of browser. After all many...
  3. And setup a proper robots.txt. Not all search...

    And setup a proper robots.txt. Not all search engines will obey the canonical link tag, some look for a robots.txt to tell them what they should and should not index.

    For example:...
  4. Try using curl instead of fsock to open the web...

    Try using curl instead of fsock to open the web page and see if that makes any difference.
  5. The short answer is no.

    The short answer is no.
  6. You can map a file/directory to your local...

    You can map a file/directory to your local computer (assuming you are on the same network) and have the php script copy the file (using absolute paths) after its done creating it.

    Is the server...
  7. If you are using a mysql database you should...

    If you are using a mysql database you should probably use the mysqli class instead of the PDO.

    I would use the first method, here is why:
    If there is ANY, i mean ANY error in the input the...
  8. you can always use the curl library to make the...

    you can always use the curl library to make the request to the other server, then just present the file to the user with the proper header information. Or you can just do a simple fopen request if...
  9. Replies
    113
    Views
    8,952

    That is clearly a free image... I don't see...

    That is clearly a free image...
    I don't see anywhere on semoweb's site where semoweb's logo is availible for 'free', semoweb also does not give you access to its raw format.
  10. Replies
    4
    Views
    2,172

    That is a common pitfall in programming multiple...

    That is a common pitfall in programming multiple sql calls. It can be entirely avoided by using verbose variable names. For example:


    $column_result = ...
    $article_result = ...

    -or-

    ...
  11. Looks like you need to re-install mysql. Create a...

    Looks like you need to re-install mysql. Create a backup of your database with mysqldump. The mysql table is a table that is created when mysql is installed and should be edited when you update...
  12. Not everyone can, which is why in order to...

    Not everyone can, which is why in order to eliminate confusion to only use long tags in examples. I disable short tags in every php 5.x implementation I deploy. This is mainly due to conflicts with...
  13. for the browser there is no real difference,...

    for the browser there is no real difference, there is a slight difference for server performance reasons. But for all webserver configurations apache, cgi or otherwise using the php code will be...
  14. Its definatly possible to use the same database...

    Its definatly possible to use the same database across multiple websites (or even multiple applications), as long as the mysql user the websites use have appropriate permissions to the database....
  15. Replies
    10
    Views
    3,538

    You should use not or Note the...

    You should use <br /> not <br/> or <br> Note the space after br. <br /> works in ie8 as it's supposed to.
    While <br/> is valid xhtml, it is advisable to use the version with the space for older...
  16. Its preference whether you want to have your...

    Its preference whether you want to have your website mainly hosted on www.example.com or just example.com as long as you have valid dns records for both you can redirect one to the other. Or as many...
  17. Replies
    6
    Views
    3,462

    I found the error in your code, it is here: ...

    I found the error in your code, it is here:


    $result = mysql_query("SELECT * FROM used ORDER BY id DESC");

    $query = $query.$limit;


    What that code is doing is completely...
  18. chmod is only protecting files from being...

    chmod is only protecting files from being modified by whatever method is being used. it isnt actually plugging the security vunerability that allowed it in the first place. Also chmod wont help you...
  19. Are you trying to change an image on a page based...

    Are you trying to change an image on a page based on a random record from the database, or are you trying to change the link in the database itself?
  20. Replies
    9
    Views
    1,153

    Also you were on shared hosting, it is my...

    Also you were on shared hosting, it is my understanding that the user of that shared hosting account is responsible for the system resources that account uses. If the hosting provider finds that you...
  21. Replies
    13
    Views
    1,228

    If you absolutely have to use it check the...

    If you absolutely have to use it check the variable going into it and make sure it is absolutely valid (of a valid list of options). For instances if a program name cannot have a space in it, throw...
  22. You could make it detect and modify the values...

    You could make it detect and modify the values based on server load. I have no idea on exactly how everything is setup on his end so there is no way I can possibly just give him a script to do that...
  23. Steven, while a hardware load balancer might be...

    Steven, while a hardware load balancer might be the ideal solution - it is not the cost effective solution the OP is looking for. It is obvious he wants to avoid purchasing a hardware load balancer....
  24. http://www-css.fnal.gov/dsg/external/freeware/pgsq...

    http://www-css.fnal.gov/dsg/external/freeware/pgsql-vs-mysql.html

    Eventually though, both will probably be the same, from my reading mysql went for the ease of use + speed route and later features...
  25. Of course you can easily edit the wikipedia...

    Of course you can easily edit the wikipedia article yourself and 'fix' it. Of course you might be asked to explain why on the discussion/talk page.
Results 1 to 25 of 288
Page 1 of 12 1 2 3 4