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!

Search results for query: *

  • Users: MSRez
  • Content: Threads
  • Order by date
  1. MSRez

    TCP Packet Redirection

    I have several Windows Media servers I wish to load balance and I am wondering if I can use a load balancing server to very efficiently rewrite or re-route data packets. I know that load balancing is relatively simple to achieve by using a software or hardware load balancer (Zeus for example)...
  2. MSRez

    Symlinks Redirect to http://domain rather than http://www.domain

    Hi, I have some symlinks set up and when accessing them on my domain e.g. http://www.domain.com/symlink, Apache seems to redirect to http://domain.com/symlink How do I stop this from happening? Thanks
  3. MSRez

    Mod rewrite - Directory Structure

    I am using the following code in my htaccess file which is almost getting the effect I want (which is for directories to be mapped to my PHP script). Options +FollowSymLinks RewriteEngine On RewriteRule (.*)/$ index.php?r=$1 This allows me to have URLs like example.com/dir/ to be mapped to...
  4. MSRez

    getElementById on IE4 Mobile

    I'm wanting to develop some simple AJAX-style JavaScript features to a website designed to run on mobile computers running IE4 but I'm having difficulty because getElementById won't work. Is there an alternative I could use? Thanks
  5. MSRez

    Non-Fully Qualified Redirects

    I have a problem on a server whereby if I try to open a non-fully qualified URL e.g. http://www.example.com/path, I am redirected to http://example.com/path/ instead of http://www.example.com/path/ It is causing problems on domains that don't have their DNS set up in such a way as to allow...
  6. MSRez

    Upload Progress with PHP and Perl

    Hi, I'm trying to build an upload form that incorporates an upload progress status bar. I would like to do it using as much PHP as possible, using the basic idea of: Perl handles the client to server file transfer and stores the file temporarily in a directory. During the upload, PHP monitors...
  7. MSRez

    Server-wide DNS geo-blocking

    I have a server with content I'm wanting to geo-block and I'm wondering if anyone knows of any software that can accomplish this. It could be on a specific port or protocol if that is any easier. If anyone could point me in the right direction, I would be really appreciate it. Thanks
  8. MSRez

    Submit form to pop-up with two buttons

    I have two buttons in a form and I would like to have one of them submit the form into a pop-up window and the other to submit the form normally. Is this possible?
  9. MSRez

    Apache config setting - file control

    I have a PHP script running on someone else's Apache server which accesses variables in the format of "page.php/var1/var2" (doesn't use mod_rewrite). On most servers this set up is fine as Apache just interprets that it must display page.php and effectively ignores "/var1/var2" that follows...
  10. MSRez

    Apache SSL Certificate Passphrase Error

    I have been trying to install an SSL certificate and have gone through all the necessary steps in order to do so but when attempting to add the appropriate directives to the httpd.conf and restart, Apache refuses to start because of a passphrase error I'm assuming is to do with the certificate...
  11. MSRez

    REGEXP - Checking Postcode

    I'm not really familar with using regexp with MySQL so hopefully this shouldn't be too difficult for anyone in the know. I'd like to match the start of postcodes to certain letters e.g. the postcode beginning with S should match postcodes beginning with S followed by a number, followed by any...
  12. MSRez

    Limiting results per criteria

    At the moment I have a script that runs through links in several categories and orders them with the most recent first. The links are added at different times so some categories have more recent links than others. However, I want the same number of links from each category to be displayed, say...
  13. MSRez

    File Uploading User Permissions Problem - Safe Mode ON

    I'm having difficulty with the uploading of files to dynamically created directories, i.e. those that are created by PHP and are assigned an Apache user ID. The problem is that uploaded files cannot be copied to these directories when safe mode is set to on because the user IDs for directory...
  14. MSRez

    Port Listening/Connect with PHP

    I'm trying to create a polling program in Java that monitors some simple things about the network system it is running on. I would like this data to be 'sent' to a PHP script running on a networked web server which interprets the data periodically. What I need to know how to do is forming the...
  15. MSRez

    Get Current Windows User

    I'm writing a program that requires fetching the current Windows user that is logged in. I did find a package called swin that seems to be able to do this but it costs a lot of money to buy which isn't really an option for something as simple as this so I'm wondering if there is an alternative...
  16. MSRez

    Who's Logged In - with PHP

    My client would like a script that allows him to monitor users that are logged in to various SNMP-enabled systems but I can't find any way of actually getting the user -- is this possible?
  17. MSRez

    Tunnels - HTTP and UDP

    Hi there, I connect to the internet through a VPN, but a lot of services are port blocked. I have setup an HTTP tunnel to get around the problem but where UDP traffic is concerned I'm no better off. Is there such a thing as a UDP tunnel that I could setup and use that works with multiple...
  18. MSRez

    Modify Sprite Lightness/Brightness

    I'm working on a Director project and I'm wondering if there's some kind of syntax that can be used for sprites/cast members that works like blend but for the lightness/brightness of a sprite. In context: I want to vary the lightness of an image according to a variable so it will appear darker...
  19. MSRez

    Advanced GD Usage: Obtaining fixed ratio area from image to resize

    I've recently got into doing a lot more with GD. What I am now trying to do is to resize images to thumbnails, retain their original aspect ratios but ensure they fit within the same area each time. To do this, it doesn't matter if some clipping occurs on the edges of the original images to...
  20. MSRez

    Saving Created Images in GD

    I can generate a dynamic image using PHP and GD but I don't want the script to have to do this everytime because it's not too good for the server load. Instead, I want to generate the image once and then save a static copy of it. How exactly can I save the image to a file after I've dynamically...

Part and Inventory Search

Back
Top