Tagged Questions
The router tag has no wiki summary.
8
votes
2answers
1k views
Ruby on rails: singular resource and form_for
I want user to work with only one order connected to user's session. So I set singular resource for order
routes.rb:
resource :order
views/orders/new.html.erb:
<%= form_for @order do |f| %>
...
6
votes
2answers
4k views
Adding sub domain based routes in Zend framework
I am newbie to Zend framework, I am using .ini file to add routes in my application.
I have 2 routes for different modules which
resources.router.routes.news_view.type = ...
5
votes
1answer
289 views
Rails + SSL: Per controller or application-wide?
I could use some wisdom from any developers who have worked with Rails and SSL. I have a fairly simple app and I'm in the process of implementing payment processing. Obviously payment processing calls ...
5
votes
5answers
3k views
Php router, extracting keys from uri
Hey folks! I need some help with regular expressions/etc. I need to extract virtual keys from url, some sort of router in application. Here are the params:
Rule: /books/:category/:id/:keyname
Data: ...
4
votes
1answer
708 views
Zend Route Regex and optional parameters
I want to use a URL like this:
site.com/car-list/param1/value1/param2/value2
"car" is variable and can be anytihng. i solved the "site.com/car-list" part like this:
$categoryRoute = new ...
4
votes
2answers
268 views
Destroying nested resources in restful way
I'm looking for help destroying a nested resource in Merb. My current method seems near correct, but the controller raise an InternalServerError during the destruction of the nested object.
Here ...
4
votes
2answers
591 views
Lightweight network visualization tool
I've been trying to find a tool for monitoring my home network. Before I go into the details, I've looked at a ton of different software and they're either an overkill or don't have what I'm looking ...
4
votes
2answers
8k views
Router to handle multiple public IP addresses
I am presently running several websites and a mail server from my home network. I have a business DSL account with 8 public IP addresses (1 by itself, and 7 in a block). To handle ...
3
votes
2answers
1k views
Optional param Zend Route Regex
How to make route regex parameters optionals with Zend ?
I try to make well formatted URLs ("search?s=mp&t=w" instead of "search/index/s/mp/t/w") for search filters, ex. :
Popularity
Most ...
3
votes
3answers
247 views
Identify machines behind a router uniquely based on ipaddress
Some background first. I have a .net client agent installed on each of the machines in the lan. They are interacting with my central server [website] also on the same lan.
It is important for my ...
3
votes
3answers
219 views
PHP - Is possible to find if user is browsing from beind a Router and get Router Info
Hello guys.
I think it isn't possible just using PHP, but just to be sure.
Is it possible for PHP to know if the
user is accessing the web from behind
a Router?
And if yes, how can i get some
...
3
votes
2answers
277 views
What makes an effective URL Mapping implementation and why?
I am looking at implementing URLMapping for a personal project. I am already aware that solutions exist so please do not answer suggesting I should use one.
What I want is to harvest the opinions of ...
3
votes
2answers
3k views
Objective-C : How to fetch the router address?
I tried to fetch the router address this way.
- (NSString *) routerIp {
NSString *address = @"error";
struct ifaddrs *interfaces = NULL;
struct ifaddrs *temp_addr = NULL;
int success = 0;
...
3
votes
4answers
1k views
How to build a tunnel for file transfer between distant windows 2003 machines quickly
I have two distant locations with Windows Server 2003. Can I build a secure tunnel quickly? Is there secure VPN built into the OS? I have domain names and router control on both sides.
I can build a ...
3
votes
1answer
1k views
Emulating a UPnP router
I want to add the option of automatic port forwarding (NAT Traversal) to an application.
I know this can be done using UPnP (specifically the part that communicates with the device presenting itself ...
3
votes
13answers
8k views
How can I determine the IP of my router/gateway in Java?
How can I determine the IP of my router/gateway in Java? I can get my IP easily enough. I can get my internet IP using a service on a website. But how can I determine my gateway's IP?
This is ...
2
votes
2answers
54 views
Use Backbone.js router with #!
When using Backbone Router it will treat a "page" route as #page.
Can i make #! as default instead of just # ?
I would like to make html 4 browsers use #! (http://example.com/#!/page/subpage) and ...
2
votes
1answer
47 views
Multiple routers with backbone.js
Can I use multiple routers in backbone.js, that doesnt interfere with each other route-wise, without any issues or are there something that I should be concerned about?
Code sample:
...
2
votes
1answer
186 views
Multiple routers vs single router in BackboneJs
All example on backbone using one router for the whole application. But wouldn't it make sense to have a router for single part of your app (header, footer, stage, sidebar). So my question is has ...
2
votes
1answer
355 views
Mobile's back button not working - backbone.js 0.5.3 with jquerymobile 1.0 RC2
When using the navigate method with triggerRoute = true; the page navigates fine to the new page but history is not updated.
When hitting the back button on an Android device (Nexus S), the history ...
2
votes
1answer
59 views
How to avoid crashing my user's router?
It appears that cheap consumer routers are fairly easy to crash: hanging around in various backup/sync software forums, I see this mentioned from time to time. Developers seem to be putting a fair ...
2
votes
1answer
64 views
WCF message routing debugging error - Multiple headers
I'm trying to understand WCF message routing, so I'm trying to recreate a sample passthrough router that I found in order to understand the pieces. The problem is that when I run mine in the debugger, ...
2
votes
1answer
116 views
Managing IPTables with API pref. php
Hey guys is there an API so I can manage IPTables with PHP, it's for a project to build a router with a browser login, kinda the same as a Fonera. Any thoughts are welcome.
2
votes
0answers
291 views
VPN Error 619: Behind Cisco Router WRT310N
I've researched a lot on all the forums and this error is too generic for any of the proposed solutions to work. I'll try to give as much detail and tried solutions.
I'm running a CentOS PPTP server ...
2
votes
2answers
182 views
IP address in LAN [closed]
(1) What is my and others real IP address on same lan? Can we still have a unique IP despite the fact that we share the same router/LAN? and how does the IPs are assigned?
Thanks!
2
votes
1answer
67 views
Is it possible to route my simple URL (without specifing the module, controller and action) in Zend framework?
I am using zend framework for my project and I have a requirement to route the path where I want it. For example:
I have a path www.example.com/module/controller/action1 and I want to internally route ...
2
votes
2answers
248 views
Zend Router (How to direct url such as /administration/users to Administration_UsersController)
I would like to keep the old default Zend Router, and just add a router for administration subpages since the controllers are growing in size and I would like to logically separate them a little as ...
2
votes
3answers
238 views
Banning MAC address from accessing certain port - C++
I want to stop someone with a certain MAC address from accessing a certain port on my server, I'm using this as a sort of hardware ban for a private server a friend of mine runs.
I am looking to do ...
2
votes
3answers
620 views
Programmatically changing wireless router settings - Netgear ideally
Is it possible to programmatically change settings on a Netgear wireless router using C#? I have settings that I change often and I would like to create my own interface for making those changes. ...
2
votes
2answers
725 views
Drupal 6 fails to build menu router and links
When I enable a new menu in Drupal (for example, mymodule), Drupal should be able to get the menu items from mymodule_menu (hook_menu), process the items and insert the menu items to menu_router and ...
2
votes
4answers
67 views
How feasible/difficult is it to run an application that runs on a router?
In my example, I want to build an application that sends users who join a network some kind of interface and manage this at a central station (possibly the router, or a central server). The new ...
2
votes
2answers
1k views
How to enable syslogd to receive UDP logs from routers in OSX
Occasionally a router goes bad and I would like to get the router logs.
While some routers have built-in log viewers, some do not. Most routers seem to have a facility to send logs to another host ...
1
vote
2answers
46 views
Making a publicly available TCPServer from behind a router
python 2.7.2
windows 7 32 bit
Let me preface this question with I'm fairly new to network programming. I've created a simple server and client using python's builtin SocketServer
...
1
vote
1answer
20 views
Which method is equivalent to url_for on Express.js
Is there any method equivalent to Rails/Flask’s url_for on Express.js? Express.js seems to provide the router, but I cannot find its opposite function.
1
vote
1answer
108 views
iOS: Router IP Reachable?
I want to check the internet connection in my iPhone app.
The app needs to know, if the phone is connected via wifi and if wifi is connected with the strict router.
For example: It is a app to order ...
1
vote
0answers
54 views
Connecting two WLANs, one using internet from the other, different SSID and security settings
I am a student working at a library job. Its a great job for a student, since I have lots of downtime to study and get other work done. So naturally, i want to work on my java projects. I spoke with ...
1
vote
2answers
363 views
Simple Backbone.js Router? (page hierarchy + query string)
How do I set up a Backbone router that can handle URLs such as:
example.com/#!/story-1/?a=1&b=2
or preferably with sub-page URL support:
example.com/#!/chapter-1/story-1/?a=1&b=2
I ...
1
vote
1answer
47 views
How can I forward an external IP to multiple local servers?
I am developing an iPhone app where I am using a local Mac as a web server. I also have another Mac which I plan to use as a backup. My question is - given that there is one URL request in the ...
1
vote
1answer
92 views
Node.js module-specific static resources
Is there an elegant way to bundle static client-side file resources (scripts,images,etc) into an Express module and systematically avoid naming conflicts? It's easy enough to register a ...
1
vote
1answer
396 views
Arduino Ethernet and DHCP cannot communicate out to the Internet
I have this web client example that gets an IP address via DHCP. It connects to my router at IP address 192.168.0.1 successfully, but then it fails to send a GET HTTP to google.com. Essentially, I ...
1
vote
2answers
237 views
Backbone.js — Call method before/after a route is fired
I want a setup/teardown method to be called before and after a route is fired in my Backbone.js router, respectively. Has anyone created an elegant way of doing this?
1
vote
1answer
373 views
Backbone.js — Collection in anonymous view instance requesting more than once on fetch
I am using a Router to instantiate my views anonymously so I can simply render them on initialization.
window.Router = Backbone.Router.extend({
routes: {
'': 'index',
...
},
index: ...
1
vote
0answers
63 views
Compile ebtable_broute for DD-WRT
Recently, I installed a DD-WRT on my router (WNR3500L).
Sadly, I lost the IPv6 compatibility (Netgear's firmware worked like a charm).
My modem is providing native connectivity and announces the ...
1
vote
2answers
127 views
PHP router without regular expressions
I have been working on a fancy router/dispatcher class for weeks now trying to decide how I wanted it, I got it perfect IMO except performance is not what I am wanting from it. It uses a route map ...
1
vote
1answer
101 views
Zend framework Router replaces capital letters with dashes by default?
If we use capital alphabet in between name for zend controller and action for example inside default module we create
class MyGoodController extends Zend_Controller_Action {
public fooBarAction()
{
...
1
vote
1answer
100 views
Android: Is it possible to connect to a server without configuring router's NAT?
I'm trying to find a way to establish a TCP connection (socket) between an Android device and a server without having to setup server's router NAT.
ANDROID DEVICE -> INTERNET -> ROUTER (with fixed ...
1
vote
1answer
105 views
CakePHP custom route w/ %20 in url want to replace w/ “-” not sure how to make this happen in the route
My link:
echo $link->link($planDetailsByCompany['PlanDetail']['name'],
array('controller' => 'plan_details', 'action' => 'view_benefit_schedule',
'id' => ...
1
vote
2answers
262 views
Is ->h_addr_list[0] the address I need?
I am working on implementing UpNP on C++, and I need to get the local internal IP address assigned by the router to make the sockets works. The address I need is the one that appears on routers where ...
1
vote
2answers
349 views
UPnP discovery in c++?
I am trying to implement UpNp in a c++ application, I found this code with google:
BOOL upnp_discover( upnp_device_t* Device, ushort Tries )
{
SOCKET Sock;
struct sockaddr_in ...
1
vote
0answers
388 views
Configure Windows Server 2008 Server as VPN server to let our China branch access Internet cross GFW
Our company have two branches. One in Australia, the other in China. As you know chinese gov has GFW (Great Firewall) which block facebook, twitter, youtube, sometime even google search and gmail. It ...