Tagged Questions
0
votes
0answers
12 views
Routing CodeIgnitor documention incorrect?
I'm just learning (started today) CodeIgnitor and I've been following the online examples/documentation and everything has worked smoothly, but I have an issue with the news_model example at: ...
1
vote
0answers
50 views
MVC Internal Server Error
I'm trying to build an PHP MVC.
I currently watching this tutorial link
But from the start its not working. I'm running it in WAMP
It gives me this error:
Internal Server Error
The server ...
0
votes
1answer
34 views
How do we call the way we work with php? [closed]
I have maybe a strange question but I just need to know,
When using PHP there are a lot of ways to build a application or website. My question how do we call this build models?
I list some ways I ...
0
votes
2answers
35 views
$SERVER variable and the double localhost
I've built a function that basically links an excerpt to its relative post. In order to do that I have figured that the variable $_SERVER['SERVER_NAME'] could come in handy in building the path.
I ...
2
votes
3answers
42 views
Getting base url, development variable, the best way, without using globals
In my application architecture I want to replace my globals with something that ain't gonna burn most of the developer's eyes, because I am using globals like this,
define('DEVELOPMENT_ENVIRONMENT', ...
1
vote
2answers
31 views
Kohana routing: can't access route parameters
In Kohana 3.2 I'm using the default route for a simple controller/action/id setup:
Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
'controller' ...
0
votes
1answer
36 views
URL Routing using RewriteRule
I am trying to create my own PHP MVC framework for learning purpose. I have the following directory structure:
localhost/mvc:
.htaccess
index.php
application
controller
model
view
config/
...
0
votes
1answer
75 views
simple MVC example not working on MAMP localhost
Following this tutorial: http://johnsquibb.com/tutorials/mvc-framework-in-1-hour-part-one
I've got the following code:
index.php
<?php
// Define document paths
define('SERVER_ROOT', ...
0
votes
1answer
22 views
configuring MVC files on MAMP, what is the server root?
I'm working through this MVC tutoria: http://johnsquibb.com/tutorials/mvc-framework-in-1-hour-part-one and I'm trying to configure the index file. It asks for the following code:
<?php
/**
* ...
0
votes
0answers
40 views
Allow access to 'subdirectory' created by URL router with Apache
I have a development server for a website I am re-developing with an API backbone. I want the domain to be protected from outside access, so I require a valid htpasswd user on all domains hosted on ...
0
votes
1answer
37 views
How does one define default key=>value pair behavior on route params in Phalcon?
I would like to define the following default behavior on my routes:
Url: myapp.com/mymodule/mycontroller/myaction/q/someTerm/key/someValue/key2/anotherValue
This url should give the dispatcher the ...
0
votes
1answer
53 views
$_POST with klein.php router: How to pass $_POST to a view?
Fishing in uncharted waters, I gave klein.php routing a spin and can't for the life of me find out how to pass a $_POST from a html form to another view.
Example:
index.php
<?php
//START ROUTING
...
0
votes
1answer
40 views
CakePHP: Can I Promote active router with Router::promote or some other way?
I've got two or more routes that will be going to the same controller and action. This is fine until I want to use a helper such as the form helper or pagination on the page.
What happens is that the ...
-3
votes
1answer
95 views
Passing multiple parameters via a url in MVC framework
I'm trying to pass multiple parameters in a url that looks like this...
http://somedomain.com/lessons/lessondetails/5/3
... to a function in the controller that looks like this ...
class ...
0
votes
1answer
122 views
CakePHP get current URL without language prefix
I used this solution for i18n of my CakePHP 2.3 website.
When user in this URL: example.com/myController/myAction/param1/param2
I want to give link to ...
-2
votes
4answers
64 views
Method name must be a string [closed]
I got an error :
Fatal error: Method name must be a string in Z:\home\localhost\www\oop\mvc_homework\index.php on line 9
$url = explode("/",$_GET['url']);
require "controllers/".$url[0].".php";
...
2
votes
4answers
193 views
PHP MVC class decide what method to execute based on url
I am trying to learn MVC and i want to to display a store page when the url is www.example.com/store and another cart page wenn the url is www.example.com/store/cart. Both methods are inside one ...
0
votes
0answers
25 views
ToroPHP - basePath & trailing slash
I am just testing out the ToroPHP routing system, and I like the simplicity of the service, but wondering about couple of things, and hopefully someone can help me out.
This is my CODE:
...
0
votes
2answers
77 views
Yii - multiple urls mapped to single controller/action
One of the things Yii is good for is creating content management systems and similar on the fly. Such systems are generally light weight and scalable as they take advantage of the Yii framework and ...
1
vote
1answer
63 views
First optional routing segment acts as mandatory one for child routes
I have the following routing definition:
'admin_default' => array(
'type' => 'segment',
'options' => array(
'route' => ...
0
votes
1answer
110 views
FuelPHP routes.php not working
I have a very basic setup with a new Fuel checkout.
fuel/app/classes/controllers/auth.php
class Controller_Auth extends Controller
{
public function action_login()
{
return ...
1
vote
0answers
36 views
codeigniter language in url [duplicate]
Hello guys I need help with my codeigniter project.
I'm trying to make a website but I need multy-languages in url.
So I need something like:
site-name.com/ =====> this should use the default ...
1
vote
1answer
202 views
Pagination not working in CodeIgniter? [closed]
Hi i am new in CodeIgniter and i have a problem in paginatation, i used the pagination class and here is my Controller:
public function user($page='user')
{
...
0
votes
2answers
78 views
Page id without '?' in URL
I have seen some websites where different pages are accessed via a page id which isn't passed through via the get method..
So something like this:
http://www.website.com/sitefolder/pageid/
Where as ...
0
votes
0answers
28 views
Zend module routing issues
Hi i have an module admin in my zend app. Following are my config:
appilcation.ini:
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
...
0
votes
0answers
27 views
Routing, url links append after each method, without using absolute urls
I have created a tiny framework that implements a front-controller by the help htaccess file
This is a generic htaccess setup for routing.
<IfModule mod_rewrite.c>
RewriteEngine On
...
0
votes
0answers
358 views
Nginx Rewrite route to index.php Except /phpmyadmin AND url shortening / handling / splitting
Hi first question on stackoverflow :)
Im routing everything to index.php
so i can handle url shortening and internal routing there
tryed nginx rewrite all to index.php except whitelist no succes
my ...
0
votes
3answers
596 views
Codeigniter 2: The requested URL was not found on this server (404) error. CI isn't routing the right way
This is one of the most repeated questions, but I did not get it and had to ask. I use CI 2. I removed index.php from URL by following steps:
In config.php I set
$config['index_page'] = '';
...
0
votes
1answer
284 views
Issue with simple HTTP requests with Laravel Routes.php
I am trying to get the most basic functionality to work on Laravel and am having a really hard time. I want the client to be able to send a request in the form of www.mysite.com/laravel/public/this ...
1
vote
3answers
110 views
if variable is equal to href insert class to link
I'm trying to create a nav that when the user is inside the page of the href of the link it has a color applied. So I searched and I think the best approach is to use:
$url = $_SERVER['REQUEST_URI'];
...
0
votes
2answers
247 views
Route vs. Controller in Laravel
I was wondering about the best approach for laravel framework development. Most of the time and tutorials i go through, e.g: Laravel CodeHappy by Dayle, example as what you see here is the same with ...
1
vote
4answers
127 views
CodeIgniter URI Routing and empty segment
I now set uri routing in my codeigniter config like this
$route['user/:any'] = "users";
and everything works fine with request like this
http://localhost/user/1
but if i try request
...
0
votes
1answer
85 views
PHP Rest, .htaccess Routing
I'm using the REST API from this repo:
https://github.com/marcj/php-rest-service/tree/master/RestService
I'm running the REST service from a subdirectory /mydir. However, anything other than / does ...
0
votes
4answers
204 views
How to set dynamic route to use slug in CodeIgniter?
Let's say that I have a controller named
pages
and there is a method
slug_on_the_fly
public function slug_on_the_fly($slug)
How would my route for this look like?
E.g. for blog controller it ...
0
votes
0answers
107 views
url-routing routes -> redirect to localhost/xampp/
i wanted to add a kind of url-routing system to my project, read/watched tutorials and so on but everytime i get the same issue:
im working with xampp and windows7 i access my project with ...
1
vote
2answers
130 views
Path not found error in Zend Framework
I have been getting this error in Zend framework when i want to run the static content , The error is like
///Not Found
The requested URL /public/content/services was not found on this server.
...
2
votes
2answers
116 views
How to apply codeigniter's URL_TITLE value to the URL
I'm completely new to ci,
I have a url something like this:
http://localhost/mvc/post/prod_id/1
And I want it to be:
http://localhost/mvc/post/my-best-product
So far I'm able to manage to route ...
0
votes
3answers
63 views
What meaning does the text in the URL have after index.php/
I am wondering what special meaning does text in the URL have after index.php/
So I would have an address like www.site.com/index.php/sometext
Is it parsed as a GET parameter, or something else.
I ...
1
vote
1answer
73 views
php mvc change default url pattern
I'm using yaf php framework
I want to get param array.
ex:
My url:... mvcSample/svc/saveUser/user1/pass/a@b.c/joe/foo
My output params dump:
array (size=3)
'user1' => string 'pass' ...
0
votes
0answers
28 views
Routing & Linking Models
I have a these two models: rooms and scores in a CakePHP setup.
rooms hasMany scores, and scores belongsTo rooms.
The current default routing is as follows:
/rooms/
/rooms/add
/rooms/view/*
...
0
votes
0answers
46 views
Routing Mechanism: Take request & translation
What I'm looking to do is URL routing basically. That's one aspect of PHP I haven't used, though. Here's what I need to do, just as an example:
Create a simple routing mechanism that takes a request ...
-1
votes
1answer
123 views
Simple PHP Routing Project
I need to create a simple routing mechanism that takes a request like: /foo/bar and translates it to FooController->barAction(); I have to use a single script as an access point to load these ...
0
votes
1answer
110 views
.htaccess rewriting PATH_INFO vars to empty before passing to template; not removing index.php from url
Morning everyone, I'm hoping this will be an easy one! (I haven't even had coffee yet why am I up so early?!)
Anyway.. got a two-parter for you:
First (basic) issue that I'm trying to remove ...
0
votes
1answer
98 views
How to append a query string instead of replacing the current one in PHP?
I'm using symfony and might have something like this:
<a href="<?php echo url_for('home/index?color=blue') ?>">Test</a>
However, if I already have a query string in the URL like ...
0
votes
1answer
221 views
htaccess rewrite rule for admin panel
I have the url pattern in my web application like this "www.mysitename.com/foldername/controller/method".
And all requested pages are redirected to index.php first on root folder and then it process ...
2
votes
2answers
106 views
Cakephp Passed arguments
Hello, my code is not working in CakePHP framework and it is showing an error message.
URL:
http://domainname.com/About/param1/param2
Code:
class AboutController extends AppController {
...
0
votes
1answer
74 views
In URL API version routing in PHP
I am thinking of a good way of routing requests in a RESTful API which has versions in the URL, for example
api.example.com/v2/resource
api.example.com/v3/resource
In particular, how to map these ...
1
vote
1answer
89 views
Using the regex from valid_email method in CodeIgniter to route a URL with an email in it for email verification
The email verification link I create to validate a user is as follows:
site_url/user@example.com/hash_to_verify
I'm trying to route a URL like the one above to my activate_user method in my ...
1
vote
2answers
72 views
CodeIgniter configuration for multi domain home
I've built a CI App and was just recently informed that it will have to be multi homed. That is, it will be on a server that has 2 NICs. One for the www and the other for an internal address.
I'm ...
0
votes
2answers
89 views
Rewrite Url (URL Routing) in .htaccess
My directories are like:
http://www.mydomain.com/macbook-computer
http://www.mydomain.com/sony-computer
http://www.mydomain.com/lenovo-computer
I want to make that, if a user type ...



