Jump to content
xisto Community

xpress

Members
  • Content Count

    724
  • Joined

  • Last visited

Everything posted by xpress

  1. No need to worry about that offline mode in WAMP server. Offline mode means only you can access your web server. While online mode means any one in the internet can access your server(means working as a real webserver). Any way did your problem solved? or do you need any further assistance?
  2. Hi Websey.....Welcome to Xisto. Looking like you already understood many things about Xisto, so no instrucitons for you. By the way...very detailed and nice introduction. Hmmm.....you've chosen very interesting career(CEH). I too like it. I'm planing to do a certification in future. If you complete it quickly, I'll ask your help if I need any in the future. All The Best. Keep posting here and be a part of our community.
  3. Hi leeindia(Arun). Welcome to Xisto, the best freehosting service. Nice to see another Indian here. How is your pink city? As bhavesh told there are many other fellow Indians here...including me. So you'll enjoy a lot discussing the political development and other situations in India and around the world. And I too like cricket...bhavesh and me are active posters of our cricket topic "Indian Cricket". Hope you'll also actively post there to discuss more about our team and cricket. This community is very friendly and active. You'll enjoy everything here. Come, start posting and be part a of our community.
  4. Hi Irrepsytomrer. Welcome to Xisto, the best free hosting service. Already Ruben and Harrison told you what to..try to follow them. This is a very friendly community. You'll enjoy a lot here. Ask us if you have any doubts. Come start positng and be a part of our community.
  5. For PHP......use WAMP server. It has Apache Webserver, MySql and PHP included. So no need to install all of them separately. I have been using it for some time. It is easy to install and manage. Another one is XAMPP.....but I suggest WAMP server. Download and install it. Ask me if you need any assistance setting up it...
  6. You're welcome You'll Try a webserver or mail server? Setup a mail server...(I think you already have a webserver installed)
  7. You hadn't mentioned what problem you are getting. But I am assuming that you can't connect or send mails on localhost using your program. So I am correcting your mistakes as per my assumption. First of all I would like to tell you some simple basic things in this. You must have a mail server installed and the service should run in the background if you want to send mails to your localhost. If not it will give you an error that "Failed to connect localhost...." Your mail program and some names you used are quiet confusing for me.... sorry, I am changing them for my convenience... here is an easy version for your program. I'll point out the mistakes at that particular part of the code. This is your form....lets name it mailform.html <form action="mymail.php" method="post"> Enter your Name:<input type="text" name="name" /> <br />Enter your Email:<input type="text" name="email" /> <br />Enter your Message:<textarea name="message"> Enter your message here</textarea><br /><input type="submit" value="Submit" /></form> Now the php program that handles your code...lets name it processmail.php(as in form).I changed this program also to make it clear and easy to understand. <?php//you can use your foreach here but that is confusing$name=$_POST['name']; //this will receive the name$email=$_POST['email']; //this will receive the email address you mentioned$message=$_POST['message']; //receives the textarea$recipent="yourname@yourdomain.com"; //you should set this in your local smtp server...this is to in mail function$subject="user details form"; //this is subject//This is the main mistake you made I think...you must have From header in your mail funcion or you should set it in php.ini file.$header="From:$name"; //From header is must$header .= "Reply-To:$email"; //jsut adding headers$send=mail($recipent, $subject, $message, $header) or die("failure"); //recipent, subject and message are mustif($send)echo "success";?> I write this code as per my assumption of your mistake. Modify this code but follow the mail functions syntax.... First download a mail server like hMailServer(I'm using this...nice one) or someother else. And add a domain like mydomain.some and create a new mail account in that.....use that as your recipent address. If your problem is different or if you can't understand this...post your problem(or error you are getting) clearly here and I'll try to solve your problem
  8. Yes.....All your posts will be counted. But you should have minimum 5 posts to see your myCents and you have to wait for 4 to 5 hours. By the way you must register at Xisto - Support.com/billing with the same email address you used to register here to see your myCents...
  9. Mostly I use the Cyberlink PowerDVD, it was bundled with my DVD writer. PowerDVD gives me more control over the visual settings and sound effects. The controls are really cool. Thats why I like it. My next preference is VLC media player. It can play almost any format of video...so I use this to watch all the formats not supported or giving problems with powerDVD.
  10. xpress

    Hello There!

    Hello maylx...Welcome to Xisto, the best free hosting ever. You'll never regret for selecting this service. You'll get top class hosting with almost no downtime. And the forum is very friendly and active. You'll enjoy a lot here. Already harrison, Mich had given you important information. Try to follow them. And don't forget to register at xisto with the same email address you used to register here. Enjoy your stay here. Start posting and ba a part of our community.....happy hosting
  11. WOW...Many Many Happy Returns Of The Day OpaQue....Happy Birthday. I too feel you should take rest...to work more energetic on these new projects....Enjoy Your Birthday... Little imagination...not that much great of course ....Long time ago....god was making humans....he was creating everyone with some reason and purpose to their birth and..... suddently realized that there will be huge competetion in world wide web, and the hosting of websites will be far and costlier away from normal man(woman)...so he made a kid...from the sacred word -Shree- and sent him to the world to start a new empire of hosting to serve free hosting to all common people...He came to this world on Dec 1st and some years later started this community......Thus the creation of Xisto
  12. Yes...Exactly. You don't have to worry about hosting credits anymore. Since you had already moved your site to Xisto - Web Hosting just maintain enough xisto dollars. Thats it. No more credits. Forget them. If your domain is not registered with xisto then you can also transfer your domain to xisto to pay domain name charges with myCents with future. Happy hosting..
  13. Yes...A tragic end...But we can't blame the England team. Their security is more important than the game. Coming to the test series...BCCI has confirmed that the Test series will contine as per the schedule. England had requested BCCI to change the Mumbai test to somewhere else, and BCCI agreed and changed it to Chennai. Hope everything will go smoothly...Definitely the test series will be much more interesting....England will try to review its weakness in the gap and will try to overcome it. So..more intersting series is ahead....
  14. Yes...I agree with all above. You can buy one here with myCents. And your domain name will be registered with your name so no need to worry about scams as well. Post more to earn more and buy a top level domain here..... My Opera browser is giving a fraud warning with that link. I think some one had reported that site harmful.
  15. Nice selection...C is the easy programming language for the begginners and gives you foundation for all other complex programming languages. The link you had given is not good for beginners of C. Thats assuming some familiarity with programming. And that terrible red background color...blocked my mind for some time. Don't stress your eyes too much at that site. Google for ebooks about C language, you'll find many. Or if you want online versions....just look at this.... C language tutorial. Thats looking good and doesn't assume any previous programming language I think. Just go through that to find out whether its easy for you or not. If I find any other good sites I will post them here... Anyway whatever tutorial you chose....just practice and post any problems or doubts you face....many members are here to answer your doubts gladly(including me, of course)....
  16. Hmmm.....Deleting or blocking viruses without annoying popups is some good feature of any antivirus. Many times it is advantage. But some times it is disadvantage as well. Because, some times it will create confusion. There are things called false positives. Which means the antivirus software mistakenly treat some programs as viruses. For example most antiviruses will show cracking and hacking tools like your keyloggers as viruses because these programs have some virus(or trojan) looking patterns. If the Anti-Virus software will ask us what to do...then we can choose to run these programs or delete them. So no need to worry. But...whenever we tried to install them and if the antivirus is deleting them without our knowledge then we don't know what is happening and what is the problem. This is disadvantage. But I agree, Deleting or blocking viruses in the background is very advantageous for all non-technical users. No annoying popups for them. By default AVG does this. Almost all antivirus has this feature but we need to change the settings.
  17. No. Your credits won't be converted to myCents. Once you register at Xisto - Support all your previous posts will be counted for myCents regardless of your current hosting credits. You can safely forget about them and move your current website to Xisto - Web Hosting. I think, there is no need to worry about public showing of myCents, because this is not your xisto balance. These myCents are temporary...in the sense they will change every 4 to 5hrs(if you have any new posts). And if you cross 100 cents they will be added to your xistobalance and your myCent calculation will start again. So...this displaying myCents won't do any harm. And if I remember correctly OpaQue will remove this public displaying of myCents after Xisto is completely migrated to Credit System V3.
  18. You are welcome.. If you need any further help in installing this script, or any other help ask me...
  19. So, basically what you need is a Guestbook. If you want a quickfix solution for that download and install the following Guestbook scirpt..Guestbook script download. No database is required for the above script. It has many other features like spam protection, banning ips etc.... Just go to that link and you'll find many of its features. Follow the installation instructions given there. If you need any help in installation ask me and I will help you.
  20. This is one of the biggest attack on our country. It is showing our intelligence failure. The news has confirmed that the terrorists are Pakistanis and all of them are youngsters. They came from Karachi to Mumbai on boats. The NSG operations are still going on in Mumbai. Still 40 victims are in Terrorist's coustody. 7 terrorists were killed this morning by black commandos. Everybody is hoping that the Operation would end this afternoon and everything will be under control. Hope everything will be under control. My condolences to all victims...
  21. Well yes....You can use WebMail Notifier extension in FireFox to login automatically without going throuhg the login page. Even you can check multiple accounts at a time with that extension. Install that extension and add your login details and you're ready. Thats pretty easy....try. Coming to the Outlook express issue, yes you can use GMail in Outlook express. Go to the following link to setup your gmail account in Outlook Accessing GMail in Outlook Express
  22. If I could, I wish to talk to Swami Vivekananda. I'm seriously searching for his audio tapes on the net, atleast to hear his voice and words. How lucky I am....if I can directly talk to him. He is my rolemodel. He is capable of teaching things worth for lifetime in those 5 minutes...
  23. I am still using the web version. I had used pop3 account before, but that was not much fun, and lacks many important features. Usually my firefox extension WebMail Notifier manages all my email accounts inlcuding my multiple gmail accounts. Now, I don't have to login using default login panel, my WebMail extension login automaticall when I start firefox and checks all the mail accounts and inform me if I have any new mails. And also it will periodically checks for new mails. So, if I got any mail or want to compose a new mail, i simply right click on the WebMail icon in firefox, then select the desired account and it will automatically login me to that mail account. It is very handy.
  24. Yes...I've bought one recently with myCents. It took 3 days to accept my order. Finally I got my domain. This is my first Top Level Domain. I am very happy with myCents and Xisto - Web Hosting.
  25. The name servers are ns1.computinghost.com, ns.computinghost.com i think. Besides, you have to wait for atleast 24hrs to propagate the name servers throught out the world. Coming to the cpanel issue, did your hosting order accepted? Your order should be accepted to login to your cpanel. And credit system 2 is no more...don't worry about that login.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.