Jump to content
xisto Community

masterio

Members
  • Content Count

    51
  • Joined

  • Last visited

  1. Hi zero ziat, I think by deleting the content of Temp's folder is not effect your operating system. Because the function of temp (like it's name temporer) is only store the temporer data. If you run Disk clean up, all the content of this folder will be deleted to by Windows. I think, there is another problem!. May be your computer is infected by Virus or some malicious program. Update your antivirus definition file to make sure. Or you're not deleted the content of Temp folder, but Another like Application Data or Local Settings. That's two folder are very important since they kept the information setting about the software. If there is no viruses found, just try to reinstalling the Windows and the Software that can't run. Or you can recover the files that have been deleted by using special software like Norton UnErase Wizard or Undelete Professional. But the successfull of this methode depend on "how often do you boot your Windows since you delete the file?". If you often, probably the deleted files has been overwriten!. But try it first may be your files still recovered!. Hope's Help!!
  2. masterio

    Php/mysql

    Have you ever try your script before? It's better to test your script from your computer before you upload it to server/hosting site. Try Installing Apache, PHP, MySQL and PHPMyAdmin to your computer. It's pretty easy if you read the instalation guide. By Making your computer like a server you'll know what are doing if you are hosting a site. That's for me, hope it help!!
  3. Yeah, you're right!. But remember they still can write to HKCU, so if you use that account for surfing the internet or anything else. The virus or spyware can still capture your activity, because they can write HCKU/Software/Microsoft/Windows/Current Version/Run. And run every time you log on!. So, Better suggesting is use linux for daily activity !?!? Try Ubuntu Linux is very easy to use and secure!!
  4. Hi guys i have a little problem here!. I've just download the Java Development Kit (JDK 1.6 BETA 2) for Linux. My Problem is how to integrate any java application like *.java *.jar with the java binaries that i've extracted. I'm newbie for linux. I'm using Ubuntu Dapper Drake (6.06).For now i just make symbolic link to /usr/bin from my java's bin/java directory. And every time I need execute my jar file. I always use terminal to run it. I've tried to right click and try to open with java binaries file. And some error occured says "Cound not add application to application database!". Err...!!Anyone can help please??
  5. Hi guys, this is a litte tutorial about how we start and stop the Apache and MySQL in Windows NT (2000, XP, 2003) via a batch file script. As we know in Windows NT based system Apache and MySQL installed as Windows Services. So we can stop and start it using NET command. For more information about DOS command, type HELP at command prompt. I assuming that your MySQL service name is "mysql" and your Apache (Apache 2.0.x) service name is "apache2". If you want to chek it click Start > Run > services.msc > OK. Windows IS NOT Case Sensitive. Let's get started!. 1. Open your command prompt by clicking Start > Run > cmd > OK 2. Type edit then press ENTER to start the EDIT program. 3. Type code below @ECHO OFFif "%1"=="start" goto start_serverif "%1"=="stop" goto stop_serverif "%1"=="" goto begin:beginTITLE ::BATCH SCRIPT::ECHO ----------------------------------------------------------------------------------ECHO USAGE OF THIS SCRIPT:ECHO server.bat option1 [option2]ECHO WHERE option1 = start/stop (start or stopping server)ECHO option2 = yes/no (close the command prompt or not [optional])ECHO -----------------------------------------------------------------------------------goto end:start_serverTITLE ACTIVATING SERVER...ECHO =================================================ECHO BATCH SCRIPT FOR ACTIVATING SERVERECHO By Rio Astamal (masterio.trap17.com)ECHO =================================================ECHO _ECHO Activating MySQL Service . . .@NET START mysqlECHO _ECHO Activating Apache HTTP Server Service. . .@NET START apache2ECHO _ECHO SERVER HAS BEEN STARTED!DATE /TTIME /Tgoto end:stop_serverTITLE STOPPING SERVER...ECHO ==================================================ECHO BATCH SCRIPT FOR STOPPING SERVERECHO By Rio Astamal (masterio.trap17.comECHO ==================================================ECHO _ECHO Stopping Apache HTTP Server Service...@NET STOP apache2ECHO _ECHO Stopping MySQL Service. . .@NET STOPECHO SERVER HAS BEEN SHUTTING DOWN!DATE /TTIME /Tgoto end:endif "%2"=="yes" ( exit) To save the file:1. Press ALT-F > Save 2. Go to your Windows Directory, so we can start it from anywhere in command prompt 3. OK Usage: C:\>server.bat (to show the usage of the script) C:\>server.bat stop yes (close the command prompt after finished the task) C:\>server.bat start EXPLAINATION: If you create a batch file, Anything inside it is assumed as DOS command by command prompt. In that script, first, we make the ECHO command invisible by using @ECHO OFF command. Then we check the argument given by user. %1 is argument 1, %2 is argument 2 and so on. We use first argument(%1) to check what user want. Is he want to stop/start the server. We use argument2 (%2) to check wheter we close the command prompt or not after it. TITLE is used for changing the title of command prompt title bar. For starting service We can use NET START [service_name]. In our script we use @NET START to prevent DOS for echoing the command. For stopping service we can use NET STOP [service_name]. SUMMARY With a batch file we can do alot of thing not just stop/starting service. But we can use it for renaming many files at once, deleting temporer directory and many more. For more tutorial you can googling!!. ENJOY...!
  6. So do I. The only reason why I use java because in my college use it. Personnaly I really like C/C++. Java application's speed is very-very poor for critical application. Some example, I have JDK 1.5.07 we know java born in 1995 and it's eleven years old. Why for eleven years old. I try to make program to show user save/open/etc dialog, it takes about 5-6 seconds to open!!! if we use our OS theme. Men...!, people who used will sleeped until the box open! C/C++ is the best programming language that ever born!!
  7. Hi mwbouwkamp, your problem seems to abstract to me, can you post the error message such as Just for advice, personally i dont like use both XAMPP or Easy PHP. It's better if you understand how to install the server (PHP, MySQL, Apache, phpMyAdmin) manual. Just read file "install.txt" on PHP direktori that you've extracted. That information is enough to run your server. Once again, pls post your error code provide by MySQL.
  8. From my experience there are few ways to do some basic thing to secure your PC.1. Check your startup programs by running msconfig (Start>Run>msconfig)2. From there you can knew all the program that will loaded by Windows when startup.3. Also check the "Services Tab" in msconfig. Tyr checking the "hide All Microsoft Services" to list all non-microsoft running services.4. Press Ctrl-Alt-Del and view tab "process". Teriminate files that looks "strange". if you're sure then you can search the file location and deleted (ONLY IF YOU ARE SURE ABOUT IT!!!)5. Dont run exe file that you've download from untrusted source.6. Finally always update your ANTI VIRUS DEFINITION FILE!Hope's Help
  9. Other function that usefull to sanitize user input before being executed by MySQL is using addslashes() sunction. but now most server is add escaping character automatically.
  10. Hi, every body seems talk about the Windows Vista GUI. Like somebody told, Vista needs a huge run RAM to run smoothly. But since I Instal Ubuntu Linux, I start to leave Windows. Ubuntu really has beautiful skin and is easyly customizeable. If I wanna run Windows Program I just run the Windows Emulator (Wine) and bingo!, you run Windows Program Without Windows!!.
  11. Ubuntu is the best OS I've ever used. It completely free and easy to use, just like Windows. I used version 6.06 (Ubuntu Dapper) which I request the CD from https://blog.canonical.com/2011/04/05/shipit-comes-to-an-end/ (FREE). Before Installing you must have some unallocated space for ubuntu (I recommend 2 GB). You can resize your hard drive with partition software. The most popular is Partiotion Magic, but if you wanna some free partition software you can try Partition Manager at http://www.ranish.com/part/. If you use Partition Magic after resizing your partiotion you can directly format it with Linux File system (Ext3). If you use Partition Manager just resize and format the partiotion when you have already running Linux Ubuntu live CD. Just follow the instruction. Ubuntu 6.06 (Dapper) is completely use graphical mode instalation (easier than Windows). For complete tutorial visit ubuntu forum at https://ubuntuforums.org/ Hope's Help
  12. Hi guys thanks for the info. I downloaded the Xoblite and I really like it, Now my Windows XP is completely have a new look!!. Xoblite is so easy to configure and customize. A lot of my friends ask me, "what OS do you use on your laptop", I just answer, "Same as yours..."
  13. I think http://www.proxy4free.com/ is the right places. But why in some site even I surfing through proxy my real IP is still detected? does anyone know?
  14. does anyone know how chek alot of fields with javascript? I'm newbie in javascript, how to pass fieldname to an array? should we use getElementById or shomething?
  15. I think the solution is simple. Just create website about your software product. And keep promotion, so many people know your site and your product that you wanna sell.
×
×
  • 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.