Search results

  1. ah-blabla

    Console login

    There is no shell access on free hosting. You can control MySQL from phpmyadmin (this lets you run sql commands), just remember to create databases and users in cpanel. Compiling *might* be possible (I don't know if there's a compiler on the server) if you write a web accessible shell script...
  2. ah-blabla

    Epic Upgrade

    And you don't even have to go to a website to get a program... You can just look at the package repo, select, and confirm, and a little later the program is ready to go. All your updates are done from that, automatically if you wish (i.e. one center to control all software installation and...
  3. ah-blabla

    China Creates AIDS Vaccine

    Pessimism? Realism fits better. I don't see what the big problem with cancer and similar is. Yes, I know it can be painful/ horrible, even more so emotionally - I'm not trying to play that down. But the thing with life is we all die, whether sooner or later is not so big a difference. Instead of...
  4. ah-blabla

    decompress RAR file in java

    The only thing I can think of now, might be the spaces in the filename, read this for a thread about someone having problems with spaces. (I do not have problems with spaces on my sytem, but that might be since I'm using openJDK and *nix, where files are handled differently.) Try testing a rar...
  5. ah-blabla

    decompress RAR file in java

    You need to skip the image size first, then read the archive bytes only: out = new FileOutputStream(temp); File archive = new File(findDir + zipFileLabel.getText()); // The size of the image portion long skipSize = fi.imageSize(findDir +...
  6. ah-blabla

    can someone tell me how to get top rank in google

    top rank? If you're indexed in google chances are you are already top ranked, albeit for a very specific search term. Vigge-sWe's advice is good, that should be enough to get you high up on google, but that only works if you have good content and design which is the main thing attracting...
  7. ah-blabla

    What's your favourite Operating System?

    Ah good, seems I'm not the only one against having a duplicate topic... (And furthermore, the last post in that was 1 week old when this topic was posted.) And watch you don't get flamed for being observant :nuts:. Most people just don't even know alternatives exist. One person I know thought...
  8. ah-blabla

    decompress RAR file in java

    You need to cut off those last eight bytes, i.e. stop eight bytes from the end: Change this code to stop at the right point: # out = new FileOutputStream(temp); # # while ((nextChar = in.read()) != -1) { #...
  9. ah-blabla

    decompress RAR file in java

    I really don't know what's happening now. I just realised my code also had a slight problem where directories were being made, but files named incorrectly (rar seems to use windows directory separators, causing chaos when I use / instead since I'm on *nix, but that seems to have worked fine on...
  10. ah-blabla

    decompress RAR file in java

    That is the problem: a file is created instead of a folder, and you therefore can't write a file into a "folder" location which is a file. My code works fine, making a folder and not a file when required, at least on my system: the code you have pasted wouldn't work on a rar file with any...
  11. ah-blabla

    Battle of the Browsers

    Chrome isn't open source. Chromium is. The two aren't the same thing... Yes, chromium may be open source, but in chrome Google has added unfree code, making it closed source and non-free. And FF 3.5 is a considerable imporvement over FF3, although still not as good as it should be.
  12. ah-blabla

    decompress RAR file in java

    I noticed an error in my code: File f = new File(new File(output + fh.getFileNameString())); f.mkdirs(); This should be: File f = new File(output + fh.getFileNameString()); f.mkdirs(); (On my system this didn't compile, so you will have been using the older...
  13. ah-blabla

    decompress RAR file in java

    I'm not too sure here, but I think what also needs to be done, is to check whether the header is a directory, since at the moment it writes a file, even if it is a directory, and then later the code treats it as a directory since that's what it is in the archive. Here's the updated code...
  14. ah-blabla

    Opening cPanel

    It will probably be a filter/firewall, since cpanel access requires port 2082, and the sites are working fine for me. It is quite common that non-standard ports are blocked by company networks, so you won't get anything over that port. Try at home, because there's not much you can do to get...
  15. ah-blabla

    decompress RAR file in java

    I see you have specified output as a folder, but FileOutputStream writes to a single file, i.e. it tries to write a file called test, but that is seemingly a folder, which might be causing the problem. Update: I assum you want a separate file written for each file that was in the rar, in this...
  16. ah-blabla

    Opening cPanel

    Both work fine for me. It could have been a temporary server outage, since you say both addresses didn't work.
  17. ah-blabla

    PHP and ASP.NET Server Scripts

    PHP and ASP are supported. Your page is working fine for me. The script at the second link just seems to print it's own address and do nothing else.
  18. ah-blabla

    Webmail problems

    BTW, squirrelmail should work --> try selecting squirrelmail instead of horde when using webmail.
  19. ah-blabla

    can I install rouncube to my site?

    Their interface of squirrelmail isn't as nice though, and horde doesn't work at all.
  20. ah-blabla

    allowed rapidleech

    That doesn't make it illegal. Downloading copyrighted files distributed without the copyright owner's permission is illegal, but rapidleech and rapidshare aren't illegal. In fact I know many people using rapidshare for legal purposes. (By your analogy a computer is illegal since it can be used...
Top