Sponsored Content
Full Discussion: Apache Virtual Path
Top Forums Web Development Apache Virtual Path Post 302820211 by Corona688 on Wednesday 12th of June 2013 10:58:09 AM
Old 06-12-2013
[edit] Actually, this does not work.

This changes the URL the client goes to, it redirects and changes the address bar. I do not want that. I just want anything beneath a certain folder to all call the same script.

Last edited by Corona688; 06-12-2013 at 12:11 PM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apache virtual host

Would this be the correct entry for Apache to answer on the IP 129.250.242.126 if the servers IP is 129.250.242.125? Are any other changes necessary to get Apache to answer this IP for web traffic? < VirtualHost 129.250.242.126> ServerName www.my_domain.com ServerAdmin admin@my_domain.com... (4 Replies)
Discussion started by: 98_1LE
4 Replies

2. UNIX for Advanced & Expert Users

Apache 2 Virtual Hosts not resolving

Hey all, I'm having some apache problems. I've installed apache countless times on FreeBSD. However, I'm having some problems and I could use some help. Here is my system info: FreeBSD 5.2.1 Apache 2.0.51 (/usr/local/apache2), doc root (/www symlink to /var/www) PHP 5.0.1 (/usr/local/php)... (2 Replies)
Discussion started by: ezekiel61
2 Replies

3. UNIX for Dummies Questions & Answers

Apache not logging virtual domain

A client has asked us to set up a different domain (as an alias for their site) which they could use on certain marketing material and hence measure the campaign's effectiveness. We've set it up and it all seems to be working fine except that the access log file for the new domain is stuck at zero... (2 Replies)
Discussion started by: fire>ant>
2 Replies

4. UNIX for Dummies Questions & Answers

Application & Virtual hosts in Apache

Folks; I need help knowing how to add an application to existing Virtual host on Apache. here's the details: I have a virtual host file (Based on IP address) for Apache and is configured to run application inside it. How can i add another application to the same virtual host based on the same IP... (0 Replies)
Discussion started by: moe2266
0 Replies

5. Linux

Apache Virtual Server Help

Hi I am trying to configure virtual host on apache and I am running into a problem where the server defaults to the default location and I cannot get apache to pull from the second server. I have configured 2 files in vhosts.d folder I have added NameVirtualHost *.80 to the httpd.conf I have... (0 Replies)
Discussion started by: ratnamg
0 Replies

6. Web Development

Apache Virtual URL

Hi All, i'am facing a problem with urls that don't have a filestructure under DocumentRoot. A URL like http://mydomain.com/applicationrew/Structure1/Structure2/some?parameter=key&parameter1=key1 Should be rewritet to something else. Now i defined a Location like <Location ~... (3 Replies)
Discussion started by: wuschelz
3 Replies

7. Red Hat

Virtual Host Apache

Hi, I have set up the following virtual host but it cannot find the URL? Apache is running fine and I have disabled iptables. Within the document root I have the following file index.html displaying a sample text message. Any ideas what my problem might be? httpd.conf: ... (2 Replies)
Discussion started by: Duffs22
2 Replies

8. Red Hat

Apache question - virtual host related

Hi folks, I recently read about Apache virtual host and was able to configure that as well. I used name based virtual host (lets say http://vhost1.example.com) and it worked just fine. Then I configured another named based virtual host on same apache server (lets say http://vhost2.example.com)... (2 Replies)
Discussion started by: freebird8z
2 Replies

9. Web Development

Problems with Apache Virtual Host

I am attempting to add virtual hosts to an apache web server, which has this current configuration: <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None ... (27 Replies)
Discussion started by: Corona688
27 Replies

10. UNIX for Advanced & Expert Users

Apache Virtual host issue

Hello, I am facing a very strange issue while setting a virtual host on apache to setup multiple websites using separate IPs. Virtual host is setup but when i am browsing the website it display content under /var/www/html and displaying site1 and site2 folder instead of access the content... (2 Replies)
Discussion started by: sunnysthakur
2 Replies
Net::Dropbox::API(3pm)					User Contributed Perl Documentation				    Net::Dropbox::API(3pm)

NAME
Net::Dropbox::API - A dropbox API interface VERSION
Version 1.8.8.8 SYNOPSIS
The Dropbox API is a OAuth based API. I try to abstract as much away as possible so you should not need to know too much about it. This is how it works: use Net::Dropbox::API; my $box = Net::Dropbox::API->new({key => 'KEY', secret => 'SECRET'}); my $login_link = $box->login; # user needs to click this link and login $box->auth; # oauth keys get exchanged my $info = $box->account_info; # and here we have our account info See the examples for a working Mojolicious web client using the Dropbox API. You can find Dropbox's API documentation at <https://www.dropbox.com/developers/web_docs> FUNCTIONS
login This sets up the initial OAuth handshake and returns the login URL. This URL has to be clicked by the user and the user then has to accept the application in dropbox. Dropbox then redirects back to the callback URL defined with "$self->callback_url". If the user already accepted the application the redirect may happen without the user actually clicking anywhere. auth The auth method changes the initial request token into access token that we need for subsequent access to the API. This method only has to be called once after login. account_info account_info polls the users info from dropbox. list lists all files in the path defined: $data = $box->list(); # top-level $data = $box->list( "/Photos" ); # folder The data returned is a ref to a hash containing various fields returned by Dropbox, including a "hash" value, which can be used later to check if Dropbox data beneath a specified folder has changed since the last call. For this, "list()" accepts an optional 'hash' argument: $data = $box->list({ hash => "ce9ccbfb8f255f234c93adcfef33b5a6" }, "/Photos"); This will either return { http_response_code => 304 } in which case nothing has changed since the last call, or { http_response_code => 200, # ... various other fields } if there were modifications. copy copies a folder copy($from, $to) move move a folder move($from, $to) mkdir creates a folder mkdir($path) delete delete a folder delete($path) view creates a cookie protected link for the user to look at. view($path) metadata creates a cookie protected link for the user to look at. metadata($path) putfile uploads a file to dropbox getfile get a file from dropbox debug Set this to a non-false value in order to print some debugging information to STDOUT. debug(1) INTERNAL API
_talk _talk handles the access to the restricted resources. You should normally not need to access this directly. nonce Generate a different nonce for every request. AUTHOR
Lenz Gschwendtner, "<norbu09 at cpan.org>" With Bug fixes from: Greg Knauss "gknauss at eod.com" Chris Prather "chris at prather.org" Shinichiro Aska [ktdreyer] SureVoIP <http://www.surevoip.co.uk> BUGS
Please report any bugs through the web interface at https://github.com/norbu09/Net--Dropbox/issues <https://github.com/norbu09/Net--Dropbox/issues>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Net::Dropbox::API You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Net-Dropbox-API <http://annocpan.org/dist/Net-Dropbox-API> o CPAN Ratings http://cpanratings.perl.org/d/Net-Dropbox-API <http://cpanratings.perl.org/d/Net-Dropbox-API> o Search CPAN http://search.cpan.org/dist/Net-Dropbox-API/ <http://search.cpan.org/dist/Net-Dropbox-API/> COPYRIGHT &; LICENSE Copyright 2010 Lenz Gschwendtner. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-03-22 Net::Dropbox::API(3pm)
All times are GMT -4. The time now is 11:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy