The configuration tag has no wiki summary.
1
vote
1answer
41 views
Accessing a development LAMP server as if it were the live server by faking the URL
At the moment I have my test server set-up like so http://localhost/~callum but I want to set-up a fake url so I can link javascripts and CSS files from my PHP files. Hope this makes sense any help is ...
1
vote
1answer
25 views
What is the purpose of <Directory /> with a local <VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www
<Directory />
</Directory>
</VirtualHost>
Does the <Directory> tag refer to /var/www on the server, or /?
What ...
0
votes
1answer
33 views
filter admin access by IP with httpd.conf
I am trying to filter all backend url to one IP in the httpd.conf file using this code:
<Location /admin>
Order deny,allow
Deny from all
Allow from 100.x.xxx.xxx
</Location>
...
1
vote
1answer
38 views
Configure a .tk domain on Zymic?
I created a site on Zymic but I can not put my .tk domain, someone could help me solve this problem?
1
vote
1answer
132 views
Problems defining CNAME for tumblr custom domain through directadmin
I'm having problems trying to define a CNAME from blog.mydomain.com to domains.tumblr.
I'm using directadmin DNS Administration.
I've added a sub-domain named blog.mydomain.com and then in DNS ...
1
vote
1answer
151 views
Setup basic proxypass in Apache
I have a web application that communicates to a web service deployed on the same server. The web app was written with Tibco General Interface and works well only when it is running locally on the ...
0
votes
5answers
122 views
Port numbers for SSL
We have an existing web site with HTTP on port 80 and HTTPS on port 443. I'm adding a second site to that now, and from what I understand, I cannot host two sites on the same SSL port.
So my ...
1
vote
1answer
84 views
Move the DokuWiki data directory somewhere else?
I need to move the DokuWiki data directory away from its default location (because I keep the installation and configuration in version control, but data needs to kept elsewhere, in order to be ...
0
votes
1answer
38 views
Why are some Shared Web Hosting configuration changes delayed?
I have used several shared web hosting packages over the years, however, more recently I have encountered issues that have me questioning the purpose of delays in configuration changes.
The web host ...
2
votes
2answers
444 views
Is it possible to count the number of hits or loads of a webpage without anything fancy?
I know very little, but I do know that I have some server space given by my University with a file called public_html which anyone can load html and other files from. So is there a simple way to add ...
2
votes
2answers
161 views
Clean URLs issue using .htaccess in PHP project
I am working on a PHP laravel project. I am currently facing issues with .htaccess file. I have following .htaccess:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
...
3
votes
2answers
126 views
Increase Servers folder depth limit for running scripts?
I have a CMS on my site that utilises TinyMCE (the WYSIWYG text editor). The issue is that TinyMCE cannot browse for files (example: images) on the web server. I get the error:
Error 324 ...
3
votes
1answer
478 views
Enabling SSL on Apache2 causes address already in use error
My server works just fine on a normal Apache2 install. Now, I'm trying to install subversion on this server using a guide I found on the net called: Installation of Subversion on Ubuntu, with Apache, ...
0
votes
3answers
63 views
Web Email Configuration
I just created emails for my website from the cpanel. I then gave links to the cpanel webmail to each owner of the newly created mails. When they tried to login it returened invalid username and ...
0
votes
1answer
321 views
Disable default error pages/error messages in IIS
I have this web application (ASP.Net MVC 3) that on certain conditions returns a custom JSON string with a HTTP status code for an error (403, 415, 500). It is deployed on a Win 2008 R2 server with ...