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 Rhinorhino 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: tewari68
  • Content: Threads
  • Order by date
  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, 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. tewari68

    Posting Data from a php form to two servers

    Hi, How can I post a form data on two different servers at the same time. The two servers are in HA cluster and the user connect to anyone of the servers, I want to submit the formdata of the user to both the servers simultaneously. The servers can locally see each other with an internal...
  15. tewari68

    strpos not working php5.0.5

    Hi, I am seeing a strange behaviour regarding strpos function using php5.0.5/apache2 In the following code function Clean_header_from($header) { if(strpos($header,"<") === 0) { $clean_head=str_replace("<","",$header); $clean_head=str_replace(">","",$clean_head); }...
  16. tewari68

    Enable Session Support php5.0.5

    Hi, I upgraded to php5.0.5 (debian sarge 3.1 / apache2) when I run the phpinfo() test script I don't see any session stanza in the output, how can I enable ession support and also how can I enable mysql support as that stanza is also missing in the phpinfo() output. Appreciate any help. Thanks,
  17. tewari68

    Non-static method DB::DB() cannot be called statically error

    Hi, I upgraded from apache1.x and php4.x to apache2 and php5.0.5 (debian). Now my code breaks, though no changes have been made in the code, giving me the following error error mesg Non-static method DB::DB() cannot be called statically . Appreciate any help in this regards. Thank You
  18. tewari68

    upload/download video files

    Hi, I have not done this before, can anybody guide me how to write a php script for uploading and downloading of video files. Is it any different from simple upload and download of files in php. Also I want to give users the option to either view the video files online or download and video...
  19. tewari68

    Download multiple image files from server to client's machine

    Hi, I have to provide a functionality where my clients can browse images folder on my server and select multiple images to download on their computer. Could be done by http request and zipping the files. I would appreciate if anybody can guide me how to create the zip file and point to any site...
  20. tewari68

    Parsing multiple xml files

    Hi, I have written a php routine which parses a xml file and puts the data in the database the script goes into a certain folder looks for .xml files and then parses them one by one and does the database entry. I have written this code so far however I am not able to get the right sql queries ...

Part and Inventory Search

Back
Top