• What are you working on? v2
    2,000 replies, posted
[QUOTE=arienh4;22589063]Are you sure that there's enough documented uses of it? And that it's commercially viable to use it? And that it wouldn't cost too much?[/QUOTE] It's free.
[QUOTE=Sc00by22;22589007]Yes, took me a while to find a good code example but after looking at the code it's very simple to use.[/QUOTE] Yeah they have examples here: [url]https://www.paypal.com/us/cgi-bin/webscr?cmd=p/pdn/ipn-codesamples-pop-outside[/url] What did you use to associate the IPN transaction with a specific buyer on your site? It looks like the buyer email is the only thing that can be used for this... or am I missing something major? :v: [editline]06:13PM[/editline] [QUOTE=arienh4;22589063]Are you sure that there's enough documented uses of it? And that it's commercially viable to use it? And that it wouldn't cost too much?[/QUOTE] I don't understand what you're getting at. PayPal has multiple documents on it, it's specifically meant for commercial usage, and it's free :raise:
[QUOTE=nullsquared;22589381]Yeah they have examples here: [url]https://www.paypal.com/us/cgi-bin/webscr?cmd=p/pdn/ipn-codesamples-pop-outside[/url] What did you use to associate the IPN transaction with a specific buyer on your site? It looks like the buyer email is the only thing that can be used for this... or am I missing something major? :v:[/QUOTE] You can send along custom information If I can remember correctly. I used that for a donation system where I sent along their SteamID with the transaction, I might be completely wrong in remembering that but I think you can.
[QUOTE=Sc00by22;22589437]You can send along custom information If I can remember correctly. I used that for a donation system where I sent along their SteamID with the transaction, I might be completely wrong in remembering that but I think you can.[/QUOTE] Oh, that would certainly be useful. Thanks for the heads-up, I'll look into it :smile: [editline]06:17PM[/editline] Yup, according to one of their documents, there's a "custom" variable passed by your site. I guess I can just pass the username of the buyer and it'd be good to go.
[QUOTE=nullsquared;22589458] Yup, according to one of their documents, there's a "custom" variable passed by your site. I guess I can just pass the username of the buyer and it'd be good to go.[/QUOTE] That's the bugger =D
[QUOTE=arienh4;22589063]Are you sure that there's enough documented uses of it? And that it's commercially viable to use it? And that it wouldn't cost too much؟[/QUOTE] Paypal IPN is used by almost every business offering paypal payments online, it's definitely commercially viable :) [editline]05:39PM[/editline] Also, fuck just realized you don't want all maps, you want to filter maps by game. Ah well, just one more query :/ Game pages won't filter by category though, I don't think.
[QUOTE=Fizzadar;22589653]Paypal IPN is used by almost every business offering paypal payments online, it's definitely commercially viable :) [editline]05:39PM[/editline] Also, fuck just realized you don't want all maps, you want to filter maps by game. Ah well, just one more query :/ Game pages won't filter by category though, I don't think.[/QUOTE] You can always integrate that into your query for them?
[QUOTE=andersonmat;22591584]You can always integrate that into your query for them?[/QUOTE] Yeah but on the maps page, I need another query to get a list of games to filter.
Getting rails set up on my local dev environment and then going to give it a spin. Any recommendations on good introductory tutorials for rails?
wow, all you guys need to check the batteries in your sarcasm detector. It's quite clear that arien was taking the piss
[QUOTE=nullsquared;22566578]Um... On my site, I login, go to my accounts page, then either refresh or click some link, and I'm automatically changed into the only other account on my site. WTF! Somehow $_SESSION['username'] (which I used for identifying logged in users) changes from 'nullsquared' to 'bobguy' (the other account) whenever I refresh or click a link. Once I'm 'bobguy', it doesn't go back unless I logout and login as 'nullsquared' again. Any ideas? :bang:[/QUOTE] Stab in the dark; but try deleting your cookies. Perhaps you've got two cookies with the same name on your computer that are fighting each other. The $_SESSION is loaded based on a Session Id stored in a cookie on your computer (so other people get their own session). Your browser may have two cookies with the same name (but different subdomains for example eg [url]www.mysite.com[/url] and .mysite.com) which is causing the issues you're seeing.
I think something like that might be it, because it hasn't occurred lately and I haven't really changed anything :raise:
I always test logging in and logging out with the porn mode on Firefox and Google Chrome.
[QUOTE=KmartSqrl;22595542]Getting rails set up on my local dev environment and then going to give it a spin. Any recommendations on good introductory tutorials for rails?[/QUOTE] [url=http://www.railstutorial.org/]Railstutorial.org[/url]. It also introduces you to Git (the de facto VCS in the Ruby community) and Heroku (a very simple hosting service for Ruby apps), but you can obviously skip those parts if you want to. However, Rails 3 is coming out very soon and some things will change a lot (like the database layer), so you might want to wait a bit.
Trying to link home.luastoned.com to my local pc but I somehow fail :l home.luastoned.com A [ip] [quote]In order for DNS Management to work, the name servers on this domain must be set to the following: NS1.NAMERESOLVE.COM[/quote] What the hell? Could anyone explain this?
[QUOTE=luastoned;22611085]Trying to link home.luastoned.com to my local pc but I somehow fail :l home.luastoned.com A [ip] What the hell? Could anyone explain this?[/QUOTE] in my DNS zone i have an A record that goes to my home server [code]house 3600 IN A ip address[/code]
[QUOTE=:awesome:;22611576]in my DNS zone i have an A record that goes to my home server [code]house 3600 IN A ip address[/code][/QUOTE] I have that too, but it does not work (does it take > 1hour to update?)
DNS can take up to 24 hours to propogate changes
[QUOTE=luastoned;22611085]Trying to link home.luastoned.com to my local pc but I somehow fail :l home.luastoned.com A [ip] What the hell? Could anyone explain this?[/QUOTE] That error means that your domain's nameservers aren't set to whatever DNS service you're using, hence any edits will be useless. Where is your domain registered and where are you trying to edit your DNS?
[QUOTE=Tuntis;22605946][url=http://www.railstutorial.org/]Railstutorial.org[/url]. It also introduces you to Git (the de facto VCS in the Ruby community) and Heroku (a very simple hosting service for Ruby apps), but you can obviously skip those parts if you want to. However, Rails 3 is coming out very soon and some things will change a lot (like the database layer), so you might want to wait a bit.[/QUOTE] Thanks! I'm fairly familiar with MVC and what have you, so this is mainly a matter of learning the rails API and all the rails shell commands, but this looks good for that :) I'm not too worried about them updating rails on me either, I'm a really quick learner and if stuff breaks I'll just check the docs and see what changed and what the new way to do things is. Appreciate the heads up though.
[QUOTE=jmazouri;22559371]Version 0.90 of my directory listing script is finished. Major changes include the addition of the jQuery library for searching, searching, and loading filetypes from a csv file. Thanks to all the great developers who make their code open source :D *readme* Download: [url]http://jmazouri.com/jm_dirlist_0.90.tar[/url] Live Demo: [url]http://jmazouri.com/pubfiles/[/url][/QUOTE] I know this is late, but perhaps you should try putting something like: [url]http://src.deviant-core.net/js/clrtext.js[/url] To auto-clear the Search box when you click it but refill it when you click off. Just remove everything beyond the first || and the ||s on line 15 and you'll have the original one. It requires this though... [url]http://src.deviant-core.net/js/utils.js[/url] Don't have to use those exact ones but you should definitely add it.
[QUOTE=<ToD> Aaron;22624614]I know this is late, but perhaps you should try putting something like: [url]http://src.deviant-core.net/js/clrtext.js[/url] To auto-clear the Search box when you click it but refill it when you click off. Just remove everything beyond the first || and the ||s on line 15 and you'll have the original one. It requires this though... [url]http://src.deviant-core.net/js/utils.js[/url] Don't have to use those exact ones but you should definitely add it.[/QUOTE] Just did it for my local revision 0.92: [url]http://jmazouri.com/pubfiles[/url]
[QUOTE=arienh4;22612584]That error means that your domain's nameservers aren't set to whatever DNS service you're using, hence any edits will be useless. Where is your domain registered and where are you trying to edit your DNS?[/QUOTE] domain.com I edited it right there, will take a screenie when I'm back home.
this [url]http://www.echo-design.co.cc/[/url] fuck HTML is harder than I remember but thank god for CSS
Got bored, [url]http://fanaticaldev.com/[/url] happened.
[QUOTE=Protocol7;22626728]this [url]http://www.echo-design.co.cc/[/url] fuck HTML is harder than I remember but thank god for CSS[/QUOTE] Just a few pointers, center is deprecated, so you should use CSS for that. Also, putting everything in your stylesheet is better than using a style attribute. Otherwise, really nice design.
Working on an [soon to be] open source and distributed uploader. [url]http://www.design.andersonmat.com[/url]
[QUOTE=andersonmat;22626992]Working on an [soon to be] open source and distributed uploader. [url]http://www.design.andersonmat.com[/url][/QUOTE] Nice design :) Considering expanding a bit, fanaticalgameservers.com possibly, maybe fanaticalservers.com, not sure though...
[QUOTE=Fizzadar;22627004]Nice design :) Considering expanding a bit, fanaticalgameservers.com possibly, maybe fanaticalservers.com, not sure though...[/QUOTE] Weren't you talking to BeyondHosting about using their VPSs for game servers in the states?
[QUOTE=arienh4;22626862]Just a few pointers, center is deprecated, so you should use CSS for that. Also, putting everything in your stylesheet is better than using a style attribute. Otherwise, really nice design.[/QUOTE] Thanks bro. This is my first real attempt at making a decent webpage so some shit is bound to be screwed up [editline]12:32AM[/editline] Ah, quick CSS question [url]http://www.echo-design.co.cc/index.html[/url] I have the images as CSS objects now but they all get their own line. Can I tell them to stay on the same line, and if so, how? I need them to be CSS due to the X:hover feature. :v: [editline]12:37AM[/editline] shit nvm found out about Inline Block :V
Sorry, you need to Log In to post a reply to this thread.