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 wOOdy-Soft 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: stasJohn
  • Content: Threads
  • Order by date
  1. stasJohn

    .so file

    Where do I find so.# files? For example, I need libssl.so.6, but my rpm utility is all messed up. Where can I get that file. Thanks
  2. stasJohn

    Help... uninstalled openssl and now nothing works

    Okay, so I'm a newb and did something really really stupid. I'm trying to set up ssl on apache. The instructions I was following suggested build openssl from source build mod_ssl from source rebuild apache with mod_ssl support First, I realized that there was an rpm version of openssl already...
  3. stasJohn

    address search

    Hi all. I'm using sql server 2005 and I guess I'd call myself an sql intermediate. Though I've had more experience with mysql than mssql. The table looks like... name, address1, address2, city, state, zip I want to be able to use something like "city, state" or "address, zip" as a search...
  4. stasJohn

    auto login

    Is the following possible? A client runs a paid membership service. When a member joins, they are given a login/pass for multiple resources (websites). Whats happening is, people are joining and passing the logins for these various websites to their peers, friends, etc. So, the client wants...
  5. stasJohn

    allow access to a single file

    Hi all. The company network is a linux box (FC 5) running apache 1.3. It is also closed to the outside. We have a company wordpress blog. A couple people have complained that they can't subscribe to the RSS feed from their google homepage. This obviously makes sense, because the network is...
  6. stasJohn

    is curl secure

    I'm not sure if this is the appropriate place to ask this, but here goes. I'm building an account sign-up form for a bank. Basically, they don't have the facilities to store the information in-house so we are using a 3rd party "secure-forms" service. So, the application is a three step...
  7. stasJohn

    dual boot system

    I'm sure this is been asked, but I wasn't sure how to search for it. I'm in the process of creating a dual-boot system with ubuntu and winxp. Thats fine and dandy, but I'm wondering about my second drive. I have a second drive (160gb) which I use for file storage and backup. It's currently...
  8. stasJohn

    Interesting query

    Hi, I'm curious if the follwoing can be done. First, here's sample table data | id | parent | ordering | | 1 | 0 | 1 | | 2 | 0 | 2 | | 3 | 0 | 3 | | 4 | 2 | 1 | | 5 | 2 | 2 | I want to perform a query which returns the ids...
  9. stasJohn

    Multiple Apache Instances

    I realize part of my question has been answered in http://tek-tips.com/viewthread.cfm?qid=951851 but I need some further clarification. Basically this is what I want to do. Currently I'm running a linux (fc2) box with apache 1.3, mysql 4 and php 4. I want to install a second instance of...
  10. stasJohn

    summing columns of two tables into single value

    Hi all Here's the tables: stats_activeemployees | id | lname | fname | stats_customer | id | login | stats_custcredit | cust_id | amount | stats_custredeem | cust_id | amount | relationships: stats_activeemployees.id = stats_customer.login stats_customer.id = stats_custcredit.cust_id...
  11. stasJohn

    VNC connection keeps dropping

    Hello I'm running a Fedora Core 2 box. The vnc service starts up at boot and initializes three vnc servers. from /etc/sysconfig/vncservers VNCSERVERS="1:user1 2:user2 3:user3" Each user does have an xstartup file in their home folder (and passwords were created for each user). from...
  12. stasJohn

    script question

    I'm creating a shell script to automate the creationg of web space on my server. Basically, the first step is it creates a new user and sets the proper permissions to the user and public_html directories. I perform the following line useradd -G ftp,apache -m -n -p password $1 $1 is obviously...
  13. stasJohn

    networking newbie

    I'm not sure if I'm posting this in the right forum, if not please suggest where I should ask. I set up a linux server (apache 1.3) at work for web development. I set it up so that outside the LAN, the server would not be accessible except for certain web services like the w3c validator or...
  14. stasJohn

    networking newbie

    I'm not sure if I'm posting this in the right forum, if not please suggest where I should ask. I set up a linux server (apache 1.3) at work for web development. I set it up so that outside the LAN, the server would not be accessible except for certain web services like the w3c validator or...
  15. stasJohn

    blocking ips

    Hi I'm setting up an apache webserver which will be used as a development and staging server as well as host some internal applications. I'd like to have the webserver locked down from all ip addresses except for the LAN computers in the office as well as some outside ips (such as the w3c...
  16. stasJohn

    vhosts in local network

    NameVirtualHost *:80 #default <VirtualHost *> DocumentRoot "C:/Apache/htdocs" ServerName localhost </VirtualHost> #web1 <virtualHost *> DocumentRoot "C:/web1/www" ServerName web1.localhost </virtualHost> Now, if I want someone within my local area network to view web1, how would...
  17. stasJohn

    using Like function

    I'm using MS Access 2003 (visual basic 6.3). I'm running through a database to find duplicates. Basically, I want "fakecompany" and "fakecompany, inc" to be returned as a match. SELECT db1.company, db2.company FROM db1, db2 WHERE db1.company LIKE %db2.company% Obviously the above sql does...
  18. stasJohn

    accessing form elements

    setup 1 xml file 1 xsl file The xsl file just transforms the xml data into an html page. This html page also includes a form for selecting the year. I also have embedded javascript which reads the value of the form. When I try to access the form elements; document.forms[0].year...
  19. stasJohn

    character issue

    I have strange characters appearing in my mysql data wherever a ’ (acute accent) appears. Mysql converts it to ’ (a bunch of chars) First off, I collect some data from a text field. I pass the information through a couple of functions... 1) trim 2) regexp to replace multiple spaces with a...
  20. stasJohn

    xml_parse question

    php 4.3.11 I'm reading an rss feed and listing the items on my homepage. I'm using Pears XML_Parser class If a feed item has an apostrophe in it, it is converted to a question mark. So, <item> <title>Lot's of fun</title> ... </item> is printed out as "Lot?s of fun" Here's my code...

Part and Inventory Search

Back
Top