Routing is the process of selecting paths in a network along which to send network traffic. For the process of associating URLs to content, use the tag url-routing instead.
1
vote
0answers
25 views
Routing trouble in Angular & NodeJS [angular]
i have a problem with angular js,
i've created login.html & home.html..
after successfully login i want to change the page to home.html.
my routing is not working, default url is ...
0
votes
0answers
5 views
FatFree how to route restfull calls?
I am trying to set up a restful api application based on fatfree
Directory tree:
├── config.ini
├── index.php
├── lib
├── operator
│ ├── logs
│ ├── models
│ └── resources
│ ...
0
votes
0answers
11 views
IPConfig rule with both mac address and to specific destination IP Address
I'm trying to add a rule where if the traffic is from MAC Address 12:34:56:78:90:AB and to 1.2.3.4 to target NETMON
I've tried
iptables -t nat -I PREROUTING -m mac --mac-source 12:34:56:78:90:AB -d ...
0
votes
1answer
25 views
Code Igniter doesn't recognize my function in controller under a folder
I have a folder under my main controller-folder called admin, in that controller i have a file name admin.php which has a function xyz.
I want to access that function using this url
...
0
votes
1answer
28 views
Link to Rails root URL when root is on a subdomain
So I have a Rails app with a static controller and two routes:
match '/', :to => "static#dashboard", :constraints => { :subdomain => "dashboard.alpha" }
root :to => "static#home"
The ...
0
votes
0answers
48 views
AngularJS - direct access to url with hash
I'm developing a webapp using AngularJS and Laravel.
When I navigate through URL and links in the app everything works fine, but if I type an URL directly in the browser, something strange happens.
...
0
votes
1answer
17 views
Symfony 2 optional route url parts (wildcard?)
In Symfony 2.2.1 Is it possible to create route like:
/search/category_ids/1,2,3,4/subcategory_ids/32,23,9/language_ids/10,23,5 ...
where every url part is optional, for example user could visit ...
0
votes
1answer
13 views
Navigation to a route via Hyperlink
I have a hyperlink in masterpage
<asp:LoginView ID="HeadLoginView" runat="server" EnableViewState="false" >
<AnonymousTemplate>
<%--[ <a href="~/Account/Login" ...
0
votes
1answer
19 views
Transfering to a page in asp.net when routes are applied in webForms
I am using something like
server.transfer("~/student/Language-Certificate");
in a click event.
but I get this error "Error executing child request for /Students/Language-Certificate."
note: ...
-1
votes
0answers
5 views
Cisco 3750X: Determining port priority on SFP module [closed]
I have two 3750 Cisco switches that have two fiber cables/sfp modules hooked up on each.
I have installed two new 3750X switches on the rack for the upgrade, and I would like to use these existing ...
0
votes
0answers
7 views
Multi-Tenancy without subdomains
I watched Ryan Bates Railscast #388 regarding default scopes for multi-tenant apps. He does it using subdomains.
For a few reasons, I'd like to be able to do it without subdomains. for example:
...
2
votes
2answers
41 views
Routing with action after id parameter in Web API
In web api the default route is:
/api/locations/123?days=5
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = ...
1
vote
1answer
30 views
Playframework & Guice without routing
I would like to know if it's possible to inject dependencies using Guice without having to pass by the routing.
If it is how can I call my class Test @Inject()... within my application ?
-1
votes
0answers
13 views
Use route command to block all but one external host? [closed]
I want to see if the HTTP proxy support for an application is working correctly.
In order to check this I have installed a Ubuntu VirtualBox on my Mac laptop and I want to configure the virtual ...
0
votes
0answers
34 views
How can I get ASP.NET MVC 4 to accept routes that look like filenames?
I'm working on a custom routing extension for ASP.NET MVC4 that uses reflection to generate routes based on attributes applied to controllers. It's a fork of Brandon Byars' RestMvc project and I'm ...
0
votes
1answer
30 views
Adding route as child of route from another module
In ZF2, how can I add a route as a child of a route from another module? I'm assuming there's a way to hook into a event somewhere?
E.g. Module A defines a route for /foo. In Module B, I would like ...
0
votes
3answers
28 views
Express: Optional trailing slash for top-level path
Update: My question did not accurately convey what I'm trying to achieve. I wish to match /foo, /foo/, and anything under /foo/ (e.g. /foo/asdf/jkl), not the given paths specifically. The original ...
0
votes
1answer
14 views
get information about the route executed in fatfree
I'd like to know which route is executed according to current url in the beforeroute method in fatfree framework.
In other words, can i get which class and it's method is gonna get executed.
I had ...
0
votes
1answer
8 views
symfony1 route with negative number or string as id and sfDoctrineRouteCollection
I'm using symfony 1.4, i have a route like this:
user_orders:
class: sfDoctrineRouteCollection
options:
model: UserOrders
module: user_orders
...
0
votes
2answers
36 views
How can I have a routing like this controller/action/id/string in ASP.NET MVC
I have a actionresult that look this:
public ActionResult Comment(int id)
{
var news = re.GetNewsByID(id);
NewsViewModel model = new NewsViewModel();
model.Description = ...
1
vote
1answer
42 views
Splat equivalent in Nancy
I'm trying to match all routes in a Nancy module. Sinatra uses splat parameters, e.g
get '/download/*.*' do
# matches /download/path/to/file.xml
params[:splat] # => ["path/to/file", "xml"]
end
...
0
votes
0answers
18 views
Asp.net web routing. Same url pattern without any constraints
Hi every one i am working on asp.net web routing. I need same url pattern without any constraints.
i need following multiple URL pattern.
"CountryRoute","{country_name}" "~/country.aspx" => ...
0
votes
1answer
34 views
Rails - Routing Error - Calling a model from another model
Question: My goal is to list projects under the user's page, and have comment box render under each project that is listed on this user page. But when I do try to render the comment box form, I get a ...
0
votes
1answer
28 views
Rails: Unable to route to edit page when a new nested item fails validation
I have a nested item whose creation form lies in the show view of its parent. In this case it is a single achievement (achievement_item) on an achievements list (achievement).
Everything seems to ...
0
votes
3answers
32 views
Routes not working in Codeigniter
I'm using CodeIgniter 1.9 to build a website.
I want http://myurl.com/index.php/user/profile/2 to take me to the Profile Page for the user with the id of 2.
My routes.php file looks like this.
...
1
vote
2answers
43 views
adding a new route to node express
I'm trying to add a new route in my express app but I keep getting error when trying to start the server. The error is
C:\development\node\express_app\node_modules\express\lib\router\index.js:252
...
-2
votes
0answers
5 views
How can I access my router that is on other office network [closed]
Hi I'm working on ROUTER A and I want to access ROUTER C, the config is:
ROUTER A <-conected with-> ROUTER B <-conected with-> ROUTER C
ROUTER A:
LAN:192.168.1.1 255.255.255.0
...
0
votes
1answer
23 views
Understanding the job of routes in Node.js (api) when utilizing Backbone.js (frontend)
I am just beginning to learn using Backbone.js. Previously I have used a web framework built on top of Node.js to handle all the routes and responses. With Backbone is the possibility of a SPA (single ...
1
vote
1answer
32 views
How to set default route parameter from session?
If I have a batch of routes looking like this:
/{location}/catalog
/{location}/search
etc.
Session always has "location" attribute (alias to auto-recognized user location, e.g. city). So, to ...
0
votes
1answer
22 views
Ruby on Rails generate routing
I am trying to generate routes in my rails app.
The app has Movie table and column genre. I want to make the routes like this: /movies-genre-horror and shows all the movies with genre horror. Is it ...
0
votes
2answers
17 views
Rails routing error when using resource but now when using GET
I am creating a simple suggestion box app (to learn Rails) and am getting the following Rails routing error when I go to "/suggestion-boxes" running on my local machine (localhost:3000)
"Routing ...
0
votes
0answers
8 views
Access routing options in kernel listener
I build a kernel listener some time ago, to redirect a user to a certain language.
There are several pages, that do not have a translation and where the user should not be redirected. As i use ...
0
votes
0answers
37 views
jQuery - How do I execute a function after the DOM has been modified with basic js routing?
I am trying to setup basic routing with jQuery because I want to implement this in my PhoneGap app.
I managed to get everything to work, except one little thing... When I click on the "Show picture" ...
0
votes
1answer
30 views
Rails router: Avoiding long helpers
Consider the following snippet from router.rb
resource :user do
namespace :settings do
resource :access_filter
end
get 'settings'
end
This generates the URL's I want ...
0
votes
0answers
21 views
IPTable Routing - Why output doesn't have any affect?
I'm confused over why my iptables are behaving like this. I'm attempting to block port 25 from PPTP VPN users.
Most of the guides online mention blocking port 25 in the output chain to block SMTP.
...
0
votes
1answer
20 views
Rails route Category find by name issue
I want my users to be able to view /categories/comedy/ and see all posts available in the comedy category. Problem is that in my database all categories are with a capital, so comedy is Comedy. This ...
0
votes
0answers
15 views
Problems in creating rules in iptable [migrated]
Hello to all :) I need a little help with creating a rules. Im starting to learn iptables and firewalls but I have some questions. I need to allow HTTP communication only from PcA to PcB./
My code is:
...
2
votes
3answers
42 views
Find out from where an email has been sent
I'd like to find out from where an email has been sent.
I already know I have to to find the "Received From" that’s farthest down in the complete headers to get the private and the public IP ...
0
votes
0answers
9 views
CloudMate Routing Service
i’m currently trying to implement your routing service and have some problems with their result format.
My request is as follows:
...
0
votes
0answers
9 views
Number of bends of a certain route
I am looking for an api or a web site which lists the number of bends (not counting turns at crossings) of a given road. OpenStreetMap(OSM) or Google Maps(GM) do not provide such a feature to my ...
0
votes
0answers
34 views
How clear routing cache in Symfony 2
I override routing loader (routing.loader) for set requirements key {_locale} in all my paths and set defaults this key. All locales saved in database. And i want clear routing cache (Matcher and ...
0
votes
1answer
38 views
How to use method: 'post' to send form data from view to other controller in rails?
<%= simple_form_for :addcomments, :url => addcomments_post_path, :multipart => true ,:method => 'post' do |f| %>
<%= f.input :title %>
<%= f.input :body %>
<%= f.button ...
0
votes
1answer
45 views
GPS creating a route to destination
I'm working in version 4.6.2 of xcode, and my goal is to display the shortest/quickest route to a destination you searched for.
I've looked all over the internet and stackoverflow and i found alot of ...
0
votes
0answers
33 views
ZF2 Admin routing
Hi i'm trying to set two modules to work togheter. One is responsible for the front pages (Front module) and the other for the admin pages (Admin module).
I have configured the routing of the two ...
0
votes
1answer
20 views
Kohana routing does not match optional param
I cant get a route with optional parameter to parse ID at the end. Here is my route:
Route::set('default', '<action>(/<id>)', array(
'action' => '.*',
'id' => '\d+'
...
0
votes
1answer
27 views
symfony2 routing requirements combining 2 parameters
So I got this in my routing.yml:
requirements:
var1: \d+
var2: \d+
Both are checked on their own and valid.
I need to check the combination of the 2, since the combination is not always ...
0
votes
1answer
35 views
AngularJS routing configuration
I am new to angularjs, was just trying to build a CRUD app with it.
My code is like this http://jsfiddle.net/fpnna/1/
And I am using apache as webserver, when turing on the
...
2
votes
1answer
45 views
Dynamic pages in MVC4
I'm building a small mvc4 site, but I've run in to a little problem :/
The site will have an admin area, and in this area the administrator of the site, should be able to dynamicly create new pages.
...
0
votes
0answers
36 views
I want to Change Url in MVC3
I have
http://localhost:4660/Grid/IndexWithAjax?ajax=this%20is%20ajax%20sample
when click on
@Html.ActionLink("Ajax2", "IndexWithAjax","Grid",new { ajax = "this is
ajax sample" },null)
But ...
0
votes
0answers
12 views
Separation of concerns within an Application Router?
First of all, let me be clear: I'm not here to reinvent the wheel, nor am I to create yet another MVC framework. Just wanted to learn a bit more about how things work under the hood.
Oh, and yeah, my ...





