Jon Lindholm posted a photo:
Webbplats för Ingmarsspelen. Sidan är gjord 2010 och finns på www.ingmarsspelen.se
Recently I had to move one of our Drupal site from one server to another. I was given the tar file containing the backup including the mysql script files. I strongly recommend you to go through expert blogs and sites for the complete information about this topic. I am writing my own experience
While installing drupal 6.16, you have a deprecated ereg() method. In fact, in PHP 5.3, this method has been renamed into mb_ereg(). To fix this find :
elseif ($depth >= $min_depth && ereg($mask, $file)) {and replace it like this :
elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {That’s it ! You can now access the install.php.
I didn’t realize until this morning that there is a Drupal song. It is infuriatingly catchy, so don’t listen to it and then claim I didn’t warn you.
I found out about the Drupal song from a post by Dries, who can claim much of the responsibility for Drupal, but can deny any direct responsibility for the song. It is an earworm: a song or other music that repeats compulsively within one’s mind.
The sequences Acquia-Buytaert and Drupal-Earworm compelled me to write the following. Social media addiction compelled me to incorporate links.
A is for Acquia, founded by Dries;
Buytaert’s his last name, pronounce it with ease.
C is for CMS (rather weird term);
Drupal‘s a CMS, subject of worm.
Ear’s where the worm lives,
Forget it I cannot.
Got to stop rhyming,
Halt it here, dammit!
The filedepot module is full featured Document Management module that has a google docs like feel. It fulfills the need for an integrated file management module supporting role and user based security. Documents can be saved outside the Drupal public directory to protect documents for safe access and distribution.