Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LittleHavoc

  1. LittleHavoc

    Speakerphone on Intel 536EP modem #2

    I sent them all back and bought some different ones. Which we are also experiencing problems with. As soon as their installed the LAN connection almost dies. Average of 80% fail on Ping. And the problem persists when unplugged and uninstalled. I had to Ghost copy the contents from another drive...
  2. LittleHavoc

    Speakerphone on Intel 536EP modem #2

    Hello, I have searched the internet and cant find any answers to the following question. I have an Intel 536EP modem with phone/line rj11 socket and microphone/speaker 3.5mm jacks. When I plug my headphones into the modem I can hear the person on the phone, but I can be heard with a microphone...
  3. LittleHavoc

    dynamic virtual host

    Yes, that page uses %0, and I assume it is like the pattern matches of grep. But it is not a reference to how to use it and therefore is not really where %0 is located in the manual. ericbrunson:"I think the FAQ says %0 would match the entire domain, not just the glob match". A link to this is...
  4. LittleHavoc

    dynamic virtual host

    I have checked the docs prior to posting the question (as always) I just couldnt find anything relavant. Where is the %0 in the manual?
  5. LittleHavoc

    How do you configure Apache after the install?

    first make sure apache is running. Do a CTRL-ALT-DEL and use Task Manager to look at the processes currently running. Try restarting apache to see if there are any problems with your configuration. Then look at your httpd.conf file to see where your doc root is located and make sure there's a...
  6. LittleHavoc

    How do I teach Apache to execute scripts with no file extension?

    I forgot to say that you must have the re-write engine switched on. RewriteEngine On You may also need to add some settings in your <directory> <Directory /www/htdocs/yoursite> Options ExecCGI FollowSymLinks Includes MultiViews </Directory>
  7. LittleHavoc

    How do I teach Apache to execute scripts with no file extension?

    Try this RewriteRule ^directory/(.*)/(.*)/(.*) /directory.php?x=$1&y=$2&z=$3 the script would be called directory.php in the root directory.
  8. LittleHavoc

    dynamic virtual host

    so if %0 matches the *, the would the following fit with my question? <VirtualHost *.domain.com> UseCanonicalName off ServerName %0.domain.com VirtualDocumentRoot /www/domain/%0 </VirtualHost>
  9. LittleHavoc

    dynamic virtual host

    Hello I have space on a friends dedicated server and he is not available all the time to carry out work for me. Therefore I want to configure a virtual host in apache to cope with all my subdomains in one configuration. I am basically after some wildcard or re-write information. e.g. normally...
  10. LittleHavoc

    simple date search

    These are my personal time manipulation functions. I always use dates in the mysql format for consistancy (YYYY-MM-DD HH:II:SS) which avoids US/UK conversion problems and table formts are &quot;datetime&quot;. function timestamp_from_mysql($timestamp) { ereg...
  11. LittleHavoc

    hiding filename in address box

    Yup its apache, but you should have already done this when installing apche and php. Edit apache's httpd.conf ---------- AddType application/x-httpd-php .php <IfModule mod_dir.c> DirectoryIndex index.html index.php </IfModule> ---------- This also means that you can serve any extension...
  12. LittleHavoc

    How to genate dynamically changed links in PHP?

    You could keep a log of all the requests and check if they where valid for each one a person requests. You can choose how long someone has before they cannot download it anymore. table ref, user_id, tone_id, bought_expire_date 208 23 48 2003-01-19 10:00:00 table2 tone_id name...
  13. LittleHavoc

    About adding html in flash

    Within Flash you can have a text box, with properties of Dynamic-text, Multi-line, variable &quot;myText&quot; and HTML ticked. To load the external code in you can place myText= in front of the code when it is output. ie myText=<!--#include virtual=&quot;news.txt&quot; --> Then use...
  14. LittleHavoc

    imagerotate function not working

    If possible install ImageMagick and get it to do the rotation, and basically every other image manipulation process you can think of.
  15. LittleHavoc

    Classes Internet Tutorial

    www.phpbuilder.com has lots of tutorials

Part and Inventory Search

Back
Top