Search results

  1. D

    .htaccess redirect

    Thanks misson that is exactly what I was looking for.
  2. D

    .htaccess redirect

    I have a premium hosting package with the wildcard redirect in place. My issue here is that no one knows the proper way to setup the .htaccess file to only direct one domain name and not the rest that are hosted on my package. If you know how to modify the .htaccess file properly im all ears.
  3. D

    .htaccess redirect

    It is a wildcard redirect as I said. I have an outside company that creates a client id the id then becomes the subdomain the subdomain is only used to signify their own copy of the site. I have been trying to figure out how to set it up properly so that whatever they type it shows up with the...
  4. D

    .htaccess redirect

    I have a wildcard redirect set for my domain as *.website.com I am trying to figure out how I can setup the .htaccess redirect to point correctly Subdomain test.website.com Files are in website.com/test I still want the url at the top to point to test.website.com
  5. D

    String to text file

    I managed to figure this one out on my own. This is the code im currently using. If there is a better way I would appreciate the advice. header('Cache-Control: private'); header('Pragma: private'); header("Content-Disposition: attachment; filename=\"file.txt\""); header("Content-Type...
  6. D

    String to text file

    I am looking for a script that will allow me to turn a string to a text file for the user to download without having to save the file to my server. If this is possible can anyone help me with a sample. I have looked all over google but it just shows me how to save to a text file on the...
  7. D

    phpinfo Test File

    Before you say it I know all about <?php phpinfo();?> I am checking to see if anyone has developed a decent check file. Something where if php is installed it says Php is installed and then displays the info. If it is not installed it displays something like sorry php is not installed. I am...
  8. D

    Im looking for a good php encoder/encrypter

    I have several php pages that need to be encoded. Im looking for a decent encoding software under $50. Any suggestions are greatly appreciated.
  9. D

    Javascript onload

    I have tried that with no success. It seems like it is adding the information but my JS will not pull the information from the form. If i name something and call it in another function it shows null but if i submit the form is sends the name correctly.
  10. D

    Javascript onload

    I have been trying to get this to work in IE without any luck. It works great in FF, Opera, and Safari. If anyone can give me a hand with this I would appreciate it. The following code loads is looped to add the onsubmit function and name to all my paypal forms currently being 30 per page...
  11. D

    .htaccess redirect

    This is an example of our old dynaimc product URL: http://www.site.com/Merchant2/merchant.mvc?Screen=PROD&Product_Code=cm028-ak47-airsoft&Category_Code=&Store_Code=R we are now using static pages We need htaccess to reconize the product code which is cm028-ak47-airsoft then smiply redirct...
  12. D

    Restricting Directories

    I have a very large site I am working on that has many directories that I wish to block from public viewing. These directories contain MP3 files that I do not wish to be downloaded. These files still need to be available for use in a flash media player. Is there a way to block access to all...
  13. D

    Javascript Help

    I am working with dhtml Popups on my site and i have been trying to figure out how to disable the scrollbar using javascript. I am able to do it properly in all browsers except IE the code im using is below. If anyone can help with this it would be greatly appreciated...
  14. D

    Email System

    I am able to receive messages just fine thus the message saying im having problems with my outgoing. The outgoing mail servers are both shown below and both require authentication. I listed them both since i have not been able to send properly from either one. Anyone have any ideas on why it...
  15. D

    Email System

    I have been trying for days to get my email to work properly but I have not been able to send emails the information i am using is as follows Outgoing Mail Server: mail.demonwares.com (server requires authentication) port 25 Outgoing Mail Server: (SSL) ciroc.x10hosting.com (server requires...
  16. D

    PHP find Directory

    I have been looking for a solution to this function for the last 2 days and im going nuts lol. If anyone has any ideas please share them. I need a function that takes a file name example('find_904972.php')searches directories starting at home directory to find that file and reports back the...
  17. D

    Email System

    I have set up my email through outlook and I am having issues sending emails. I have been able to receive them but for some reason all the emails i send are returned to me. Anyone have an idea why this is happening?
  18. D

    MySQL Functions

    Thanks again to the all knowing descalzo. I used your method for month but i did look into YEARWEEK() and decided to go with that. Thanks again for the help.
  19. D

    MySQL Functions

    I have been trying to figure out how to select the following from my database. Select information between beginning of this week and now() "SELECT * FROM database WHERE ____ " Is this correct for selecting all content from the beginning of the month to now SELECT * FROM database WHERE...
Top