Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
206 views

http://magento.local reverts to live site - Magento and Xampp for OSX

I'm having trouble trying to rebuild my dev environment. I've installed XAMPP and followed these steps: Backup MYSQL DB. Backup Home Directory. Create DB with same user/dbname Imported SQL file ...
3
votes
1answer
606 views

Dynamically setting the BaseUrl within configuration in Symfony2

I know that within Symfony2's configuration, there is no reference to the base url, as there is no request; the application could either run in cli or within a web server, and therefore we cannot rely ...
2
votes
2answers
5k views

Can I get a “base URL” in Wordpress within a template file?

Usually in my PHP apps I have a base URL setup so I can do things like this <a href="<?php echo BASE_URL; ?>tom/jones">Tom</a> Then I can move my site from development to ...
1
vote
1answer
354 views

How to change the base_url in magento.,because my site were gone after i'm changing that on my magento admin

How to change the base_url in Magento, because my site were gone after i changed that on my magento admin settings... Now i got 404 error on that url, the admin and frontend won't open...
1
vote
3answers
203 views

How to create a fully qualified hyperlink to a resource dynamically?

In ASP.NET I'd like to create a link which points to a specific Uri and send this link in an email to a user, for instance something like http://www.BlaBla.com/CustomerPortal/Order/9876. I can create ...
1
vote
3answers
2k views

Getting the baseurl value into my controllers

Am creating an action helper that will require the return value of the Zend_View_Helper_BaseUrl How do I go about that?
1
vote
3answers
782 views

Zend_Form set action - Can it work w/ Zend application built in subdirectory?

My application is being built in a subdirectory of my local server, that looks something like this: http://localhost/application/ The problem is that when I set the form action to "/form/save", the ...
0
votes
2answers
79 views

Base URL for CodeIgniter installation

I have an FTP server (abc.xyz.com), and I want to install CodeIgniter in the ftp server. I followed the instructions at, CodeIgniter Installation for installing it. I used FileZilla to copy CI to the ...
0
votes
1answer
21 views

Using anchors on a page with <base> set

If I set my base url like so: <base href='http://example.com' /> And then put a link to an anchor on the page http://example.com/test.php: <a href='#top'></a> How do I make ...
0
votes
1answer
229 views

Jquery window.location.replace, redirects to only base URL

I'm using .htaccess (mod rewrite) to have pretty looking SEO friendly URLs. I have a form where user could change his / her account's password. I provide information with Jquery to the user that his / ...
0
votes
1answer
29 views

Merging base URL and index page for social media counters (Facebook, Twitter, Plus1)

Looking for help in connecting the way social media counters count the likes on a base URL and the base URL with file name. I have three counters (Facebook likes, Plus1 likes, and Tweets) on ...
0
votes
1answer
73 views

Moving between localhost and remote server with CodeIgniter

What's the best way to handle moving between development on localhost to live remote server? I have .htaccess mod_rewrite set, but that's not really a problem, because I haven't included that in my ...
0
votes
3answers
148 views

Determining a website's 'root' location

I need some help with concepts and terminology regarding website 'root' urls and directories. Is it possible to determine a website's root, or is that an arbitrary idea, and only the actual server's ...
0
votes
1answer
210 views

Codeigniter, language switch based on domain (base_url switch) whats the best practice?

Q: I've got a multilanguage site. Where the language is switched automatically by checking the base url, let's assume www.myapp.fr (for french) and www.myapp.es (for spanish). I use a helper function ...
0
votes
1answer
101 views

how to fetch base url from the given url using java

I am trying to fetch base URL using java. I have used jtidy parser in my code to fetch the title. I am getting the title properly using jtidy, but I am not getting the base url from the given URL. I ...
0
votes
4answers
1k views

CodeIgniter - Simple base_url question

I'm a bit confused here. I have a simple controller which loads a view. The view contains a form and links some CSS files. I don't really want to do ../../css/global.cssin my link tag. I want to use ...
0
votes
3answers
502 views

base_url in js file

how we can print base_url in js file (in drupal)?please
0
votes
3answers
78 views

base_url Link Issue

I'm using following code: $config['base_url'] = "http://www.aaa.com/"; Also Im using Flash navigation: on(release) { getURL("http://www.aaa.com/xxx/index"); } The Problem is When I give url as ...
0
votes
2answers
1k views

How to get Kohana base_url in template

In Kohana 3 bootstrap.php one can define base_url: Kohana::init(array( 'base_url' => '/foo/', )); This usually means also moving the /js/, /css/ and other media to that base dir like ...
0
votes
1answer
279 views

Rewrite base rule- php

Internal URL: example.com/abc/xyz/rule.php?price=1&pass=2 External URL: example.com/abc/xyz/rule/1/2 But the css, js files are not coming into effect in the external URL. My .htaccess file: ...
0
votes
1answer
2k views

Debugging the base URL element with Firebug

I'm adding the base URL tag to the document head using JS, so the relative links on the page work. But it does not take effect, and Firebug (debugging addon for Firefox) shows the <BASE /> ...
-1
votes
2answers
54 views

Function all of a sudden return a complete path with the dir name in front?

I have a weird problem. I am making kinda my own framework like codeigniter and i have made a function equal to CI's "base_url()" which in my case returns a string like: "http://www.example.com/". My ...