Redirect Cached Search Engine To New Dir
Aug 7, 2008
I recently reorganized my music site, putting my songs in their own directory (off of public_html), and now a couple of search engines are generating a boatload of 404 errors.
Can I redirect the file requests to the new location and, if so, how?
View 3 Replies
ADVERTISEMENT
Jan 8, 2007
I am thinking about creating my own search engine and I was wondering what some basic server hardware would be required to do this (e.g., RAM, hard drives, memory, storage space). Would I have to run a minimum of 1TB on storage and 4 to 6GB of ram to do it right?
View 6 Replies
View Related
Oct 25, 2009
i have a mp3 search engine website, i dont host any mp3 file, and i want buy a dedicated from france, but the seller of yourwebhoster.eu say its no allowed the mp3 search engine, where i can host that?
View 8 Replies
View Related
Dec 10, 2007
Is there any sites which provide web hosting and search engine advertisement in one plan?
View 4 Replies
View Related
Sep 27, 2007
One of the sites I have, is placed on a non-Apache server (the others are). Phpinfo() gives this:
Server API CGI
I'd like to make search engine-friendly URLs for all my sites. All of them will do fine with mod_rewrite, but that's not possible on this server, it seems. Anybody here knows how I can do this for this particular server?
View 1 Replies
View Related
Jul 26, 2008
I want to host a torrent search engine (not a torrent site with actual torrents hosted, only a search engine).
It has to be really fast. I have a few questions?
What hosting is required for this site to be lightning fast? Most of it is due to the coding of the site but how much of it is reliant of the server? Any suggestions?
Also, is it better to start small and upgrade as more visitors come? Or is it just better to get a big server?
View 0 Replies
View Related
May 10, 2008
I am considering a server from Iweb wich is based in Canada.
My question is about search engines especially google. My site will be targeting US visitors and I am in the US. When google and other search engines see that my IP address is in Canada will it have any affect on search engine ranking for the regular us google.com? I don't care much about rankings on google.ca since my visitors will mainly be in the USA. anybody have any insite on this? I also want to mention my domain name will be a .com domain
View 2 Replies
View Related
Aug 24, 2007
I have a dedicated server with 1gb ram, now I see 468.02 MB used for Cached memory, this is the first time. Why could this be? I have not changed any settings except for turning off safe mode for an account.
View 6 Replies
View Related
May 28, 2009
We renewed our SSL certificate about two weeks before it expired, and pushed the new one to our servers.
All has worked well, but a very small percentage of users are complaining that they're seeing errors that the certificate is expired.
Is there some browser or something that would cache the old certificate client-side even past its expiry?
View 2 Replies
View Related
Feb 8, 2007
Using version 0.9.5 with the default settings. The cache fills up the shared memory in less than a day. I noticed the cached script is stuck at 176, what happens after this? Will it cache content to disk in the temporary folder (/tmp/eaccelerator/) when the shared memory is full?
View 0 Replies
View Related
May 26, 2009
I have bough a dedicated server with 2GB Ram, i have installed Hypervm and so surpise when my server is using most of my memory.
I type cat /proc/meminfo
[root@srv ~]# cat /proc/meminfo
MemTotal: 1784832 kB
MemFree: 47576 kB
Buffers: 62976 kB
Cached: 1454172 kB
SwapCached: 84 kB
Active: 251024 kB
Inactive: 1347412 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 1784832 kB
LowFree: 47576 kB
SwapTotal: 2097144 kB
SwapFree: 2096988 kB
Dirty: 96 kB
Writeback: 0 kB
AnonPages: 81324 kB
Mapped: 26076 kB
Slab: 62488 kB
PageTables: 8844 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 2989560 kB
Committed_AS: 416152 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 2252 kB
VmallocChunk: 34359735799 kB
Is this normal when Cached: 1454172 kB?
View 3 Replies
View Related
Dec 18, 2013
When running OWASP ZAP web security tool, I get the following flag: Secure page can be cached in browser. Cache control is not set in HTTP header nor HTML header. Sensitive content can be recovered from browser storage.
I was surprised since i had the no cache header in both html code and httpd header.
After investigating the flag, i noticed that the response was a generic 302 found error response from Apach (located in apache/src/modules/http/http_protocol.c).
I have added a patch to code when adding the cache-control & pragma html headers with no-cache - and that had solved the security flag (patch attached).
full response given:
header:
HTTP/1.1 302 Found
Date: Sat, 30 Nov 2013 10:44:40 GMT
Server: Apache
X-Frame-Options: DENY
Location: https://*****
Content-Length: 376
Content-Type: text/html; charset=iso-8859-1
body:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="https://******">here</a>.</p>
<hr>
<address>Apache Server at 10.209.0.81 Port 443</address>
</body></html>
In conclusion:
Issue is "Secure page can be cached in browser." (found by owasp zap) for https page response "302 Found" from Apache.
View 1 Replies
View Related
Mar 23, 2009
As many of you may know mod_cache does not cache directory index
files, this can be fixed with mod_rewrite but the index page of the domain (the homepage) seems to be impossible to cache it. The following rules cache the folders but not the homedir (this means that www.thedomain.com/folder is cached but www.thedomain.com is not):
DirectorySlash Off
RewriteEngine On
RewriteCond %{REQUEST_URI} ([^.*])
RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_URI}/index.htm" -f
RewriteRule "^(.*)$" "$1/index.htm" [NC,L]
RewriteCond %{REQUEST_URI} ^([^.*])$
RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_URI}/index.html" -f
RewriteRule "^(.*)$" "$1/index.html" [NC,L]
RewriteCond %{REQUEST_URI} ^([^.*])$
RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_URI}/index.php" -f
RewriteRule "^(.*)$" "$1/index.php" [NC,L]
Note that DirectorySlash should be off (or mod_dir not loaded) in
order to work also with URL that end with no slash
As I said before this will work for any folder but it does not work for public homedir
directory. So when a user visit [url] it does not
work (unless you type the name of the index file: [url]
For me it is critical to make this work in someway, the index homepage
is the main page that needs to be cached in my case (and in many
others).
Do you know any solution for this? I found the first message about
this in the Internet in 2002 but I'm using last version of apache
httpd and still does not work.
If you have no idea about how to fix it, maybe you know some other easy alternative. Lighttpd + mod_cache + mod_deflate are not compatible: "mod_cache can be used in conjunction with other lighttpd plugins (except mod_deflate and mod_secdownload)"
View 0 Replies
View Related
Jun 25, 2007
I am currently running a web site that does benchmark tests. The thing is the graphs could definitely be more visually appealing than what they are now. I am good at programming with Alias Maya, so I could definitely automated 3D Image generation for the charts.
I would think, just jump right to the dedicated Windows server... but is that really necessary? If the VPS was just used for this one purpose, and nothing else. It would only need say 1GHZ of processing power, and maybe 512MB of RAM. Granted it would be slower, but it would still do what I need it to do.
Is this possible on a Windows VPS? I would think it could be... but you guys might no better.
I really don't want to throw down 200 a month for this just yet, 50-80 a month wouldn't hurt as much though.
View 6 Replies
View Related
Jul 19, 2008
I have a site with heavy use of large and small images. The site gets majority of traffic from US and Asia. Using a CDN for JS, CSS, site images and user uploaded images will help the site a lot to speed up.
One of the cheaper options is Cachefly which I was considering, until I found an article about using Google's App Engine as CDN. http://www.google.com/search?q=google+app+engine+cdn
I think it is very inexpensive way to put your content on a CDN. Has anyone tried App Engine as a CDN? Does anyone know if they serve content from local servers in Asia, Europe or is the content served from US?
View 14 Replies
View Related
May 11, 2009
Me and my friend have purchased Web Hosting and we can get in through FTP Clients like Filezilla or WinSCP but we'd like to integrate it directly into the Windows File System, so that we can search through files.
We basically want to be able to share and collaborate work together
View 11 Replies
View Related
Jun 7, 2009
We have a mail account that has over 12,000 emails in it, when we try to search it will either bring back no results or time out. My question is how can i search for an email in the account or is there anything i can install on my Linux - CENTOS 5.3 i686- cPanel 11.24.4-S36281 - WHM 11.24.2 - X 3.9 server?
I will need to search the subject or body of the emails and need it to return results back to me when it has anything matching what i want it to search for. We have tried using the email clients that cPanel provides but like i said they either bring no results or show an error. What can we use or install to do what we need? I have full shell access if theres a way of doing it through that.
View 5 Replies
View Related
May 3, 2009
I am the site admin of a large phpbb3 forum. currently we have something like 40k photos and 300MB DB with usually 20/30 users online at the same time top. Between 150-250GB/Month traffic. We are always expanding. I have been disappointed by our current host - lots of problems. I am hence looking for a new host. What do you recommend? We would not like to spend more than 200$ per year -
View 12 Replies
View Related
May 22, 2007
Is there a way to lookup all sudomains for a domain?
View 6 Replies
View Related
Oct 22, 2007
I'm sure you hear this often, but I'm on the search for a new hosting company. Earlier this year my products site switched to a db driven website with a forum. When I made the site change I had to change my hosting company I had for 3 years. Under suggestion for the webmaster I switched to midphase. When I did things started out good. Than came the down time. Each time they said I had to may users on the db. I started out at $10 a month. After several plan upgrades I'm at a $80 a month vps. I would be ok with the $80, but more times than not the site is sluggish even when the resources are not 1/3 of their capacities. After reading some of the threads on this site it seems a vps is not that good? The idea behind the vps sounded good to me. But I'm wondering if I should go back to a shared host. On a good day there may be about 30 people on the forum and about 30 people surfing the products.
View 8 Replies
View Related
Mar 14, 2009
Is google app engine good for hosting web applications?
View 3 Replies
View Related
Jul 16, 2009
i have nameservers in my domain (let's say [url]n [url] that registered for my first vps, i want to make 2 more nameservers from my domain for my second vps [url]n[url]so i have 1 domain with 4 nameservers in 2 vps (2 ns in each vps), it would be like this.
[url]= vps1
[url]= vps1
[url]= vps2
[url]= vps2
ns1 n ns2 is working (can connect to the first vps), but ns3 n ns4 isn't work (cannot connect to the second vps), in different way i tried to make ns3 n ns4 for the second vps with different domain and it's work, it would be like this.
[url]= vps1
[url]= vps1
[url]= vps2
[url]= vps2
so, i wanna ask can i use 4 nameservers in 1 domain for 2 vps? i mean use one domain for more that one ip (different engine)
View 5 Replies
View Related
Apr 27, 2008
how I could get rid of the "newest members" "last logged in" and "most popular members" on the home page of my social engine script.. Just curious on how to get rid of them.
View 3 Replies
View Related
Apr 10, 2009
I'm having a problem with a client (X) which doesn't receive emails from one of his clients(Y). After few days of talking with Y hosting company I wasn't able to solve the broblem, but told from them to check if their IP is blocked in my server (which I'm sure it isn't).
My first question is where to check for blacklisted IP which blocks email, and not HTTP request ...
Is there a different place than /etc/apf/deny_hosts.rules .. is there a file in exim configuration ?
I have a linux server with WHM 11.24.2.
----
The error that Y client receives when sending mail to X is:
Server Response: '550 5.0.0 <mail@mail.com>... User unknown', Port:
25, Secure(SSL): No, Server Error: 550, Error Number: 0x800CCC79
I'm very sure that if Y's IP was blocked he shouldn't receive that error.
What I belive is that there are some DNS problems, because X client was hosted on the same company as Y, now few years ago, and I belive that when moving X to my server, the other hosting company didn't deleted all DNS records .. and that's why Y clients get the error user unknown. Is it correct what I'm suppose ?
View 8 Replies
View Related
Apr 15, 2008
I have a hardware firewall on my server that does not allow pinging or trace routes from anyone outside the vpn.
So, pinging my server or a website on it will return a "request time out" for each try even though the websites come up fine and connectivity is fine.
I'm told this is for enhanced security but it's also my understanding that search engines and some programs will ping a site before attempting to crawl it or index a page on it. I guess this saves time and bandwidth for the search engine bot.
Is this true? and is there a security risk for opening my firewall to allow pinging?
View 2 Replies
View Related
Jun 2, 2008
I'm building some servers to get colocated. I am currently using the
ASUS RS100-E4/PI2 1U Barebone Server
[url]
And was having trouble finding some rails. I've tried google and such and haven't found rails built for this machine. I am building budget servers so I would like to find the cheapest rails possible.
View 8 Replies
View Related
Mar 9, 2007
I am running a dedicated server with Debian, and I installed a community sofware that has a lot of mySQL entries, many of which need to be changed to fit my needs
However, it is very hard to know exactly where each value I need to change is stored. Is there a way to search all database tables for a specific value?
For example, one thing that is stored in the database is the site's title displayed in the browser's title bar. The sofware does not give me the option to change it, so I have to find where it is located in the database and change it myself, but it would be extremely time comsuming to check all tables one by one for any occurences of the current title.
View 10 Replies
View Related
Jun 30, 2007
I have Cpanel on my VPS, many of my accounts are over quote but they not have havey site on it and also not using much resources. I think beacuse of last migration some of account have files ownership in other directories of server.
Is there any command in linux which tell me all files list of specific account name. But out of his directory.
View 1 Replies
View Related
Oct 30, 2009
I am getting error28 from storage engine with every application using mysql. The issue started a few weeks ago so i thought emptying /tmp folder would solve the issue but it didn't . Problem seems to disappear when i reboot the server but problem comes back again after a few hours . I even got tmp partition deleted and recreated
I enclosed some info from server below
root@latte [~]# stat /tmp
File: `/tmp'
Size: 81920 Blocks: 162 IO Block: 4096 directory
Device: 700h/1792d Inode: 2 Links: 4
Access: (1777/drwxrwxrwt) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2009-10-28 22:39:38.000000000 +0000
Modify: 2009-10-28 22:39:35.000000000 +0000
Change: 2009-10-28 22:39:35.000000000 +0000
root@latte [~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 143G 42G 94G 31% /
tmpfs 502M 0 502M 0% /dev/shm
/usr/tmpDSK 485M 12M 449M 3% /tmp
root@latte [~]# du -hsx /tmp
1.2M /tmp
root@latte [~]# mysqladmin variables | grep -i "log_error"
| log_error | |
root@latte [~]# find /var/lib/mysql -iname "*.err"
/var/lib/mysql/latte.quicklyweb.net.err
less /var/lib/mysql/latte.quicklyweb.net.err
091028 2:13:57 [ERROR] /usr/sbin/mysqld: Disk is full writing '/tmp/STH2JAx1' (Errcode: 28). Waiting for someone to free space... (Expect u
p to 60 secs delay for server to continue after freeing disk space)
091028 2:13:57 [ERROR] /usr/sbin/mysqld: Retry in 60 secs. Message reprinted in 600 secs
091028 2:23:57 [ERROR] /usr/sbin/mysqld: Retry in 60 secs. Message reprinted in 600 secs ....
View 2 Replies
View Related