Questions tagged [multiviews]
33 questions
1
vote
0 answers
MultiViews removing .php and redirects not working
I have a problem with multi-view being enabled to get rid of the the file extension .php globally across the whole site and this works fine.
But now, not all the 301 redirect's work. We have lots of old inbound (good quality) links that need to go…

Puzzel
- 65
- 1
- 6
1
vote
1 answer
Content Negotiation on Tomcat
I'm trying to get my Tomcat to use pretty URLs, similar to Apache's MultiViews option. I tried using AJP to proxy Tomcat to Apache, but the .htaccess file is still ignored.
What are my options for Tomcat?

stan
- 1,172
- 2
- 9
- 8
1
vote
1 answer
DefaultButton in MultiView.ActiveViewChanged Event
I am using a multiview control in asp.net, and on ActiveViewChanged event I want set default button programmatically as of the selected view so am using code:
if(myMultiview.GetActiveview() == myView)
this.Page.Form.DefaultButton =…

Rohit Chaudhari
- 757
- 3
- 14
- 33
1
vote
1 answer
Generating views at runtime from a database table
I have a technical question as to how I can generate Multiviews (views control) using MVC framework where the views are getting generated dynamically (get details from the DB).
As per asp.net the generation of the views (control) will need to be…

Ganesh
- 11
- 1
0
votes
2 answers
.htaccess RewriteRule Issue with Mac OSX server, not present on Unix server
I'm working on an aircraft website and using a .htaccess file to rewrite the URLS so they are seo friendly. Here is the file:
AddType application/x-httpd-php /(.*)
Options +FollowSymLinks
RewriteEngine on
RewriteRule…

AndyPerlitch
- 4,539
- 5
- 28
- 43
0
votes
1 answer
Anyone have issues with using a RadTextBox in a MultiView?
I am want to use a Telerik RadTextBox inside a MultiView in ASP.NET 2.0. Just dragging a RadTextBox into a view and running the page generates a run-time error of the good old favorite "Object reference nto set to an instance of an object". It…

Dan Appleyard
- 7,405
- 14
- 49
- 80
0
votes
0 answers
Do MultiViews need to be referenced as -MultiViews in the httpd conf file for it to be disabled?
Running a linux environment with apache and getting a warning that MultiViews needs to be disabled. However, it is not in the httpd conf file showing as +MultiViews or even as MultViews in general. If it is not referenced in the conf file under…

Scivic
- 7
- 4
0
votes
1 answer
How to enable MultiViews in Apache
I was trying to achieve that, If someone opens the URL
/login then It should open the /login/index.php file.
and it requires that multiviews needs to be enabled, I found the below options
1.Adding in the .htacces
…

Mahak Choudhary
- 1,286
- 1
- 16
- 13
0
votes
1 answer
Unable to convert the pytorch model to the TorchScript format
Loaded the pretrained PyTorch model file, and when I try to run it with torch.jit.script I get the below error, When I try to run the inbuilt pretrained model from pytorch.org it works perfectly fine. (Ex. Link to example code) but throws error for…

Manoj
- 69
- 1
- 8
0
votes
2 answers
MultiViews is *too* tolerant of bad URLs
When I enable MultiViews, if I visit bad URLs, the my page (index.php) is still reached, when I want the user to get a 404 error instead. I'm trying to figure out how to fix this without creating rules in my .htaccess.
For example,…

p 8
- 33
- 1
- 6
0
votes
2 answers
Passing a float between multiple viewcontrollers
Im trying to send a float from one viewcontroller to another.
Ok Ive tried using NSUserDefaults to go about this. First I tested it with a string and it worked, but now I'm struggling to do the same with my float. Any help would be appreciated! :)…

anneke
- 15
- 1
- 4
0
votes
1 answer
Disable MultiViews in Apache 2.2
We are getting "Alternates" from our Apache server for the 404 error documents and would requires to disable them. For a GET request on the server, we get the following section in our response header
Alternates: {"HTTP_NOT_FOUND.html.var" 1 {type…

Sudeep Hazra
- 118
- 15
0
votes
1 answer
Google Maps not designed to work in multi-views?
Checking my understanding of Google maps:
I am developing a web page that displays a number of different types of information for my employer's facilities. I have been using a multiview, and activating the proper view depending on user input…
user4843530
0
votes
1 answer
ActiveViewIndex is being set to '0'
Alright... Searched online, followed about 100 answers, nothing is working so I am obviously not understanding something.
I have a set of tabs that are dynamically created. When the user clicks one of the tabs, it should change to that tab and its…

K Seven
- 21
- 1
- 4
0
votes
1 answer
Nginx and try_flies not working properly
I'm trying to simulate Multiviews, but i have a problem with try_files. All is ok, but i want to rewrite all urls not managed to /index.php (but no with 404):
location ~ ^(/.+)/ {
try_files $uri $uri/ $1.php?$args @extensionless-php…

user3784031
- 3
- 2