you have to change in the core.php where session files are stored. it will stored in /app/tmp/sessions
This is what I had before:
Configure::write('Session.save', 'php');
I changed it to this one:
Configure::write('Session.save', 'cake');
To make Ubuntu mount partitions and drives automatically at startup:
open your terminal & type to identify the partitions:
then edit mount table
and add to it this lines of codes
Hi All
I face a problem that I want to make function to run after complete of ajax run so I can use data that come from it
when I put this code it work:
$.ajax({
beforeSend: function(){
// Handle the beforeSend event
},
complete: function(){
// put here code that will run after complete of ajax
}
// ......
});
for more information
Ajax Events
If you have ever created links with target=”_new” and wondered why all your pages were opening in the same window, it is because “_new” is not actually a generic target. It is a window name, and by using it, you name the first window that comes up “_new”.
Thereafter, every link that specifies target=”_new” looks for and finds that window by name, and opens in it.
If you use target=”_blank,” a brand new window will be created each time, on top of the current window.
How to switch hosts without having any down time.
Switching to a new host can be a complicated process. Follow this steps to ensure that your move is smooth and painless.
If you completed all the above steps, you have successfully switched hosts with no downtime at all!
I have also included some advanced tips below to supplement and expand upon the article linked above. There are multiple techniques for avoiding downtime when transferring websites, and you will want to choose the method most appropriate for you and your site. Some methods are more technical and/or require more attention than others.
If your database does not change much (for example, it only changes when you add new posts or pages to your site), then there is little risk of lost information during the transfer process.
On the other hand, if you have a website where the database in constantly being updated with new information, such as forums or a site with lots of user generated content, you will want to take special care to make sure no information is lost in the transfer. There are a couple ways of doing this.
One way to do it is you can configure your site to connect to your new database, remotely; this way whether your visitors are directed to the new site or the old site, all the new updates will be saved to the new database. Now the new database will have all of your current information and can continue to update.
This technique is the most technical, but would minimize downtime as much as possible for all visitors to your site. You or your web designer would need to make changes to your site during the transfer to make this work.
A simplified set of steps include:
Using this technique, it would not matter which server a visitor sees while the DNS propagates, since both the old server and new server update the same database.
Another method is to modify your website on the old server so that it does not accept updates to the database during the transfer. Like the previous technique, you or your web designer would need to make changes to your site during the transfer to make this work.
This technique is best if you are rapidly progressing through the steps necessary to transfer, and/or don’t mind if a couple people temporarily see the old site while the DNS changes propagate. This is also good for sites where the database does not change that often because of user input.
Depending on how your site is coded, this could mean putting the site into a read-only mode where people can view information but not make any changes, turning on maintenance mode on your blog or CMS, or possibly disabling the database all together and putting up a temporary page telling customers the site will be up shortly.
Ideally you would do this immediately before transferring the latest copy of the database over to the new server, and once that is completed, changing the name servers and DNS to point to the new server.
While the DNS propagates (updates) worldwide, some people will see the site on the new server, and some will see the site on the old server, yet only the new server will accept changes in the database.
A simplified set of steps include:
While the DNS propagates worldwide, some people will see the site on the new server, and some will see the site on the old server.
After the content transfer, you can create an A record in your existing DNS (most likely on your old server) to redirect all visitors to the new server; this is much faster than waiting for the propagation of new name servers.
Also, after the site transfer, you can create a MX record so your emails will all be delivered to the new server and not need to wait as long for propagation.
Once you have the A records and MX records updated to point to the new server, you can change the name servers anytime.
Hi All
if you want to know what ip of a Domain(that it point to it) or a Name Server
this is a good website for that
http://whois.dollardns.net/
I’ve ever been thought that there’s no way to delete individual URLs from the History without just clearing the whole thing. Turns out I was wrong. In Firefox, if you want to delete an individual entry from the History, just highlight it (either in the History sidebar or in the address bar drop-down) and press Shift+Delete. Gone.