Mapping User Paths
Nov 1, 2006
I'm not even sure I'm asking this in the right place, but here we go.
We are working on creating some load tests for our system and we need to figure out how a "normal" user navigates our system.
Is there software out there that will show use how a user navigates our system via reading the apache logs? Will awstats do the trick?
View 1 Replies
ADVERTISEMENT
Nov 26, 2008
How can I find a path in my VPS? It uses virtuozzo. I am new to all this so this might be a stupid question..
For example, my host says ffmpeg is in usr/bin/ffmpeg,, how do I find /usr/?
View 6 Replies
View Related
Mar 22, 2007
I am using mod_rewrite to create "pretty" urls but some of my files contain paths such as this:
<img src="images/blah.jpg"> Meaning if the user visits a page where the file does not physically exist then it won't work.
I want to know if it is possible to pick this up and rewrite the path. I.e.:
change: <img src="images/blah.jpg">
to: <img src="../images/blah.jpg">
or
<img src="../../images/blah.jpg">
As I don't want to create physical files with relative urls for every trunk of my url. For example:
www.mydomain.com/directory/directory/directory/
Would need 3 different files in three different directories to display properly.
View 0 Replies
View Related
Mar 21, 2008
I've had a web server set up for a while at home to do some testing. I can view the site locally using my IP but all relative paths of CSS or images on the html page (eg /something/title.gif) don't show up. Bizarrely, if I go to[url], they appear!
Anyone know what the issue may be? The "DocumentRoot" value in Apache conf is pointing to the correct folder.
View 2 Replies
View Related
Aug 16, 2013
I'm trying to use server side includes in a PHP website but am getting the error open_basedir restriction in effect.
I've tried going in to the PHP Settings for the website and have selected the predefined option
{DOCROOT}{/}{:}{TMP}{/}
Which as I understand it should allow access to all files within my httpdocs folder but I still get the error:
PHP Warning: include(): open_basedir restriction in effect. File(/sparklyphp/cms/inc/checkAdminLogin.php) is not within the allowed path(s): (F:PLESKWWWviwebsitedesign.comhttpdocs;C:WindowsTemp) in F:PLESKWWWwebsitedesign.comhttpdocssparklyphpcmsindex.php on line 1
The thing is I know 100% that the file it's having a problem with is in a subfolder of the
F:PLESKWWWwebsitedesign.comhttpdocs folder (the full F:PLESKWWWwebsitedesign.comhttpdocssparklyphpcmsinccheckAdminLogin.php).
View 2 Replies
View Related
Dec 11, 2008
I was wondering if it is possible to host subdomains on different VPS's? Here is what I am trying to do
PrimaryDomain.com -> Hosted on VPS0
|
- Subdomain1.primaryhost.com -> Hosted on VPS1
|
- Subdomain2.primaryhost.com -> Hosted on VPS2
VPS0, VPS1, VPS2 have different IP addresses.
I tried using A records to point subdomains to different VPS but VPS requires a "primary domain" looks like. Do let me know if this is possible. I tried google but not sure what exactly I shoudl be searching for.
View 4 Replies
View Related
Dec 21, 2007
I have website www.mydomain.com on apache.
I want user when typing that URL it redirect to www.mydomain.com/home immediately.
Do I need to change the DNS to do this, if yes, how? or if I only need to configue Apache do to this.
View 3 Replies
View Related
Dec 24, 2008
I have a new domain for an online store which I am trying to map to a certain web server(launchsplash_com) for just their Launch Page to show up as homepage when my website is accessed (the ecommerce software has its own default homepage, which I prefer not to show up). The registrar for the domain is Godaddy but hosting is done with a different company - Server Intellect.
The issue is mapping my domain to Launchsplash's server does not seem to work. And I am not sure if I am doing the right settings through the host control panel. As per LaunchSplash company's instruction - I create a CNAME record name - www_mydomainname_com and CNAME record data - mydomainname_LaunchSplash_com
Since the domain is not being hosted with Godaddy, the total dns control for making dns changes is disabled in godaddy control panel.
I do not wish to do the forwarding option, since that shows up the forwarded domain name.
View 9 Replies
View Related
Apr 9, 2009
If you want to use several domains for your single website, from SEO-reasons or from any other reasons (which?) is it better to forward your domain to that sub-domain or should it be mapped in the DNS in CNAME?
mydomain.com
mydomain.com/nameoftheotherdomain = nameoftheotherdomain.com
It's not the same issue like with Google Apps, whether you should use your own domain, e.g. sites.yourdomain.com or whether you should use the domain offered by Google for your Sites. The reason is that theotherdomain.com is a part of the single website called yourdomain.com, thus, it is not an external website hosted somewhere else.
View 2 Replies
View Related
Jun 19, 2009
i currently have a site on a .co.uk domain. my client would like the "main" domain to be .com instead. I should add that BOTH .com and .co.uk will be used.
The company is advertising itself as thesite.com, so people will associate the business with www.thesite.com, not .co.uk.
I have both domains, and I understand domain mapping is used for this purpose, but before I go and screw up anything, could someone please clarify.
Is it possible to "domain map" so that visitors go to www.thesite.com, they will see the website as .com, but the site itself will actually be on the ".co.uk" server.
I don't particuarly want to transfer the site from the .co.uk to the .com and set up a redirect.
I know I could use a redirect .com to .co.uk, but the client specifically wants ".com" to be the site visitors view. (they bought .co.uk and set the site up first, just to be annoying)
View 3 Replies
View Related
Oct 6, 2007
just restored a server from an rsync backup. problem now is that i have a couple of hundred accounts all under root, when they're supposed to be resellers and sub accounts of resellers.
any idea if its just some file which contains all the mappings or do i need to go through all these hundreds of accounts and reassign them?
View 9 Replies
View Related
Sep 7, 2007
I'm not that good at IPTables so bare with me. I think I got the rules correct though but it doesn't work Here is what I am trying to do.
I have a server at let's say 111.222.11.10(I will call this server A) and another at 111.222.11.20(I will call this server B).
These servers are in same datacenter.
What I am trying to do here is when a user accesses port 2000 on server A, I want server A to forward/proxy the port to 2000 at Server B. I have tried the following so far.
Non of them worked.
iptables -t nat -I PREROUTING -p tcp --dport 2000 -j DNAT --to 111.222.11.20:2000
iptables -I FORWARD -p tcp -d 111.222.11.20 --dport 2000 -j ACCEPT
[root@n1-cluster ~]# iptables -t nat -I PREROUTING -p tcp --dport 2000 -j DNAT --to 111.222.10.20:2000
[root@n1-cluster ~]# iptables -t nat -A PREROUTING -p udp --dport 2000 -i eth0 -j DNAT --to 111.222.10.20:2000
iptables -A FORWARD -i eth0 -p tcp --dport 2000 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 2000 -j DNAT --to-destination 111.222.10.20:2000
Yes, I have done service iptables save and start.
Also iptables -F
Any ideas on what may be wrong?
View 9 Replies
View Related
May 14, 2009
I already mapped my IP address to a domain but when I tried to access http://myipaddress it still show the LX Admin Default page instead of my site. How can i fix that?
View 2 Replies
View Related
Apr 22, 2005
I have a website where users can sign up and create a site. They can access their website by typing username.example.com.
However, I would like to add to this the ability to buy a domain name and point it to username.example.com
so example.com/guestbook.html would translate to username.example.com/guestbook.html (external domain and associated user are mapped in the database)
Do I need my own DNS server for this or is there a simpler solution? Also, how should the database lookup be performed for this to work?
View 0 Replies
View Related
Mar 20, 2009
Currently my companies global website “domain.com” is hosted in a shared hosted environment, our own U.S. website “us.domain.com” is hosted at our datacenter.
Here is my question, we have a redesign project. My goal is to lose the “us.domain.com” sub-domain and move our new U.S. site under the "domain.com" domain using a “/us/” folder delineation.
Is it possible with modern web server technology to setup a something like virtual directory/folder, redirect, alias or remote mapping of the “/us/” folder that points to a separate server hosting our U.S. site outside of shared hosting environment for our "domain.com" site, e.g.?
• Domain.com/<global website content/structure > - Hosted at in a shared environment on Web App Server running Coldfusion
• Domain.com/us/<U.S. website content/structure> - Hosted at our datacenter on Web App Server running IBM WebSphere
Unfortunately I cannot merge the two sites together based on the web server technology and lack of budget/resources to accomplish.
View 1 Replies
View Related
Apr 9, 2007
any idea if this is possible? basically what i'd like to do is make a "virtual folder" in my linux box that is actually a connection to an ftp account on another server.
so for e.g. if i say cd /myftp it'll show the contents of that directory as though it was a standard folder, however it is actually connecting to some other machine via ftp?
View 2 Replies
View Related
May 6, 2015
I used to have a server which had domain mapping via wordpress... a friend of mine had this up for me and every time I added a new website to the same server/ip-address, I just modified the .htaccess for example:
RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTP_HOST} domain.com
RewriteCond $1 !^domain
RewriteRule (.*) /domain/$1 [L]
Anyway, I no longer have this server and as a result, I have websites that are not being mapped correctly, many domains point to the same ip address.
I have tried to use name-based virtual hosts but it seems as if this is being ignored... I did restart Apache by sudo service apache2 restart
I'd really like to get my websites working again without buying multiple ip-addresses.
View 1 Replies
View Related
Apr 2, 2014
So I have question regarding apache on windows and hard drives.
I have a virtual rack what i connected all my servers upto, Then I mapped all my servers hard drives together so they can all communicate and share data from each other.
But I have apache installed on 1 server hard drive C:/
Can I run apache from that mapped hard drive on the other servers ? Or would that cause problems ?
Also they are all windows 2008 running the latest apache from here.
View 19 Replies
View Related
May 22, 2007
I need a shared host account that can support wildcard mapping of all HTTP requests through the ASP.NET engine. This is required in order to fully support the UrlRewriting techniques I want to use. Anyone know of any affordable hosts that can support this? Of course, as my site grows I'll consider upgrading to a VPS (and further depending on the growth).
View 3 Replies
View Related
Jan 22, 2008
I buy some webhosts from various hosting providers. I installed vBulletin on one host and ImageMagick do not work. Hosting provider said ImageMagick is installed. Also I checked phpinfo and sow it is really installed. But ImageMagick still do not work!
So, I need anything to detect real ImageMagick paths, status, components.
and also I need anything to test ImageMagick if it works or not.
View 10 Replies
View Related
May 7, 2007
I thought I knew enough about my .htaccess stuff to do this, but I can't seem to work it out. What I want to do is if a user visits domain.com/folder, we check to see if the folder exists. If so, show as normal (IE domain.com/support)
If a user visits domain.com/dynamicusername (dynamicusername is not a physical folder), redirect to dynamicusername.domain.com
View 3 Replies
View Related
Jan 3, 2014
when I find the subscription from the admin side of PPA, if I select "Login as user" I've noticed that it is different from actually logging in as the user - for example - "add domain alias" is missing when I login as a customer - but not as an admin... I need my customers to add their own aliases and manage them - how do I add that feature to the client login side?
View 9 Replies
View Related
Aug 13, 2008
use "nobody" is using 2much cpu on my server ... can someone explain me how is this possible ?
[url]
I already have checked
"Prevent the user "nobody" from sending out mail to remote addresses (PHP and CGI scripts generally run as nobody if you are not using PHPSuexec and Suexec respectively.)"
In tweak settings.
View 7 Replies
View Related
Aug 6, 2008
when I run top command I should see who user are running and I see only my root and no body
2840 mysql 15 0 181m 78m 4568 S 22 1.0 1102:41 mysqld
4078 nobody 16 0 37128 17m 3300 S 5 0.2 0:00.99 httpd
4032 nobody 15 0 37600 18m 3364 S 5 0.2 0:00.35 httpd
3541 nobody 17 0 38200 18m 3300 S 4 0.2 0:00.73 httpd
3598 nobody 16 0 41744 21m 3288 S 4 0.3 0:01.26 httpd
3738 nobody 15 0 39820 19m 3276 S 3 0.2 0:00.63 httpd
4052 nobody 15 0 38436 18m 3376 S 2 0.2 0:01.63 httpd
3428 nobody 15 0 37040 17m 3388 S 2 0.2 0:00.60 httpd
3806 nobody 17 0 38404 18m 3316 S 2 0.2 0:00.70 httpd
4036 nobody 15 0 38408 18m 3300 S 1 0.2 0:00.52 httpd
4072 nobody 15 0 44216 24m 3424 S 1 0.3 0:01.03 httpd
3402 nobody 15 0 38296 18m 3320 S 0 0.2 0:01.05 httpd
3437 nobody 15 0 41632 22m 3616 S 0 0.3 0:01.25 httpd
3505 nobody 15 0 37412 17m 3428 S 0 0.2 0:00.89 httpd
3523 nobody 15 0 41432 21m 3252 S 0 0.3 0:00.30 httpd
3542 nobody 15 0 42720 22m 3388 S 0 0.3 0:00.88 httpd
3581 nobody 15 0 37464 17m 3272 S 0 0.2 0:00.40 httpd
3602 nobody 15 0 38472 18m 3420 S 0 0.2 0:00.31 httpd
3643 nobody 15 0 37788 18m 3308 S 0 0.2 0:00.50 httpd
3644 nobody 15 0 35120 15m 3000 S 0 0.2 0:00.03 httpd
3645 nobody 15 0 41816 21m 3276 S 0 0.3 0:00.52 httpd
3647 nobody 15 0 42908 23m 3408 S 0 0.3 0:01.20 httpd
3723 nobody 15 0 36260 16m 3408 S 0 0.2 0:00.85 httpd
3805 nobody 15 0 37512 17m 3272 S 0 0.2 0:00.44 httpd
4046 nobody 15 0 39596 19m 3284 S 0 0.2 0:01.41 httpd
4567 root 15 0 2452 1224 796 R 0 0.0 0:01.04 top
7826 root 15 0 0 0 0 S 0 0.0 0:06.21 pdflush
10001 root 15 0 12920 8528 1292 S 0 0.1 0:18.65 lfd
1 root 16 0 2060 636 544 S 0 0.0 0:12.09 init
2 root RT 0 0 0 0 S 0 0.0 0:01.15 migration/0
3 root 34 19 0 0 0 S 0 0.0 0:00.14 ksoftirqd/0
4 root RT 0 0 0 0 S 0 0.0 0:00.00 watchdog/0
5 root RT 0 0 0 0 S 0 0.0 0:00.63 migration/1
6 root 34 19 0 0 0 S 0 0.0 0:00.09 ksoftirqd/1
7 root RT 0 0 0 0 S 0 0.0 0:00.00 watchdog/1
8 root RT 0 0 0 0 S 0 0.0 0:01.29 migration/2
9 root 34 19 0 0 0 S 0 0.0 0:00.18 ksoftirqd/2
----------------------
and I can't know who are runing in my server
View 10 Replies
View Related
Dec 19, 2007
which user should i use when you doing work on the server? I've been login as root when i need to do work on the server (i know this is really bad.)
Should i create another user to ssh in and when i need to do crital stuff i will use su ?
What groupid should i set this user to?
View 14 Replies
View Related
Jul 9, 2009
I am currently looking for a new IP KVM. Right now I use a mix of HP and Raritan KVMs and I'm honestly not super happy with either of them. The main feature I'm looking for is the ability to setup multiple users and only allow them to access certain ports/devices on the KVM.
What would be the best IP KVM to look at for this?
View 10 Replies
View Related
Oct 8, 2009
I basically have a script that uses passthru when people login with FTP so it can connect users from multiple interfaces.
Thing is, it uses the default php.ini file so, to get this script to work I have to enable passthru in the default php.ini file, affecting all users with an account. I am currently running SuExec and can change the php.ini file each user uses from httpd.conf. But as far as I am aware the FTP user isn't in httpd.conf.
What user does FTP run under and how can I use a custom php.ini file just for the FTP daemon. Also, as a side note, what are the effects of passthru and can it be used for malicious intent if wanted?
View 0 Replies
View Related
Jul 27, 2009
Is it possible to create user aliases on linux?
I have webmin and virtualmin running on my server, but it's set up to create usernames in the form name@domain.tld.
Is it possible to create an alias, say myname that points to myname@mydomain.tld, so that I am able to have certain users to login via SSH using a shorter name?
View 1 Replies
View Related