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 SkipVought 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. tewari68

    READ_ERROR_FROM_SERVER using Oracle HTTP and weblogic

    Hi, I am new to this and trying to install Primavera on WLS, the pre-requisite is to install oracle http server, I installed oracle http server and standalone it works fine but after making changes for using backend WLS, I keep getting READ_ERROR_FROM_SERVER and not sure how to tackle this...
  2. tewari68

    ProxyTimeout for only one rewrite rule

    Hi Experts, Appreciate your help on this issue. Thanks
  3. tewari68

    ProxyTimeout for only one rewrite rule

    Hi, I need to put a proxytimeout value for only one rewrite rule and not for all the proxy requests, as one backend app server to which requests are being proxied is causing some issues. Appreciate if anybody can help me how to do this. Can we use proxytimeout in ProxyPassReverse directive like...
  4. tewari68

    Using RewriteCond %{REQUEST_FILENAME} !-f in apache rewrites

    Hi, I have to write a rewrite rule whereby if a url does not have a trailing slash I need to append the trailing slash. For ex. http://example.com/a/b/c should redirect to http://example.com/a/b/c/ I have this rewrite rule but this does not work <code> RewriteCond %{REQUEST_URI} /a/b...
  5. tewari68

    RewriteCond for switching directories

    Hi, I have a apache setup where there is one apache server in the DMZ which acts as a proxy and proxies all requests to the servers inside the firewall. Now depending on the HTTP_REFERER I want to server the pages from different directories for ex. if http_referer is...
  6. tewari68

    Download Manager - Server Side

    Hi, I am looking for options for allowing large file downloads from website (upward of 1 GB files). Are there any server side download managers / accelerators which can monitor download and resume the download from the point where the client download stopped the last time. I know there are...
  7. tewari68

    Multiple Vhosts and multiple instances of apache on one unix box

    Hi Noway2, Thanks for your quick response, we have a load balancer in front of apache servers which are proxy servers. So requests will still come to port 80 but LB will redirect it to appropriate port, users don't have to know the port number. We need to have IP based VHs. Appreciate if you...
  8. tewari68

    Multiple Vhosts and multiple instances of apache on one unix box

    Hi, I am configuring apache with multiple virtual hosts and multiple apache instances running on the same unix box. I have the following design, appreciate if someone can validate if this is the correct way or there are any potential errors in this Apache instance 1...
  9. tewari68

    Configure Apache HTTP Server for OAM Webgate

    Hi, I have to configure oracle webgate for apache http server. Appreciate if anybody can point me to some tutorial explaining the steps for doing this. I have no knowledge of oracle identity manager or OAM. OAM webgate id and policy have already been configured by the appropriate team of the...
  10. tewari68

    LDAP with HTTPS

    Hi, Can I use LDAP for user authentication for an HTTPS site or do I need to use LDAPS. Thanks, Mohit
  11. tewari68

    Accessing large number of files from a directory

    Hi, Here is my code <? $dir = "/usr/local/xmlfiles"; // open directory and parse file list if (is_dir($dir)) { if ($dh = opendir($dir)) { // iterate over file list while (($filename = readdir($dh)) !== false) { $hotelinfo_key = array(); $hotelinfo_value = array(); $images_val...
  12. tewari68

    Accessing large number of files from a directory

    Hi, I have a php function to parse a given xml file and make a database entry. My problem is I have to read files from a directory which contains more than 100k files, all xml, and parse them one by one and enter records in the database. When I run the php script it times out after a certain...
  13. tewari68

    Putting xml data into mysql database

    Hi, I am a newbie to xml/php parsing. I have to parse xml data feed files from a vendor and create a table structure in mysql and enter the data into those tables. Have never done this. Familiar with some xml parsing using DOM and simplexml api's of php. Appreciate if any one can guide me where...
  14. tewari68

    Sending a file to HTTP server via a multi-part flat form

    Hi Salem, The file upload part works perfectly, I had to write a server side cgi to get all the content and write it to a file. The file upload works fine, however I have some other issues, i.e. if I try to send more fields in theh mulitpart form-data post request I keep getting this error...
  15. tewari68

    Sending a file to HTTP server via a multi-part flat form

    Hi, Calling all experts. Can someone help me out on this one. Or is it something not done by anybody earlier and not doable ???????? Thanks
  16. tewari68

    Low Level Perl sockets

    Hi, I am fairly new to perl programming. I am trying to write a client and a server perl socket where by the client socket sends a file to a server(POST request, port 80, http) and on the server side the file is received by the server socket and written to a directory. I know there is a...
  17. tewari68

    Sending a file to HTTP server via a multi-part flat form

    Hi, I need to send a flat file to http server. The file that needs to be sent is an xml file which is created by another routine. FTP is not an option, I have to send it to an http server via a multi-part form. so far I have this code int Send_to_DB_via_HTTP(string filename) { int sock...
  18. tewari68

    Loading two javascript libraries on one page

    Hi, This is my php page where I am calling both the header menu and the slider javascripts. <html> <head> <SCRIPT SRC="<?echo $path."slider.js"?>"></SCRIPT> <SCRIPT> var mySlider4 = new Slider( "Slider4" ); mySlider4.defaultValue = "<?echo $senstvty;?>"; with (mySlider4) {...
  19. tewari68

    Loading two javascript libraries on one page

    Hi Dan, Thanks for the quick reply. I see that window.onload is not used in any of the libraries. I found these libraries over the net and modified them for my purposes. I am herewith attaching one of the libraries, appreciate if you can review and suggest changes to this library. The other...
  20. tewari68

    Loading two javascript libraries on one page

    Hi, I have two different javascript libraries for two different functions(a drop down menu and a slider).Though both the libraries have different variable names and different functions, however both these libraries use this.onmouseover/this.onmouseout etc, and I think that is causing some...

Part and Inventory Search

Back
Top