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 TouchToneTommy 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: namida
  • Content: Threads
  • Order by date
  1. namida

    SMTP Server not delivery

    I have several questions: I installed SMTP virtual server in Win Web Server 2008 R2 It's purely for delivering email, I have not tried receiving mail. It is able to relay / send email sent from Java servlets. I'm trying to send an email through bmail / command line. I tried vbs script, but...
  2. namida

    CDOSYS not sending with parameters

    Hi I have a script (took it off from Microsoft help and did a bit of change). The original was for CDONTS and I changed it into CDOSYS. The intention is to use it via command line CSCRIPT. Option Explicit On Error Resume Next Dim objSendMail, MyMail, oArgs, ArgNum Dim strTo, strFrom...
  3. namida

    Strange Session Behaviour

    HI. I wonder if anyone has ever experienced this. I am using PHP 4.3.x with Apache and MySQL database. We have a forum in a community portal. In the forum ,people can create topics or reply. Simple. The strange thing is that on two rare occasions, somehow a new topic was recorded to be...
  4. namida

    Run Java Program in Background with Exec Problem

    Hi all, I'm trying to execute a java program (very long duration process program) and I want PHP not to wait for it to finish. I tried this <? $exMe = system('/opt/j2sdk1.4.2_01/bin/java -cp /projects/web/dewi Looping &'); print "finish"; ?> but it still hangs , anyone knows how ? Thanks...
  5. namida

    Button like in Adobe Acrobat 7 Tour

    Hi! I downloaded the Discover & Try Adobe Acrobat 7.0 http://www.adobe.com/products/acrobat/pdfs/a7_tryme_gb.pdf and there is a navigation menu on the first page (left upper corner) which I found out after a few trial that they are recognized as buttons. But when I openned their properties...
  6. namida

    OCIFetchStatement arguments- Oracle

    I am using PHP 4.1.1 and 4.3.1 according to the manual, the function OCIFetchStatement have 2-5 arguments which are ocifetchstatement ( resource stmt, array &output [, int skip [, int maxrows [, int flags]]]) But when I tried this in my code...
  7. namida

    Query Locked

    Hi, I have an application which has queries of about 8 inner joins (takes around 0.3 second of execution) . This application is accessed from around 8 different points ( web and wap front end). Since it got so many hits the processes in mysql starts to lock and a lot of people can't access the...
  8. namida

    Force 404 with header

    Hi... I'm trying to force a 404 page with <? header("HTTP/1.0 404 Not Found"); exit; ?> I tried this On IIS and also on Apache (under FreeBSD) but both just gives me a blank page. i didn't make any custom 404 pages, just hoping that the default ones will show up. The page only have the...
  9. namida

    Zipping File

    Say I have a user list, and every user has his/her own profile then the user have a friend list.. so I want to give the user an option where she / he can download the friends' profile. Hopefully in one shot, now they can do it but first they have to view each friend's profile and save it one...
  10. namida

    XHTML compliancy

    I checked my website using w3 and i got a lotttttt of error. Some of which I don't think it really mattered. TO what extent does XHTML Compliancy matters? Personally although I can do CSS and DHTML it's a bit of a hassle. I'm a full believer in the old HTML. Although I know there are things...
  11. namida

    Seperating Database Connection from Codes

    Hi, I need to seperate my connection statements <? $db = mysql_connect(&quot;localhost&quot;, &quot;something&quot;,&quot;somethingelse&quot;); mysql_select_db(&quot;something&quot;,$db); ?> and all my other codes in another page. I want to do this because I don't want to change every page...
  12. namida

    Make dir

    Hi. I'm trying to make a directory through PHP. I tried using the mkdirs function that was posted in PHP website and also tried directly testing the mkdir function. This is the test without the function $mk=mkdir(&quot;/home/www/articles/test&quot;,0766); echo $mk; With or without the...
  13. namida

    550 chmod

    I am using WS_FTP to do uploads, etc The server is apache and it's not with me (web hosting) I'm trying to make a new directory, to write and read files into/from it. The directory works, the file is there but when I view with the ftp I can't see the files. The only way I know the file is...
  14. namida

    Not(not in ()) ? how ?

    My logic is all mixed up I have a table for language choice login* prefno* lang_spo 1 1 English 1 2 Chinese 1 3 French 2 1 English 2 2 2 3...
  15. namida

    Load picture from internet

    Hi How do I do it if I want to load a picture from the internet. I have a database shared between VB program and also PHP in the net. The database holds the path to the file eg. http://www.here.com/images/now.gif How do I load the image from my VB? I want to show the picture in the program...
  16. namida

    the textarea new line problem?!

    Hi I browse through the forum and found similar problems, but I can't really understand how to apply it to mine. I'm sure a lot of people have faced this before. Anyway I would greatly appreaciate it if someone would explain to me how to display text with new lines I have a textarea, and the...
  17. namida

    refused by Opera

    My page doesn't work when I tested in Opera. It works in IE though. I only have those two browsers I took the code from one the forum But it even refused alert. Anyone knows what I'm doing wrong? function subForm(){   for (x=0; x<document.myForm.elements.length; x++){     if...
  18. namida

    HTTP_REFERER shortcut

    I posted this message in PHP as a part of my post but I think it's more appropriate here Has anyone noticed this? But if you're using Dreamweaver MX and use the shortcut function where you just type $_SER and enter and it will type $_SERVER for you For the list of variables.. when you choose...
  19. namida

    request permission to advertise on email or is it Spam?

    I know a company who wanted to advertise its products through forwarding email. So I asked them how do you search this email, and they said from the web and other ways.. so then I asked him isn't this spam? So he said , oh we know about the spam thing. So first thing first we send them an...
  20. namida

    Mail Header sent as body

    I have a mail code who sends a mail when a user signs up Everything works fine, except that if I put any other header except From: it goes into the body This is my code for the headers $From = &quot;register@domain.com&quot;; $Subject = &quot;Welcome to &quot;; $headers .=...

Part and Inventory Search

Back
Top