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 Chriss Miller 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 siberian

  1. siberian

    error while compiling apache

    Try compiling apache 2.0 See if that works for you. So far you have tried compiling 1.3.x and you have tried a binary installation. Try downloading the latest 2.0 (not 2.1) and executing this ./configure --prefix=/usr/local/apache2
  2. siberian

    error while compiling apache

    No man, read what I wrote. You are using ./configure --prefix=/usr/local/lib/apache why are you installing apache into a LIBRARY DIRECTORY? You have to understand that this is not a place for apps. Run it like this ./configure --prefix=/usr/local/apache and it may give you a different...
  3. siberian

    error while compiling apache

    Why are you installing apache into the libs directory? That may be causing a conflict since apache itself will want to install libs there and it might be getting circular. Try /usr/local/apache instead for your prefix. its a long show but its a shot :)
  4. siberian

    Calling a Java Servlet

    No, ths java servlet route is pretty easy. Directly calling a C or COM lib will be even harder. You get into library wrapping in XS etc etc.
  5. siberian

    Calling a Java Servlet

    Your taking many distinct concepts and meshing them into one thing that is not really a real thing. 1) You can't call java libs directly from perl 2) You can't pass in memory structures (variables) between Java and Perl (at least not easily) You need perl to act like a webbrowser and request a...
  6. siberian

    Calling a Java Servlet

    You are trying to do something technical. Thi is not jargon. Look,the servlet is running as a webapp. You can't just "call" the library, you have to access the webapp. This is the core concept here. The libary must run in a servlet context via a webserver. This means you must make perl emulate...
  7. siberian

    Using - $id = $query->insertid, not working...

    Using $sth->{'mysql_insertid'}; is a mysql specific construct and will not cross to other databases. Not a big deal if your doing one off code but in any sustainable system that sort of dependancy is not a super fun thing. Don';t get me wrong, I do it all the time and it hurts :)
  8. siberian

    Store Data from a form offline

    A simple VBSCript app is probably your best bet. I'd look in that direction.
  9. siberian

    Can someone please confirm my Synopsis

    modperl is a tool that integrates perl directly into the apache webserver resulting in huge speedups and lots of new functionality. One of those functions is the ability to continue to maintain data between requests. With CGI after each request all your data is lost or unreliable.
  10. siberian

    Store Data from a form offline

    CGI is not going to help you here, CGI requires more then perl, it requires a webserver and you won't be installing that on your users IPAQ's! I agree with Paul, build a custom app, you can even do it in VBScript probably and still run it in a webcontext, just locally.
  11. siberian

    cgi sendmail with yahoo and aol accounts

    Use Net::SMTP, your probably missing some headers AOL and Yahoo require. Why hand assemble SMTP protocol when there are perfectly nice modules to handle that for you?
  12. siberian

    Apache Logging for performance tests

    %D is in milliseconds, %T is in seconds. Both should give total client connection time according to the docs but it does seem a bit vague, test it and let us know.
  13. siberian

    Mod_perl not working

    Since your using RPM your kind of in the worst spot. I suggest telling redhat to completely remove apache and modperl, going into the perl directory and removing the 'Apache' directory (where modperl puts its apache module) and then reinstalling both. You have a version conflict in your core...
  14. siberian

    error while compiling apache

    What configure options are you passing?
  15. siberian

    Can someone please confirm my Synopsis

    Not sure on the constants stuff but your take on the globals is correct. Keep in mind that these are all local to the process running perl. So in a web context such global declarations are not shared across apache memory space. You can use modperl for that if you'd like. I've built some high...

Part and Inventory Search

Back
Top