• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by tino

  1. T

    SSL / TLS Socket Server PHP4

    Hi everyone, Many thanks for all the responses. I understand all the pitfalls, problems and the fact there are many easier solutions out there. However if we all took the easy route we would never get anywhere in life... Maybe the wrong analysis for this problem. Anyway, its running...
  2. T

    SSL / TLS Socket Server PHP4

    I understand all the foibles and infrastructure issues related with using php, however it a requirement that has been placed upon me by a client, and I did it more as a proof of concept. Everything else works as expected, baring the https.
  3. T

    SSL / TLS Socket Server PHP4

    Due to the underlying infrastructure a php socket server is the preferred option. I however think its only going to be possible using php5.
  4. T

    SSL / TLS Socket Server PHP4

    Thanks for the response. I want to remove the need to have apache installed and to just use php to server all webpages. I have got it working correctly over http using the socket functions available within php4 however I can't seem to get it working correctly using https.
  5. T

    SSL / TLS Socket Server PHP4

    Hi everyone, I have google'd this quite extensively and it doesn't appear to be possible, however I thought I would ask here just to confirm. I have a requirement to create a Socket Server that will server various web pages, however it needs to be compliant with PHP 4.3.x at a minimum...
  6. T

    Apache mod_rewrite not escaping ?

    Thanks alot for your reply. I ran in to some issues with the following query. RewriteCond %{QUERY_STRING} ^$ RewriteRule index.php /wp/index.php As it would rewrite the following query as it noticed the index.php at the end. RewriteCond %{QUERY_STRING} ^/forums/$ RewriteRule...
  7. T

    Apache mod_rewrite not escaping ?

    Thanks for the link, I'm afraid I still can't seem to work it out. Surely it must be possible to escape the ? after the index.php in the first block of code. Or am I misunderstanding this entirely.
  8. T

    Apache mod_rewrite not escaping ?

    Hi, I have an issue with mod_rewrite within apache. It doesn't seem to want to escape the ? character. I have the following redirects set up. RewriteEngine on RewriteRule ^index.php\?$ /wp/index.php RewriteRule ^index.php\?/articles/$ /wp/index.php?cat=9 RewriteRule...
  9. T

    Initiate variable only once in php - even if another class extends it

    It means that it initiates the $logs as an array(); every time I call a class that extends this one. If I do a check before, then it will create a syntax error as its at the start of the class.
  10. T

    Initiate variable only once in php - even if another class extends it

    Apologies I thought I had used the code tag. Edited the original post now. As I set it as the top of $logs as a var it doesn't seem to want to let me check to see if that variable is empty or doesn't have any data. I'm probably doing something really stupid or missing some very simple point.
  11. T

    Initiate variable only once in php - even if another class extends it

    I have a class called logit, please excuse the incorrect formatting. <? class logit var: $logs=array(); // ... does other stuff ... ?> Now I have another class that extends logit <? class lognot extends logit if (!in_array($this->logs)) {...
  12. T

    sudhian forums

    Yes apologies for the lack of Sudhian for a while, there was alot of issues with the transferring of web hosts. What should of taken a few hours for some reason took a few weeks! It should be faster now as craigbru mentioned.
  13. T

    Longest lasting drive you've owned?

    Im running a 4gb quantum (think its a quantum) in my fileserver. Its been running in various PC's for the last 10 years. First 4years was on and off, last 6 have been pretty much 24/7 as the OS drive in either my fileserver/firewall/router.
Back
Top