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 gkittelson 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: *

  1. paulx82

    mod_rewrite with javascript frameset

    Hi siberian. I think you may be right about it being a mod_rewrite problem only. I forgot to mention before that I am running Apache 2.0.48 on Windows XP. I tried a few different rewrite rules including: RewriteRule content-([^-]*)-([^-]*)-([^-]*)\.php$...
  2. paulx82

    mod_rewrite with javascript frameset

    Hi all. I have a javascript frameset which I think is screwing up my URLs using mod_rewrite or it may just be my mod_rewrite rule, I'm not sure. The frameset: document.write('<frameset id=&quot;TopFrame&quot; rows=&quot;20%,80%&quot; frameborder=&quot;0&quot; framespacing=&quot;0&quot;>')...
  3. paulx82

    DTD and XSLT for HTML Script Tag

    Thanks for your comment, mulligh. I'll fiddle around with the script tags and see if it is definitely an IE issue. Chris, I take your view on board. At first glance, it doesn't seem worthwhile converting from XHTML. I was planning to store my data in XML and use XSL/CSS solely for presentation...
  4. paulx82

    DTD and XSLT for HTML Script Tag

    I'm in the process of converting my web site from XHTML/CSS to XML/XSLT/CSS. I want to use a single XSLT template for all my XML docs. I can easily add JavaScripts to my XSLT template file, but I don't know how I can add different JavaScripts to my different XML documents, have the XML documents...
  5. paulx82

    XML DTD mod_mime_magic problem

    I receive the following error when I browse a directory containing my DTD files through Apache (Directory Indexes enabled). [error] [client 127.0.0.1] mod_mime_magic: unexpected state 3; could be caused by bad data in magic file I have never touched my conf/magic file before and my dtds and...
  6. paulx82

    Tomcat and Apache with mod_jk-2 and virtual hosts

    Also, here is my workers.properties file: # BEGIN workers.properties # Definition for Ajp13 worker worker.list=ajp13 worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.type=ajp13 # END workers.properties The discipline used to write things down is the first step in making them a...
  7. paulx82

    Tomcat and Apache with mod_jk-2 and virtual hosts

    I've read about 6-7 tutorials on the web about how to set up Apache with Tomcat using mod_jk, all of them different to each other. I feel stupid. Here is my problem. I can get Tomcat running by itself. I have tried using mod_jk-2 to connect Apache and Tomcat and can bring up Tomcat Examples...
  8. paulx82

    Simple script

    Thanks for your reponse to my post, stormbind. #!/_/perl/bin/perl.exe $query_string=&quot;username=value&quot;; ($username, $value) = split (/=/, $query_string); print &quot;$username\n&quot;; print &quot;$value\n&quot;; This runs fine for me. Your shebang line looks a big odd, maybe a typo...
  9. paulx82

    Framesets and individual pages with dynamic &lt;title&gt;&lt;title&gt;

    I use SSI to include HTML for a consistent header and footer in my web site. The frameset page title is &quot;Such and Such&quot; and so is the title in all pages, as is defined in the SSI header. I wish to change the title in the individual pages using Perl. I know that the title of the...
  10. paulx82

    Changing user account names

    I changed my account name on Windows XP Professional from 'Paul Robotham' to 'paul' so I could use that account with a Linux Samba Server on my network. I now can log in as both 'Paul Robotham' or 'paul' with the same password. The folder used when I log in as 'paul' or 'Paul Robotham' is...
  11. paulx82

    Unmounting filesystem for fsck

    I need to repair the filesystem on my Linux partition in order to resize it with Partition Magic 8. fsck sometimes runs automatically, on startup, when my filesystem is too bad, but I cannot seem to run it manually. I've tried unmounting my filesystem in the single user run-level, but I get the...
  12. paulx82

    I am running Red Hat 7.2 (Enigma) w

    Sorry for leaving out the topic, everyone.
  13. paulx82

    I am running Red Hat 7.2 (Enigma) w

    I am running Red Hat 7.2 (Enigma) with kernel 2.4.7-10. I have installed usbmgr, usbutils, hotplug and modutils rpms. I am a linux newbie and the few howtos for usb cd-writers I have seen are a little dated. I'm confused. Should I use usbmgr to set up my USB devices or should I use the hotplugs...
  14. paulx82

    File Manager for Gnome

    I just put on Redhat 7.2 and used Linux for the first time, yesterday. I used the basic Workstation install with Gnome. I have only a 2 gigabyte hard drive and I was wanting to know how much space I still had on the disk. I can't work out how to find out how much space each of my folders and...
  15. paulx82

    Convert .mic to jpeg, gif or bmp without Frontpage

    I was able to get a version of Image Composer from a friend, so I won't be needing your offer. Thanks for your help, Tina. :)
  16. paulx82

    Convert .mic to jpeg, gif or bmp without Frontpage

    I have received a Microsoft Image Composer file, which I wish to edit in Paint Shop Pro. Is there any software, other than Frontpage (because I don't want to buy it) that converts .mic files to JPEG of GIF or any other format supported by Paint Shop Pro? I have been unable to download a trial of...
  17. paulx82

    Module not found in Jserv.conf's LoadModule directive

    For starters, JServ is old, not updated and not the best option for servlets anymore. Try using Tomcat or Resin. Have you downloaded the Java Servlet Development Kit and the J2SDK? You need them for JServ, as well as the full JServ installation, not just the DLL. You should always add...
  18. paulx82

    ASP Pages

    I use Instant ASP with Apache on Win98. You can get it from http://www.stryon.com/products.asp?s=1. There is also a compiled binary of Apache for windows that comes with Apache::ASP, mod_perl and SSL support at the Apache::ASP web site.
  19. paulx82

    Integrate Apache 1.3 with Tomcat 4

    I've been trying to integrate Apache 1.3 with Tomcat 4. Installation instructions say I should include the Tomcat .conf file into the Apache httpd.conf, but no .conf file for Tomcat exists, only server.xml How do I integrate this newer version of Tomcat with Apache? I have installed the J2SDK...
  20. paulx82

    Apache 2.0 - PHP 4.2 ISAPI - Win32 problems

    I've just upgraded to Apache 2.0 and PHP 4.2 and have found that the traditional steps to installing PHP with Apache do not work. I've tried using apache2filter.dll, as described at http://www.php.net/manual/en/install.apache.php, but still no luck. Several google searches have turned up nothing...

Part and Inventory Search

Back
Top