borfast
Members-
Posts
3,271 -
Joined
-
Last visited
Everything posted by borfast
-
LOL Really good one! :angry:
-
The about:config "trick" only works in Mozilla if you install the plugin for it... isn't it? Or is it now part of the newest versions? Also, the smooth scrolling is only available from 1.4 up... or is it 1.3?... OK, I better shut up about this one
-
Nice, another "about: " trick! There's a very useful one if you use Firebird, which is about:config - it allows you to change everything in the bird's configuration, even stuff that is not visible on the options dialog
-
Mozilla keeps it's cache in one single directory per user (I don't remember how it works under single user systems like Windows9x/Me). Basically, Mozilla creates a cache folder in a subdirectory of your home directory. In Windows, it will create something like this: c:\Documents and Settings\borfast\Application Data\Mozilla\Profiles\default\fg4wivcr.slt\Cache And in Linux, it will put it here: /home/borfast/.mozilla/borfast/pe9o6m44.slt/Cache No hidden stuff And here's the thing that most people don't realize: since Mozilla is Open Source, everyone has access to it's source code, so there's now way it will keep hidden things from the user, because if it did, someone would see the code that hides the files or whatever and... well, I think you get the picture Long live Open Source!
-
A Bug In Cpanel's Mysql Management?
borfast replied to borfast's topic in CPanel and Site Maintenance
Thanks Andy, I'm reading those threads now Oh, and don't worry too much about this, it's really not a problem at all. I just posted it here because I thought perhaps someone knew an easy way to fix it. Let the Cpanel folks fix it and when TCH updates CPanel, I'll handle it -
Nice idea, digirunt Here's another thought: how about the winner is the one who makes the funiest story here on the forums, using smileys? I know, there's not many smileys to chose from but they can be installed and if needed, I have a bunch of them.
-
Hi everyone. I'm having a little problem with a client's MySQL database. I have a database named 'bestalm_test' which I want to delete and so I went into CPanel's MySQL manager and press the "Delete" link next to it's name but then I get the following error: I think the problem is that CPanel created the database with a prefix other than the 'best-alm' username - it created a database named 'bestalm_test' instead of 'best-alm_test' - and when trying to delete the database, it is putting the username before the suffix, so it's a bit of a mess... Has anyone seen this before? Is there a simple way to fix it? Thanks in advance
-
Thanks idallen.
-
Well, glad it works. I thought it wouldn't work because I read someone saying on the other thread that it didn't work for them but on the other hand, when I read that thread, I recall trying that and it fixed the problem, so I was a little confused As to the 'why' part, I can't tell you for sure, since I know almost nothing about PERL but I'd guess that the PERL interpreter doesn't output the HTTP MIME type by default and Apache doesn't put it in either, so in order for the script to work correctly, the MIME type has to be output. Anyway, good scripting
-
Someone else had this problem too: http://www.totalchoicehosting.com/forums/i...ic=3036&hl=perl Basically, add the following code after the #!/usr/bin/perl line: print "Content-type: text/html\n\n"; It should work, now EDIT: Ignore this for a while, I thought this was the solution for the problem but it doesn't seem to be - I just read the rest of the thread I linked to. I'll update this when I have some more info.
-
Are you installing it on Windows? If so, you shouldn't have any complications. Make sure you have the mysql.ini file in the right place (look it up in the manual) and when you want to access MySQL you need to start it's service. Could you post a step by step description of what you did to install MySQL and start running it?
-
Yes, I forgot to mention the differences. In addition to what leezard said, you also get the CDs but most importantly, you'll usually get 90 (depending on which distribution you buy) days of support.
-
Suse Linux is available for free, too, as is every Linux-based OS. You can get it here: http://www.suse.com/us/private/download/su...inux/index.html I wouldn't go for Suse, though. I'd try Red Hat first. People also say that Mandrake is very good for beginners but actually, it's not much different. Red Hat is as easy to install as Mandrake - actually, I'd say it's even easier, because Red Hat has lots of excellent online documentation: http://www.redhat.com/docs/manuals/linux/R...install-guide/; from what I've seen in Mandrake's site, Red Hat has better support; Mandrake can be a little frustrating since they thought it would be nice to put some files in non-standard locations and therefore, some programs freak out;
-
First of all, let me also recommend that you keep Mozilla around for those occasions when Firebird decides that it's not a good time for it to work Firebird is still a work in progress, and so it crashes a few times. As for the OS, I suggest you take a look at the biggest-and-greatest-Linux-thread-ever http://www.totalchoicehosting.com/forums/i...?showtopic=2871
-
OK, you beat me to it: I edited my post but you had already replied
-
Yep, that's it. Quite easy and provides a neat effect, doesn't it? As for security, I suppose it does pose a bit of a risc. Still, the only thing you could exploit would be a bug in the browser's image handling code, because the script URL is inside an <img /> tag, so the browser should interpret whatever comes from there as an image and nothing else. On the other hand, you can make the script send a different MIME type in the HTTP headers, tricking the browser into thinking the file is not an image but some other kind of file... I don't know how a browser reacts to this because it's a contradiction: the HTML <img /> tag tells the browser that the file is an image but then the HTTP header tells it that it's another kind of file but I don't think it will crash or anything like that. It will probably just ignore the file and move on. Of course there may be some exceptions, like MS' lovely Internet Explorer, which, if I'm recalling correctly, suffered from such a bug, some time ago...
-
Yes, that's basically it. Here's how it works on the background: In it's configuration file, Apache has a list of files for which it should look when your browser requests a directory. When that happens, Apache takes a look at the directory you're requesting, to see if there's any of the files it knows of. If there is, it'll serve the first that matches the list. If it doesn't find any matching file, it will show you a directory listing if the directory is set with the permissions for it, or an error page otherwise. For example, imagine you have an index.html and an index.php file on your public_html folder and the index list on your Apache's configuration is the following: index.html index.htm index.php index.shtml If you request http://jimscomputing.com/, Apache will first look for an index.html file in the public_html directory and serve it. If you delete that file, the next time you request that same URL, Apache will not find index.html, so it will look for an index.htm and will not find one either. It will then look for an index.php file and since there's one, it will serve it. Next, imagine you also delete the index.php file. If you request the same URL once again, Apache will do the same it did before but this time it will not find index.php and when looking for index.shtml it will not find it either, so it will check the directory's permissions and if you are allowed to see it's contents, it will display them, otherwise it will give you the "401 Unauthorized" error. I don't know what's the index files list here at TCH but it could be a useful piece of information. Could someone post that here, please?
-
I change it every 10 minutes. If you pay attention, you'll see that there are times when it doesn't change - that's when I'm not home, so I can't change it. OK, I'm just kidding, of course! It's a script on my webserver. I know I posted how to do it somewhere here on the forums, in response to someone's question about PHP and generating text in images. Let me try to find it........ got it: http://www.totalchoicehosting.com/forums/i...?showtopic=3042
-
I don't think you'd have any legal problems with that and I find it a pretty cool idea!
-
Right on, Rick. It's fixed, now Thanks!!
-
Well, you don't even need to put the /index.php part, it works if you write just jimscomputing.com and actually, that's the more usual way Besides, PHP is so common that people are used to see that termination on webpages, so it's not a big shock. Of course, there are people for whom computers are a strange thing, but I think those will freak out even just with the .html
-
It's still there. Do you want me to open a help desk ticket to provide you with my username and password, so you can take a look at it?
-
Get used to it, Cheryl. They keep surprising us every day! Welcome to te family!
-
This might not even be related to the mail server but since it started happening when Rick changed something on server6's mail server, I though I'd post it here, maybe someone has a clue as to what it can be: I have this little applet that sits on my Gnome taskbar and regularly checks my mail server to see if there's any messages (an inbox monitor). If there are, it displays a little rotating 'e', meaning I've got new mail and can open my e-mail client to fetch it. The thing is that the inbox monitor always indicates one more message than there really is, even if I don't have any message in the server (it says I've got 1 message). But then I open Evolution (my e-mail client), press the "Send and Receive" button and it doesn't complain about anything. I'm guessing this is probably something wrong with the inbox checker and not the TCH mail server but it's strange that it started happening after Rick fixed the other problem I mentioned above. Does anyone have any clue about this one? Thanks in advance.
-
For those of you who want to try these scripts, note that most of them only work on Internet Explorer and are not standards compliant. Otherwise, great collection, Zethilone
