[QUOTE=jmazouri;22381563]Nah, I just have the domain with them. My previous host was free, but they terminated my account for some reason. I set up the godaddy template page shortly thereafter.[/QUOTE]
Ah, point taken.
Who was the host may I ask?
@a2h
Whats your future plans for this system dude? I would love to get my hands on a copy :)
[QUOTE=JDream;22388208]@a2h
Whats your future plans for this system dude? I would love to get my hands on a copy :)[/QUOTE]
Making it awesome?
Also, it's open source (GPL3), you can grab it from [URL="http://github.com/a2h/bugspray"]GitHub[/URL].
Box me all you want, I just want to know which you think is better, 1 or 2:
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275735061.jpg[/img_thumb]
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275760487.jpg[/img_thumb]
The first one.
[QUOTE=EDDY TT;22388765]Box me all you want, I just want to know which you think is better, 1 or 2:
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275735061.jpg[/img_thumb]
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275760487.jpg[/img_thumb][/QUOTE]
First one is much better to read, so I'd say that one.
[QUOTE=EDDY TT;22388765]Box me all you want, I just want to know which you think is better, 1 or 2:
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275735061.jpg[/img_thumb]
[img_thumb]http://horobox.reager.org/u/90-219-110-209_1275760487.jpg[/img_thumb][/QUOTE]
Shouldn't it say fire uproad?
[QUOTE=KmartSqrl;22389081]Shouldn't it say fire uproad?[/QUOTE]
Regrettable my England is good excessively.
Anyway #1 it is.
Working on my main site.
[url]http://crembo.eu/[/url]
Don't open it in IE.
[QUOTE=IshMadhim;22389983]Working on my main site.
[url]http://crembo.eu/[/url]
Don't open it in IE.[/QUOTE]
Even IE6 supports custom fonts, you just need to do a tiny bit of extra css and have the font in a different format.
[QUOTE=rieda1589;22390235]Even IE6 supports custom fonts, you just need to do a tiny bit of extra css and have the font in a different format.[/QUOTE]
Problem is, it's impossible to convert a otf font into a eot font without making it look like crap.
But really, I googled for like a minute and then found something, it worked, kind of, but made the font look terrible, so I just abandoned it.
Hey guys, how do I make it so that only users that meet a certain criteria can download a specific file? For example, assuming I have a fully functioning members system, how do I make it so that only members can download foo.zip from my site, and non-members can't just type in blah/foo.zip and download it?
[QUOTE=nullsquared;22391124]Hey guys, how do I make it so that only users that meet a certain criteria can download a specific file? For example, assuming I have a fully functioning members system, how do I make it so that only members can download foo.zip from my site, and non-members can't just type in blah/foo.zip and download it?[/QUOTE]
You can either hook basic HTTP authentication with your users system or have the downloads go through PHP (try [url=http://bytes.com/topic/php/answers/11290-returning-file-browser-via-php]this[/url]).
[QUOTE=nullsquared;22391124]Hey guys, how do I make it so that only users that meet a certain criteria can download a specific file? For example, assuming I have a fully functioning members system, how do I make it so that only members can download foo.zip from my site, and non-members can't just type in blah/foo.zip and download it?[/QUOTE]
If you have a members system, checked for them being logged in and then feed them the file via PHP:
By feeding it to them via an octet stream they can't find the actual file location.
[php]
<?php
$file = relativeFileLocation();
if(userLoggedIn()){
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
}
?>
[/php]
Just create a function / check for logged in. [Seen above] Set what file would be downloaded, and then make sure it exists.
Wah-lah! :P
Just set up that Facepun.ch shortURL service. Works as follows:
[url]http://facepun.ch/t/938504[/url] for linking a thread
[url]http://facepun.ch/p/22392024[/url] for linking a post
[QUOTE=andersonmat;22391920]If you have a members system, checked for them being logged in and then feed them the file via PHP:
[/QUOTE]
Where should I store the file itself? And should I set the read permissions only to "owner"?
Keep it somewhere where you can't access it from the web.
Can anyone recommend something like Beanstalk with the cool UI, that I can host myself? The free plan isn't enough for my uses.
Edit: Please don't say GitHub, because it's not self-hosted, it's not private, and it's Git, which I reserve a special kind of hate for.
[url=http://reager.org/]As much as some people hate font-face, I like it.[/url]
Think it turned out quite nicely.
[QUOTE=Hexxeh;22392024]Just set up that Facepun.ch shortURL service. Works as follows:
[url]http://facepun.ch/t/938504[/url] for linking a thread
[url]http://facepun.ch/p/22392024[/url] for linking a post[/QUOTE]
:krad2:
[QUOTE=EDDY TT;22388144]Ah, point taken.
Who was the host may I ask?[/QUOTE]
It was [url]http://c9ws.com/v3/[/url], though I don't want to discredit them.
I found work with a small business that calls itself "The Stress Detective", basically some stress treatment thing. Apparantly, their original website is well...[url=http://www.site.stressdetective.net/]see for yourself.[/url]
I have a homepage design that I made in about 10 minutes with Flash.
[img]http://img695.imageshack.us/img695/5783/stressdetective1.png[/img]
The only thing I'm kind of iffy about are the icons I added, so I made a no-icon version of the homepage too.
[img]http://img715.imageshack.us/img715/9926/stressdetective2.png[/img]
What do you think, FP?
[QUOTE=Aurora93;22397797]
What do you think, FP?[/QUOTE]
It makes me very [B][I]stressed[/I][/B] :v:
actually its pretty good, just maybe make the navbar smaller and add more content to it to see how it would look with more stuff in it.
Which would be better, no icons or icons?
it looks better without them i think
Maybe if you put the icons under the header image, and shortened the links a bit.
Like this:
[img]http://i49.tinypic.com/2uppulf.jpg[/img]
What about this?
[img]http://img13.imageshack.us/img13/5152/stressdetective3.png[/img]
[QUOTE=Aurora93;22398503]What about this?
[img]http://img13.imageshack.us/img13/5152/stressdetective3.png[/img][/QUOTE]
sorry but the navbar looks really bad in this one
[QUOTE=jmazouri;22398218]Maybe if you put the icons under the header image, and shortened the links a bit.
Like this:
[img]http://i49.tinypic.com/2uppulf.jpg[/img][/QUOTE]I like this one the best so far.
[QUOTE=Hexxeh;22392672]Can anyone recommend something like Beanstalk with the cool UI, that I can host myself? The free plan isn't enough for my uses.
Edit: Please don't say GitHub, because it's not self-hosted, it's not private, and it's Git, which I reserve a special kind of hate for.[/QUOTE]
[URL="http://www.websvn.info/"]WebSVN[/URL]?
[URL="http://demo.websvn.info/listing.php?repname=WebSVN"]Demo page[/URL]
What's so bad about Git?
Sorry, you need to Log In to post a reply to this thread.