Bitcoin Forum
April 25, 2024, 11:13:22 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: « 1 [2] 3 4 »  All
  Print  
Author Topic: [ANNOUNCE] View .BIT Domains without any DNS Modifications or Special Software  (Read 8499 times)
Gabi
Legendary
*
Offline Offline

Activity: 1148
Merit: 1008


If you want to walk on water, get out of the boat


View Profile
March 03, 2012, 02:55:51 PM
 #21

Wow, this is awesome!

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714043602
Hero Member
*
Offline Offline

Posts: 1714043602

View Profile Personal Message (Offline)

Ignore
1714043602
Reply with quote  #2

1714043602
Report to moderator
cablepair (OP)
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


Buy this account on March-2019. New Owner here!!


View Profile WWW
March 03, 2012, 02:57:07 PM
 #22

glad you like it Smiley if you have any suggestions on how I can make this service better feel free to share your ideas with me
Nefario
Hero Member
*****
Offline Offline

Activity: 602
Merit: 512


GLBSE Support support@glbse.com


View Profile WWW
March 03, 2012, 03:42:19 PM
 #23

Oh sick, glbse.bit has been taken by a cybersquatter.

PGP key id at pgp.mit.edu 0xA68F4B7C

To get help and support for GLBSE please email support@glbse.com
Herodes
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1000


View Profile
March 03, 2012, 05:17:57 PM
 #24

Maybe you are putting in the http://

Yes, I did, when I just wrote 'domain.bit' it works. Great service!
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
March 03, 2012, 07:09:30 PM
Last edit: March 04, 2012, 10:54:42 AM by phelix
 #25

I've discovered the Glyphe php script with your project and i was searching for a good software for this.
That's also what is used by the opennic project : http://wiki.opennicproject.org/ProxyServers

So, i've added a second web proxy at the address of : http://proxy.dot-bit.org/ :p

this is great. the more as masterpool really is down by now.

once the next foxyproxy version comes out you need to set up a website with the new auto configuration feature (install foxproxy, reload page and click yes --> namecoin support). Setting up the page should be very simple with a template from eric, the foxyproxy developer.

edit: 2012-03-04 masterpool is working



phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
March 03, 2012, 07:42:26 PM
 #26

Nice!
I wonder if you could add a rewrite so that,

http://bitview.net/someaddress.bit

would map to your proxy script. This would make it easier to remember and really clean for people to just type in when they need.


this is how the yourls url shortener solves this:
(http://yourls.org   !-f  and !-d rewrite every query not a file or directory)

.htaccess
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /yourls-loader.php [L]


php:
$request = str_replace( $base.'/', '', $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );




Tuxavant
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000

Bitcoin Mayor of Las Vegas


View Profile WWW
March 03, 2012, 10:19:28 PM
 #27

How about a coral cache type of interface where you simply prepend the domain you're trying to reach with the bitviewer.net domain..

Example, to reach wikileaks.bit, you would go to wikileaks.bit.bitviewer.net.

If you don't know what coral cache is, check out http://www.reddit.com.nyud.net/

cablepair (OP)
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


Buy this account on March-2019. New Owner here!!


View Profile WWW
March 03, 2012, 10:22:11 PM
 #28

tuxavant you got a copy of the code handy? I assume this is done with some kind of combination of php and apache rewrite rules?

Tuxavant
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000

Bitcoin Mayor of Las Vegas


View Profile WWW
March 03, 2012, 10:27:54 PM
 #29

Perhaps this will be useful?.?.?

http://badpopcorn.com/blog/2006/04/22/coral-cache-and-htaccess/

It's for redirecting refers from big sights to the coral cache but you might be able to use it for your proxy by matching against something other than refer and pointing to your proxy? only gave this two seconds of thought...


tuxavant you got a copy of the code handy? I assume this is done with some kind of combination of php and apache rewrite rules?



cablepair (OP)
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


Buy this account on March-2019. New Owner here!!


View Profile WWW
March 04, 2012, 12:05:03 AM
 #30

thanks I will check it out, I am constantly looking for ways to give my site the edge since the kahl kind of ripped mine off and mine a copy of it after he saw what I was doing

(its ok kahl competition is healthy Tongue )

Tuxavant
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000

Bitcoin Mayor of Las Vegas


View Profile WWW
March 04, 2012, 12:07:29 AM
 #31

I think I mentioned this somewhere else, but it would also be useful to have direct access to your proxy so that individuals could create their own proxy.pac file that redirects *.bit requests directly to you from their browser.

BkkCoins
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1009


firstbits:1MinerQ


View Profile WWW
March 04, 2012, 01:26:56 AM
 #32

tuxavant you got a copy of the code handy? I assume this is done with some kind of combination of php and apache rewrite rules?


I think the simplest way to do this is using a catch-all virtual domain in your apache conf, and then a catch-all rewrite (which could easily be put in the conf too so no need for another file). This would be a directed to a different handler than the normal bitviewer.net (without extra subdomain). Also, the php script would be changed very slightly for how it grabs the target domain.

If you wanted an exception for the www subdomain then it can just be placed higher up in the file.

I think the virtual domain lookup is likely faster than processing a rewrite file (which sometimes can have a bit of a performance hit). I'm not sure if placing the rewrite in the conf maybe helps with speed. Probably not a big concern though.

(I can't help further with specifics as it's been years now since I used Apache. Everything is Nginx for me nowadays, which has different configs/rewrites)

phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
March 04, 2012, 10:58:46 AM
 #33

thanks I will check it out, I am constantly looking for ways to give my site the edge since the kahl kind of ripped mine off and mine a copy of it after he saw what I was doing

(its ok kahl competition is healthy Tongue )


just realized khal's proxy was a web-proxy, too.

what about a real proxy to use with foxyproxy?

(proxy.masterpool.eu is working at the moment)
CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
March 04, 2012, 12:41:14 PM
 #34

This is great but please note that if you get your site indexed by Google as a proxy then it won't take very long for it to no longer be accessible from China and other countries that put a lot of effort into blocking sites.


Cheers,

Ian.

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
March 07, 2012, 02:35:43 AM
 #35

I registered ciyam.bit yesterday through register.dot-bit.org (and have received a confirmation email) which should redirect to www.ciyam.com but instead it takes me to fma.com. Huh

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
March 07, 2012, 08:41:08 AM
 #36

I registered ciyam.bit yesterday through register.dot-bit.org (and have received a confirmation email) which should redirect to www.ciyam.com but instead it takes me to fma.com. Huh


works fine via suffix method
Tuxavant
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000

Bitcoin Mayor of Las Vegas


View Profile WWW
March 07, 2012, 09:34:17 AM
 #37

domain registration is said to me a manual process at this time. Once your domain has been registered, you'll receive an email from the admin about how to access your control panel. Or, so I've heard. I'd give it 24-72 hours.

CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
March 07, 2012, 09:38:16 AM
 #38

works fine via suffix method

Could you please paste a link into a message here that will work (I have tried using http://bitviewer.net/browse.php?u=http://ciyam.bit or going to the website and typing ciyam.bit but still takes me to FMA). Sad

(btw - I am trying this from China and got it tested from Australia as well with the same result)

domain registration is said to me a manual process at this time. Once your domain has been registered, you'll receive an email from the admin about how to access your control panel. Or, so I've heard. I'd give it 24-72 hours.

Yup - but I got the email nearly two eight hours ago and can access the control panel fine and it says it is redirecting ciyam.bit to www.ciyam.bit and www.ciyam.bit to www.ciyam.com but still no joy.

But I will test it again tomorrow so hopefully will come good by then.

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
March 07, 2012, 03:55:18 PM
 #39

works fine via suffix method

Could you please paste a link into a message here that will work (I have tried using http://bitviewer.net/browse.php?u=http://ciyam.bit or going to the website and typing ciyam.bit but still takes me to FMA). Sad

(btw - I am trying this from China and got it tested from Australia as well with the same result)

[...]


well, for me the link works just like that: http://ciyam.bit   (redirect to ciyam.com)
and also for example: http://bx.bit  Cool

I am using this method:
http://dot-bit.org/How_To_Install_Dns_Suffix

with bitviewer.net bx.bit works but ciyam.bit does not - problem with redirection? I guess cablepair will have to investigate this one.

CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
March 07, 2012, 03:58:50 PM
 #40

Thanks for your help (and I will try your method later).

Any ideas cablepair?

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
Pages: « 1 [2] 3 4 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!