-
Posts
38 -
Joined
-
Last visited
Everything posted by raDeon
-
I made a helpdesk ticket because i think it's a problem with the database. In phpMyAdmin, the database will not load, it says "Transferring data" until I stop it. The other databases load fine.
-
My invision power board refuses to load. Also, IPDynamic lite will not load either. http://forums.sector-19.com http://www.sector-19.com Any other part of the site works fine. I went to the invision board forums and they didn't help me much at all. I uploaded the files again and it still doesn't work.
-
Is there anyway to limit the amount of space to a particular subdomain. I want to set someone up with a subdomain but don't want them to take all my space.
-
Yes, I switched over to firebird about a month ago and I'm loving it. I've converted several people from IE.
-
There's a design I stole from a CSS-P tutorial http://replayscript.sector-19.com Yeah, that's about it. If you want to see my true talent ( Goof ), look here: http://www.sector-19.com
-
Although I'd like to have a book, I have no money to buy one.
-
Does anybody know of a tutorial of how to make good looking pages. I know HTML and CSS but I don't know how to make a good looking design. It's extremely frustrating. I've searched and searched but I can't find a tutorial on how to design a good page.
-
I don't think apache has the permissions to CHMOD on TCH.
-
Here is my uploader that works for image files: ><?php if (is_uploaded_file($_FILES['userpic']['tmp_name'])) { if ((substr($_FILES['userpic']['name'], -4) == '.jpg') || (substr($_FILES['userpic']['name'], -4) == '.gif') || (substr($_FILES['userpic']['name'], -4) == '.png')) { if ($_FILES['userpic']['size'] > 300000) { exit("Picture is too large! Try compressing more!"); } if (strlen($_FILES['userpic']['type']) > 26) { exit("Please rename the picture to something with a shorter name and try again!"); } $filename = $_FILES['userpic']['name']; if (file_exists($_FILES['userpic']['name'])) { exit("This file already exists, please rename it!"); } copy($_FILES['userpic']['tmp_name'], "/home/sector-/public_html/pics/".$_FILES['userpic']['name']); echo "File has been uploaded to S19's server. Here are your details:<p>"; echo "The URL to your picture is:<b> <a href=\"http://pics.sector-19.com/".$_FILES['userpic']['name']."\">http://pics.sector-19.com/".$filename."</a></b><br>"; echo "The code to put this on the forums is:<b> [img=http://pics.sector-19.com/".$_FILES['userpic']['name']."]</b>"; } else { exit("This is not a valid image file"); } } else { echo "Possible file upload attack. Filename: " . $_FILES['userpic']['name']; } ?>
-
Thanks. I will check these out.
-
Does anybody know of an FTP program that runs on windows that supports scheduling? I'd like to update some files on my website every night automatically. Something that runs as a service or in the system tray? Thanks.
-
and so on for your variables. If you have twenty, then you'll need to assign twenty variables. This is the method I use. There might be a better way... but I haven't come across it yet. Here is the better way: At the top of the script (or where you need it), put >extract($_POST); That will automatically convert >$_POST["blah"] to >$blah
-
I do see the a super wide page in Opera 7.11 build 2887. Perhaps you should validate your html at http://validator.w3.org Perhaps you are missing a key end tag somewhere.
-
You could upload a file manager php script or something for each sister if you wanted them to be able to manage files. I think. http://www.hotscripts.com/PHP/Scripts_and_...ment/index.html
-
I use unlink() in my script and it works perfect. Only thing different is I use relative paths.
-
yes mozilla is great and it makes me happy when I build standards-compliant pages.
-
today I installed Red Hat 9. I am loving the nice xft support. I enjoy using Mozilla Firebird with xft which I built from source myself Linux makes me feel good.
-
Have you added your IP to the allowed list to access MySQL?
-
i believe it's been there since 1.3 but I may be wrong. about:config needs no plugins. I'm not sure when it was added but it works
-
same with mozilla. here is another trick: Smooth Scrolling in Mozilla. 1. type about:config into the address bar 2. right click and create a new BOOLEAN 3. name it general.Smoothscroll and give it a value of true 4. restart the browser and voila, smooth scrolling paradise Thumbs Up
