| bio | website | |
|---|---|---|
| location | ||
| age | 22 | |
| visits | member for | 1 year, 11 months |
| seen | Dec 25 '12 at 14:32 | |
| stats | profile views | 8 |
|
Nov 13 |
accepted | MySQL replication not working - no errors |
|
Nov 13 |
comment |
MySQL replication not working - no errors Ah, that makes sense! Fyi, the article only mentions the explicit-disable config replicate-wild-ignore-table=X.% but it seems that the explicit-enable version I was looking for is replicate-wild-do-table=X.%. All on the slave side, of course. It's working fine so far, so thank you. But doesn't this mean the master's binlog fills up with alot of un-used data from databases I don't intend to replicate? |
|
Nov 13 |
revised |
MySQL replication not working - no errors typo |
|
Nov 13 |
asked | MySQL replication not working - no errors |
|
Jun 20 |
comment |
Masquerading IP to get internet working on VPN Nailed it! Thanks so much ;D |
|
Jun 20 |
accepted | Masquerading IP to get internet working on VPN |
|
Jun 20 |
revised |
Masquerading IP to get internet working on VPN added tracert |
|
Jun 20 |
comment |
Masquerading IP to get internet working on VPN Added tracert results to the question. |
|
Jun 20 |
comment |
Masquerading IP to get internet working on VPN There is no way for me to push the default gateway on the VPN Connection. It does not provide that option in the TCP/IPv4 properties. Also, when I ping hosts on the client, it does resolve the domain name to an IP adress succesfully. But the requests time out. Flushing the iptable rules did not help, either. Also, I doubt the firewall is blocking anything, I think the problem is; article - We need to configure the firewall to both allow the incoming VPN connections and let VPN clients access your LAN and go out on the Internet |
|
Jun 20 |
asked | Masquerading IP to get internet working on VPN |
|
May 17 |
awarded | Supporter |
|
May 17 |
accepted | apache2 rewrite rule on index.php only works if index.php is typed in |
|
May 17 |
comment |
apache2 rewrite rule on index.php only works if index.php is typed in I tried it on a local installation of apache2 and it works fine here. Apparently the host I am using screws up the redirect if the $_GET value ends in .com. Works fine with .org etc. Highly strange... but the .htaccess is not to blame, so thank you ;) |
|
May 16 |
comment |
apache2 rewrite rule on index.php only works if index.php is typed in @Sašo Unfortunately, no. That rewrites the entire url and not just what comes after the slash. |
|
May 16 |
comment |
apache2 rewrite rule on index.php only works if index.php is typed in @ErikA Unfortunately that question and it's answer do not help me. All info on there is based on the assumption that there is something between the base url and what to rewrite to. Eg: RewriteRule ^/blog/(.*)$ /newblog/$1 instead of RewriteRule ^/(.*)$ /newblog/$1 |
|
May 16 |
comment |
apache2 rewrite rule on index.php only works if index.php is typed in I just want website.com/something to rewrite to redirect.php?s=something. But as it stands I have to explicitly type out website.com/index.php/something or it will not work. Unfortunately your suggestion did not change this behavior. To simplify: This works -> RewriteRule ^test/(.*)$ redirect.php?s=$1 website.com/test/something will rewrite. And this does not work -> RewriteRule ^/(.*)$ redirect.php?s=$1 website.com/something does not rewrite. It should.. because I took out "test" in both the rewrite rule and the URL. |
|
May 15 |
asked | apache2 rewrite rule on index.php only works if index.php is typed in |
|
Apr 19 |
comment |
Run http server behind proxy Proxychains didn't do anything, as I stated in my question. I don't know why it doesn't just work.. it should ;/ And how would I be serving web pages if I wasn't using apache or lighttpd? I'm trying to run a server here, not visit some website using a proxy. Someone request page -> Proxy sends request to http server -> http server serves page to proxy server -> proxy server forwards page to requester. |
|
Apr 19 |
comment |
Run http server behind proxy I don't know how to use the http server behind the squid proxy. |
|
Apr 19 |
comment |
Run http server behind proxy I should have been more clear, this is why I used SSH to get the proxy connection: link to article . And yes, that's exactly what I'm trying to do. |