• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Recent content by fatman

  1. F

    I'm looking for a good raw log analyzer

    I've only once encountered a stats service that tracked visitor path through a site, but that's an online service (Hitbox). I don't know of any offline log analyzers that does this. But then I have not tried that many either. If you only want entry and exit pages, Awstats does that, as do a few...
  2. F

    looking for a decent counter

    That's a buggy script. For one, it does not lock the file. Furthermore, because the reading and writing is not atomic (you close the file between reads and writes), it is possible for your counter to miss counts or be reset to an earlier number.
  3. F

    SquirrelMail...

    There's a plugin that supports HTML mail. http://www.squirrelmail.org/plugin_view.php?id=55
  4. F

    how to run my own server... please help.

    Not all cable modem ISPs approve of their clients trying to run web servers on their bandwidth. But if yours allows it, there are tutorials on http://www.thesitewizard.com/
  5. F

    Converting jpg files to gif

    You can't just rename the file. One way is to use the freeware graphics file viewer, IrfanView. You can get it at: http://www.irfanview.com/ You can even do it from the command line if you wish, eg: i_view32.exe c:\*.jpg /convert=d:\temp\*.gif
  6. F

    wats the deal with \"blah\" and \'blah\' ??

    Actually both solutions (.htaccess and the function call) should work. Ozefrog, if you get a parse error, you need to find out why. Eg, was something spelt wrongly, or was the file accidentally was uploaded in binary, etc? BTW, which PHP version are you using? (I should have asked this at...
  7. F

    wats the deal with \"blah\" and \'blah\' ??

    Just a long shot: did you place the function *after* the "<?" - ie, <? set_magic_quotes_runtime ( 0 ); ...
  8. F

    wats the deal with \"blah\" and \'blah\' ??

    Better check the manual from the horses' mouth to make sure the syntax is correct: http://www.php.net/manual/en/function.set-magic-quotes-runtime.php (just in case I got it wrong)
  9. F

    wats the deal with \"blah\" and \'blah\' ??

    How about just putting the function call (the set_magic_quotes_runtime() mentioned above) at the top of your code and trying again? Does it work when you do that?
  10. F

    wats the deal with \"blah\" and \'blah\' ??

    Oops, try this instead: php_flag magic_quotes_runtime off I think the _gpc variable was for GET/POST/COOKIES. This one is for databases... There's a way to do it in your PHP code too, if your host does not let you change the PHP configuration in the .htaccess. I think the function...
  11. F

    wats the deal with \"blah\" and \'blah\' ??

    Put the following in your .htaccess file: php_flag magic_quotes_gpc off
  12. F

    Reactivating *.com/net/edu/.kg domains?

    Interesting... Has anyone here actually successfully re-registered a .*.kg domain after it expired?
  13. F

    Alternatives to a Static IP?????

    If you mean free alternatives to DNS2GO, the one that is popular on this board appears to be http://mydomain.com/
  14. F

    Free and Cool Domains

    Where does one go to register a .tk domain? (Sorry, I've been out of the loop for some time now...)
  15. F

    Prog. to Create self-extracting EXE file.

    Lots here: http://www.thefreecountry.com/developercity/setup.html
Back
Top