Jump to content
xisto Community

vasilevich

Members
  • Content Count

    10
  • Joined

  • Last visited

Posts posted by vasilevich


  1. Hi, pals. I am looking for a setup to share my wired networked XP Desktop Pc's internet to my laptop through wireless. The only thing I wanted to setup is hook a USB wireless NiC in my Desktop "setup the bridging/NAT" then receive internet connection on my laptop through its own wireless connectivity.

    So I am looking for what type of USB wireless NIC could do this job (I am looking to buy for the device, name and link of the device would be more helpful).
    What setup procedure should I follow in order to share the internet to the USB wireless NiC and then receive on my laptop.

    Thankyou.

    Ene.


    Your case is pretty simple as long as your laptop has wifi support you could easily set up the ability of sharing from pc to your laptop by buying any usb wifi adapter,you will be using a pc to pc wireless connection called adhoc. Adhoc is a connection type which creates a new network using the computer as an access point, the internet connection is simply shared among the clients which access the adhoc network like any other access point its accesible by simply scanning for new access points. There are many guides for achieving the adhoc configuration online by writing into google the search term how to set up an ad hoc network in windows xp.

  2. Hi, It has simples solution.You can send bulk sms through bulk sms service provider.Once you hire this services he will provide you api code for same.you have to put this code in your application and you have to just give path of database.Using this code you can send bulk sms at a time.

    I would agree with you that bulk sms is the solution, since i don't see any reliable free service which would send sms, as each message costs money, no company would contribute for such a thing. however in my opinion you should charge the users a monthly or yearly fee of a small sum just to pay off the bulk packages. Because nothing is free in this world and if people want to be safe they should atleast contribute for the sake of their own safety.

  3. 4 years? When was the ladt time you reinstalled your operating system? Windiws operating systems are known for getting slower over time as viruses and unused softwares are collected and started at once, but if you speak of the image on screen it could be your video card is not well connected or gets too overheated. Try to see if its plugged correctly and is not too hot.


  4. Hi I have an external hard drive Transcend 500 GB which has two USB plug ins. I have been using only one cable and it has been working well until recently when I plug into my computer Dell m1330 with Windows XP, it completely freezes my computer and I will have to hard press restart button.
    I have updated my BIOS tried to restore to previous month, nothing fixes it. Any tip?

    I think you should provide more details about the device such as model name. Overall i would recommend getting the model name, getting to google with the search term "device name driver" should give you up to date results which might fix your problem,

  5. That's different from what i understood in your previous post. But in order to edit a file in PHP, you need to use fopen, fwrite and fclose (PHP4) or file_put_contents (PHP5). You must also make sure the file is editable by chmodding it either 666 or 777. After editing the file, make sure to chmod it back to 644.

    i am very sorry for that many questions but look what i mean, for example, at a web hosting that provide free mysql serviece along their web host they offer those informations:

    host: sql.examle.com

    username:myusername

    database: databaseofmychouice

    password:passwordofmychoice

    that was the information that i acctualy inserted in the config.php file to make it work, but when i want to try another sql server, not on the same host as the example i gave http://forums.xisto.com/no_longer_exists/

    when i register on a distant sql server that has no web hosting, they also offer for example, host=sql.example.com port=xxxx i don't understand what to do with the port, as usually the mysql hosters on my web host do not need port information to connect to them. Thank you for your help.


  6. You don't (normally) insert that information into the database: it remains in the PHP document. It doesn't need to be in the database in order to connect to the database. And try not to give away your passwords.

    as you see i changed my password with "******" in that way i didn't gave any of my passwords, i just need a good example on how to insert the mysql information into the config.php file of my website thank you.here is the config.php file if you would like to see what i mean. i don't mind of the password as its the password of a mysql server not from Xisto, i don't mind it is just for testing purpose i need example of how to insert a mysql information into config.php from a distant hosting sql. config.php

  7. Hi, I wanted to try just to test how can i connect my website to another mysql server, but i have no idea how to insert the other mysql information such as port and host etc.... so here is the config file please give me an example

    <?php// mySQL information$server = 'FRESHSQL.COM:3306';				   // MySql server$username = 'vasilevich';					  // MySql Username$password = '*******';						 // MySql Password$database = 'vasilevich';				  // MySql Database// The following should not be edited  $con = mysql_connect("$server","$username","$password");if (!$con)  {  die('Could not connect: ' . mysql_error());  }mysql_select_db("$database", $con); //mysql_query("UPDATE ava_games SET height='300' WHERE height='0'") or die (mysql_error());//$sql = mysql_query("SELECT * FROM ava_settings");$row = mysql_fetch_array($sql);$site_name = $row['site_name'];$site_url = $row['site_url'];$seo_on = $row['seo_on'];$template_url = $row['template_url'];$max_results = $row['max_results'];$image_height = $row['image_height'];$image_width = $row['image_width'];$adsense = $row['adsense'];$cat_numbers = $row['cat_numbers'];$email_on = $row['email_on'];$add_to_site = $row['add_to_site'];$plays = $row['plays'];$new_plays = 4;//// Convert super globals if (phpversion() >= '5.0.0') { 	$HTTP_POST_VARS = ($_POST); 	$HTTP_GET_VARS = ($_GET); }?>($_GET); }?>


    here is the information i would like to insert:
    Database:vasilevich
    username: vasilevich
    host:FRESHSQL.COM
    PORT:3306
    password is annymouse but i would still like you to include this password as an example: *******
    The mysql server is at this site:http://forums.xisto.com/no_longer_exists/ Thank you for the help!
×
×
  • 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.