Install Drupal with XAMPP in Ubuntu

Overview

Are you ready to build your very own website? It’s not as hard as you may think! A computer with an internet connection is all that’s required. Oh, and not to mention a healthy dose of patience!

This is a straightforward tutorial/guide which walks you through the entire process: installation and set-up, content management and basic configurations. Okay, enough chit-chat, let’s begin!

Obtaining the Tools

The softwares you’re going to be using are all free, open source and available online:

  • Drupal is a web content management system (WCMS). Basically, it’s an application which facilitates the creation of web contents (blogs, forums, polls, etc.), manages/controls the contents, usually by a point-and-click work-flow. Best of all, Drupal requires little or no programming skills.

Drupal 6.12 Downloadhttp://drupal.org/project/drupal

  • XAMPP (cross-platform, Apache, MySQL, PHP, Perl) is a web server application packaged with Apache HTML web server, MySQL (database management), PHP (a scripting language) and Perl (a programming language.)

XAMPP for Linux Downloadhttp://www.apachefriends.org/en/xampp-linux.html

Pre-Installation

By now, you should have already downloaded the following files:

  1. xampp-linux-1.7.1.tar.gz
  2. drupal-6.12.tar.gz

Note: Unless you know what you’re doing, it’s recommended that you’re using the same files to avoid any confusion. If, for example, when newer versions are released, simply type in the correct file name when installing in the “Install XAMPP” and “Install Drupal” sections.

Now, this tutorial is done on a Linux system (Ubuntu), not Windows. Remember earlier when I told you the tools I’d use are all free? Well, Ubuntu is an excellent alternative operating system to Windows! Give it a try, you may like it!

Install XAMPP

We install XAMPP by extracting its content to a folder named “opt”:

  1. Locate the file xampp-linux-1.7.1.tar.gz you’ve just downloaded.
  2. If it’s not on your Desktop, move the file there.
  3. Open the Terminal, enter the following command:

sudo tar xvfz Desktop/xampp-linux-1.7.1.tar.gz -C /opt

Start XAMPP

You installed XAMPP in the previous section, now it’s time to start it:

  1. Open the Terminal, enter the following command:

sudo /opt/lampp/lampp start

You should see the following lines in the terminal if everything is done correctly:

XAMPP: Starting Apache with SSL (and PHP5)…
XAMPP: Starting MySQL…
XAMPP: Starting ProFTPD…
XAMPP for Linux started.

Test XAMPP

Okay, so how do you know if XAMPP is currently active?

  1. Open your favourite web broswer.
  2. Enter the following address:

http://localhost

This page should pop up:

XAMPP

Click the Status link to see what’s running:

XAMPP - Status

Install Drupal

Let’s install Drupal by extracting its content to “opt/lampp/htdocs”:

  1. Locate the file drupal-6.12.tar.gz.
  2. If it’s not on your Desktop, move the file there.
  3. Open the Terminal, enter the following command:

sudo tar xvfz Desktop/drupal-6.12.tar.gz -C /opt/lampp/htdocs

  1. Let’s rename “drupal-6.12” folder to a cleaner name, “drupal”.
  2. Enter the following command:

sudo mv /opt/lampp/htdocs/drupal-6.12 /opt/lampp/htdocs/drupal

Test Drupal

Okay, we can now verify whether Drupal has installed correctly:

  1. Open your web broswer.
  2. Enter the following address:

http://localhost/drupal

You should see this page:

Drupal Setup

Create a Database

In this section, we create a new database for Drupal to store data:

  1. Open your web browser.
  2. Enter the following address:

http://localhost/phpmyadmin/

  1. In the Create new database text box, type in a name for your database (I named mine “creativebushido”.)
  2. Click the Create button.

Configure Drupal

Having completed the installation of XAMPP, Drupal, and a brand spanking new database, we can finally go ahead and configure Drupal:

  1. Open your web browser.
  2. Enter the following address:

http://localhost/drupal

  1. Click the Install Drupal in English link.
  2. You will be likely to ecounter the following page:

Drupal - Requirement problems

Don’t fret! First, we make a copy of default.settings.php and rename it to settings.php.

  1. Open the Terminal, enter the following command:

sudo cp /opt/lampp/htdocs/drupal/sites/default/default.settings.php /opt/lampp/htdocs/drupal/sites/default/settings.php

Next, we need to grant permissions to the settings.php file so that it’s writeable:

  1. Enter the following command (press Enter after each line):

cd /opt/lampp/htdocs/drupal/sites

sudo chmod a+w default

sudo chmod a+w default/settings.php

Finally, we need to increase our PHP memory limit from 8M to 16M.

  1. Open the Terminal and type:

sudo nano /opt/lampp/etc/php.ini

Look for the memory_limit parameter and change the number 8 to 16.
Once you’ve changed it, exit the text editor by holding down Ctrl and press x. Type y to save the file.

Because you’ve just made changes to the PHP file, you need to restart XAMPP to update it:

  1. Open the Terminal, enter the following command:

sudo /opt/lampp/lampp stop

  1. To start XAMPP again, enter the following command:

sudo /opt/lampp/lampp start

That should have solved all the problems! Okay, now you should be able to see the Database configuration page in your browser:

Drupal - Database configuration

Notice that I have entered a name for my database, the same name I’d used earlier. Make sure you do the same.

Once you clicked the Save and continue button on the Set up database page, you will be directed to the Configure site page, like the picture below:

Drupal - Configure site

For security purposes, it tells you to remove write permissions to the settings.php file. Let’s do that:

  1. Open the Terminal, enter the following command:

sudo chmod a-w /opt/lampp/htdocs/drupal/sites/default/settings.php

Finally! You are now ready to enter some important informations for your new web site.

Fill out the the required information for the Site information and Administration account sections. Make sure you remember the username and password you’ve entered!

Drupal - Configure site

Once all the informations are filled out, click the Save and continue button.

Voila! Give yourself a pat on the back! You have just completed installing Drupal on your computer!

Drupal - Drupal installation complete

For now, you can begin building your site. Everything you’re doing right now is offline. Once you have everything to your liking, you can deploy the final product live online.

I hope this has been useful. If you have any technical issues, I strongly recommend that you make use of Drupal’s excellent Community web site!

108 Comments

  1. Liam says:

    Thanks, I am new to Linux and Drupal but don’t want to fall back on Windows as the default database server. Your instructions were quite complete to get started.

    1. CreativeBushido says:

      I’m glad that it helps!

  2. rebelvarun says:

    simply awesome … a step by step procedure to install Drupal.I got the entire thing up and running under 45mins :D.Thanks creative bushido

    1. CreativeBushido says:

      You’re very welcome! 😛

      1. saad says:

        please help me

        when i install xampp i dont get the page in the browser u have shown…when i enter http://localhost/ i only get to see “IT WORKS” but no page is displayed….

        can u plz tell why?

  3. saad says:

    hey man thanks for ur post….

    i m having one prob, when i install drupal and enter the address “http://localhost/drupal” it say “not found”…can u plz tell what can be the reason?

    and also when i install XAMPP, the page u showed is not displayed but only “it works” is shown on the page?

    waiting….thanx 🙂

  4. Vili says:

    Hi!

    I was following the instructions very carefully, but when I had to test XAMPP there was all the time page load error saying that connection was refused.
    I don’t know what’s the problem!
    Can someone help me, please?

  5. CreativeBushido says:

    Can you take a snap shot of the screen?

  6. Vili says:

    Hi!
    This is the text from the Page Load Error:
    Failed to Connect
    The connection was refused when attempting to contact localhost.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer’s network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.

    I

  7. Yonitg says:

    Hey,
    thanks fir the very detailed explanation about drupal on xampp
    got it all running in 10 minutes.
    im testing open atrium on drupal, i heared good things about it.
    thanks – Yonit

  8. hi
    thanks for your step by step procedure for drupal

  9. Murali says:

    Hi,
    I xampp-linux-1.7.2.tar.gz and installed successfully.
    Then downloaded drupal 6.6

    while installing drupal by running the install.php
    I am getting error like

    Deprecated:Function ereg() …

    can you please advise how to resolve it ….

    thanks
    Murali.

    1. CreativeBushido says:

      Murali,

      You’re supposed to run the command in the terminal, not by clicking the install.php file.

      1. Jeff says:

        I am getting the same error as well. when I go to http://localhost/drupal I get

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

        Warning: Cannot modify header information – headers already sent by (output started at /opt/lampp/htdocs/drupal-6.13/includes/file.inc:895) in /opt/lampp/htdocs/drupal-6.13/includes/install.inc on line 618

        Warning: Cannot modify header information – headers already sent by (output started at /opt/lampp/htdocs/drupal-6.13/includes/file.inc:895) in /opt/lampp/htdocs/drupal-6.13/includes/install.inc on line 619

  10. Dan says:

    I have the same error: Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal-6.13/includes/file.inc on line 895

    when loading http://localhost/drupal

    XAMPP is ok. Any ideas?

    1. iura says:

      Hi, I know this problem, all is because new xampp use php 5.3.0 to avoid errors about eregi() you should install xampp 1.7.1 and all works fine without errors

    2. Vikas Arora says:

      Very simple solution, just add ‘@’ in front of word ‘ereg’ at line 895 in file.inc

  11. Dan says:

    Seems there is an issue with drupal 6.13 and xampp 1.7.2. If you use drupal 6.12 and xampp 1.7.1 everything works perfect. More specifically, it appears to be an issue with php5 and drupal involving .htaccess and php.ini. Beyond the scope of this forum. Thanks Bushido for the excellent how to.

  12. Justina says:

    Yes… Drupal does not support PHP 5.3 … here more info http://drupal.org/node/527548

  13. Justina says:

    Do you know how can I change the version of my PHP from 5.3 to 5.2 ? I am using Ubuntu 9.04 and installing drupal-6.14
    Help would be much aprecciated…

    1. Erik says:

      I had the same problem. I did a quick tweak to the line of code that was deprecated. I replace the ereg function call with…

      preg_match(‘/’.$mask.’/’, $file)

      which seems to have worked as a quick fix. It isn’t the best solution but works for a home development environment.

  14. Colin says:

    Thanks a lot Vincent, it works perfectly!!!

  15. kamal says:

    Owsome man…….. after having a solid search of 2 days i am now able to install xampp on my ubuntu. i am having one q can anybody tell me that at where i have to put my php site to run them at local host plzzzzzzzz.

  16. Justina says:

    If you put it in /opt/lampp/htdocs/yoursite you will then be able to see it from your browser as localhost/yoursite

    is that what you where asking?

  17. мышкин says:

    Только вот вчера на эту тему думал, так что пост как нельзя в тему!

  18. edi says:

    thanks everyone, this worked for me preg_match(“/$mask/”, $file) not single quotes

  19. edi says:

    How do i run it as a service?, for now i just sudo start everytime i boot.

  20. Mark says:

    You have totally saved my life with this.
    A heap of thanks to you kind sir!!

    Regards,

    Mark

  21. Shobana T says:

    very nice….i did all the configuration as you mentioned above..now i am creating my own website.

  22. бaкинeц says:

    А вот интересно, сам автор читает комментарии к этой статье. Или мы тут сами для себя пишем? 🙂

  23. На самом деле, как говорится – Без пользы жить – безвременная смерть.

  24. vinz says:

    by me this was very good:

    preg_match(“/$mask/”, $file)

    on drupal 6.15 with ubuntu karmic

    cheers

    vinz

  25. vinz says:

    …but not by copying this above… i needed to write it myself
    cheers

  26. amit says:

    simply awesome !!!!!!!!!!!!!!!!!!!!!

  27. K says:

    I tried editing the /opt/lampp/htdocs/… file according to the helpful hint in the attached thread, and now I get:
    Notice: Use of undefined constant ” – assumed ‘”’ in /opt/lampp/htdocs/drupal/includes/file.inc on line 902

    Warning: Division by zero in /opt/lampp/htdocs/drupal/includes/file.inc on line 902

    Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal/includes/file.inc on line 902

    Warning: ereg() [function.ereg]: REG_EMPTY in /opt/lampp/htdocs/drupal/includes/file.inc on line 902

    What am I doing wrong?

  28. sachi says:

    hi there,

    i’m installing xamp, after entering http://localhost/ it showing the test page but not the xamp page.

    any idea about this ?

    plz help

  29. sachi says:

    after this command
    /opt/lampp/lampp start

    the result is like this

    /opt/lampp/lampp start
    XAMPP: SELinux is activated. Making XAMPP fit SELinux…
    Starting XAMPP for Linux 1.7.3a…
    XAMPP: Another web server daemon is already running.
    XAMPP: Another MySQL daemon is already running.
    XAMPP: Starting ProFTPD…
    XAMPP for Linux started.

    1. Kelvin says:

      I think you have installed XAMPP from Ubuntu’s repository before. You will have to remove all three installtions of Mysql, Apache and PHP 5.1 with the commandline below:

      sudo apt-get install apache2 phpmyadmin mysql-server

      After that, follow this guide and reinstall XAMPP 1.7.1 will be just fine.

      Hope this helps 🙂

  30. Kelvin says:

    Was gonna made the move from WordPress to Drupal, hoping to test on it’s basic and as well SEO features. Thanks a lot for this well planned step by step guide, saved me hours crawling through the net 🙂

  31. Adam says:

    Thanks so much for this quick and easy tutorial.
    I’ve been trying for days to get Drupal installed on my localhost Linux.

    On the XAMPP side of things -there is some kind of bug (it’s in the Xampp bugbase just this month) regarding setting the security features. I usually harden the security of my XAMPP installs. But (as per the bug) once the MySQL root user gets a unique password, it tends to “DEACTIVATE” the MySQL server. This could be why most (if not all) of my previous attempts to install Drupal failed miserably.

    Your tutorial skips over the process of securing XAMPP. I’d like to (ideally) have a more secure setup and not leave my Web/MySQL server “wide open” so-to-speak.

    Is there any reason why securing XAMPP causes the MySQL database (when viewing the “Status” page) to Deactivate. I think when it is deactivated it prevents Drupal from installing.

    Thanks anyway, because now (from using your tutorial) I can use drupal offline and hopefully learn about its features and development capabilities.

    Adam

  32. nagachandrika says:

    hey an amazing post! it is our saviour.. hey do u know how to integrate two cms tools? as in moodle and drupal for exmaple? moodle is a course managemnt tool..

  33. Roberto says:

    Thanks for the instructions. It works perfectly.
    Could you post the same for Vista?

    Cheers,

    Roberto

  34. Савва says:

    Любопытная статья, кстати автору хочу предложить установить от яндекс.денег фишку на сайт “Дай рубль”. Я бы дал, так сказать на поддержание. 😉

  35. hi!… useful post…. I publish at this place because you perhaps be able to help me. I know, it’s not the exactly exactly place to post but ……. I try to find a completely free hosting company that is ok to accept CGI. Do you know a reputable link or better a first-class free hosters database or something like that… etc. for what I search ?? ps:: Do you know free without ads hosting ?? With wich tool have you built your website ? Bye

  36. Devin says:

    Fantastic, I’ve read about 20 guides tonight, but this was by far the best. Nice and simple, thanks alot!

  37. Peter Thomson says:

    I keep getting this error message when I start http://localhost/drupal, could you please tell me what I should do to resolve this issue
    Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal/includes/file.inc on line 926

    1. Stan says:

      “I keep getting this error message when I start http://localhost/drupal, could you please tell me what I should do to resolve this issue
      Deprecated: Function ereg() is deprecated in /opt/lampp/htdocs/drupal/includes/file.inc on line 926″

      Yeah me too!

  38. extrarumeno says:

    Solution :

    replaced in drupal/includes/file.inc on line 926

    “elseif ($depth >= $min_depth && ereg($mask, $file))” with “elseif ($depth >= $min_depth && @ereg($mask, $file))”

  39. Thanks. This helped a lot.

  40. daninhu says:

    Hi
    I have done the installation XAMPP by typing sudo tar xvfz Desktop/xampp-linux-1.7.1.tar.gz -C /opt

    and start XAMPP use command sudo /opt/lampp start, it show me e few line look like this
    XAMPP: Starting Apache with SSL (and PHP5)…
    XAMPP: Starting MySQL…
    XAMPP: Starting ProFTPD…
    XAMPP for Linux started.

    but when I want to browse in the web it says IT WORKS! the web server software is running bt no content has been added, yet.
    could some one help me on this issue?
    thank’s

  41. Elentir says:

    Works, excellent guide. Many thanks.

  42. vsint shendy says:

    Looks like this application better than others

  43. rasta says:

    Hi, to the point I have install drupal drupal-7.2 and xampp-linux-1.7.4 on ubuntu 10.10, everything I have done but stuck in some step, I have copy the site use this command : sudo cp /opt/lampp/htdocs/drupal/sites/default/default.settings.php /opt/lampp/htdocs/drupal/sites/default/settings.php

    and PHP memory limit 128M, after restart XAMPP and browse to the http://localhost/drupal/install.php?profile=standard&locale=en
    I got error, this is the message :Error
    Settings file The settings file does not exist.
    The Drupal installer requires that you create a settings file as part of the installation process. Copy the ./sites/default/default.settings.php file to ./sites/default/settings.php. More details about installing Drupal are available in INSTALL.txt.
    could anyone help me?
    thanks

  44. mabenten says:

    wow.. that’s good, i like this articel

  45. mow says:

    thanks. great work.ı m purchade for this

  46. Ravi says:

    Hi,
    This is nice tutorial. according to this I have installed drupal + xampp on Redhat linux 6. now I can acces http://localhost/drupal successfully.

    But i want to access drupal via the secure connection (https).
    Any idea ?

  47. Cassiano says:

    Great man. I’m a newbie in drupal, but user of ubuntu and xampp. This article is great. Simple and easy.

    Thanks!

  48. santy says:

    Thanks a TON and this worked for me…

  49. Israel says:

    thanks a lot …most helpful

  50. Howdy, i read your blog occasionally and i own
    a similar one and i was just wondering if you get a lot of spam remarks?
    If so how do you stop it, any plugin or anything you can suggest?
    I get so much lately it’s driving me insane so any support is very much appreciated.

  51. This particular blog, “Install Drupal with XAMPP in Ubuntu CreativeBushido” ended up being excellent.
    I’m producing out a copy to demonstrate
    to my personal colleagues. Thank you-Matthias

    1. Здравствуйте, сможет кто нибудь помочь девушке?, интересный сайт с рецептами вкусненького, мне интересны,строго, сайты, с постоянно обновляющимся каталогом блюд, и так чтобы продукты были обычные, нормальные т.е.
      Жду ответов!

    2. Richardcak says:

      Присоединяйтесь и зарабатывайте прямо сейчас!

      Рекомендую Вам сайт по заработку на CAP (Заработок на Системе Активной Рекламы).
      Мы собрали для Вас самые лучшие русские сайты для заработка без вложений, регистрируйся и зарабатывай достойно!

      Перйты на сайт вы можете по адресу: Заработок в САР
      Больше сайтов – БОЛЬШЕ ВАШ заработок!

    3. Charlesnum says:

      Привіт всім!
      Недавно при серфинге всемирной паутины наткнулся на сайт покерной тематики, который якобы дает взнос мне для игры, но перед этим нужно удачно пройти тест из 30 вопросов.
      Ах, да, запамятовал, они типа дают от 100 до 200 евро, в зависимости от кол-ва правильных ответов.
      Вопрос в следующем. Думаете кидают? Если проходили тест, может поделитесь ответами на вопросы в ЛС? А то что-то лениво проходить, когда не уверен, что получу денег на счёт.
      Забыл про сам сайт вот он – Бонус 200 евро для игры в покер!
      Да, и еще, вроде чуваки занимаются покерным коучингом, как я понял. Короче, кто-нибудь с ними имел дело? Отпишите в ЛС ну или на мыло, указанное в профиле.
      Заранее, благодарен!
      Если не в тему написал удалите, сообщение!

    4. EnriqueOn says:

      Не совсем в тему, хочется поделиться своей радостью, но не нашла у нас здесь подходящего топика. Пару дней назад я нашла обалденный сайт http://umambo.org/?s=514
      для поиска подходящего партнера для приватных отношений, и не исключено, для чего-то больше. Другими словами, это просто самая большая бесплатная социальная сеть для приватных встреч для дружбы и общения из всех больших и маленьких городов Украины, России, Белоруссии и Казахстана.
      Огромный выбор анкет с разных городов. Уже пользовалась пару раз, не заплатила ни рубля, вроде бы, все без надувательства.
      Спешу поделиться с вами лучшими сайтами и надеюсь хоть кому-нибудь оказать услугу.

  52. CreativeBushido says:

    You’re very welcomed Matthias!! – CreativeBushido

  53. Debora says:

    L’Oreal For Men, Macho Maybelline, Elizabeths Boxers. The characters amongst people have been sentient, and after 30 years for being the bad guy, Ralph decides to create a break for this through the game’s power cord
    which gives him usage of other games inside the arcade.
    7.

  54. I recommend Utorrent for Windows and Azureus for all those other platforms.
    That feeling gets to be a choice when you understand how your feelings operate.

    Basically, it’s like filling your children’s pool with water.

  55. general says:

    hello!,I like your writing very so much! share we keep in
    touch extra approximately your post on AOL? I require a specialist
    on this space to unravel my problem. Maybe that’s you! Having a look ahead to peer you.

  56. Kit says:

    Right away I am ready to do my breakfast, when having my breakfast coming over again to read more news.

  57. You will wind up on the right path completely to extra residence.

    Nonetheless they are really forms of riotous common well presently weight practically nothing at all.
    Designer apparel is after all low in cost and easily right type of for the prominent and rich arena.
    Well, he does, and some marvelous ones at that. http://kasuga-asobo.
    net/userinfo.php?uid=44

  58. グッチ says:

    Just since the name implies, these ugg boot are from Australia, which can be crafted from twin-tier
    merino wool. ì (IE: sand, chestnut, chocolate,
    black) UGG boots. Regardless of the items your first choice is, UGG Classic Short
    you will find in the UGG boot.

  59. OobNoob says:

    I followed your tutorial with no problems however, can you explain how to install on a usb flashdrive?

    Thank you!

  60. The most favorite points of interest pertaining to travelers include the
    Huge Skies Buffalo Farm, that is home to this seemingly
    magical albino zoysia grass bull, along with the Traditional Schoolhouse.
    Along with the incredible game playing selection made available from Prairie Knights in battle slots Capital
    online casino, there are many good restaurants to eat and drink at
    and yes it you want a very good spot for the swift vacation, seem zero even more then a Prairie
    Knights Remain.

  61. kat proxy says:

    Hmm is anyone else experiencing problems with the images on this blog loading?
    I’m trying to determine if its a problem on my end or if it’s the blog.

    Any suggestions would be greatly appreciated.

  62. judi bola says:

    It’s actually a nice and useful piece of info. I’m glad that you just shared this helpful info with us. Please stay us informed like this. Thank you for sharing.

  63. Brartelia says:

    Лучшие статусы которы могут показать ваше настроение.

  64. If you are going for most excellent contents like myself, simply go to see this website everyday as it presents
    quality contents, thanks

  65. webstudy.com says:

    s a down side to the interest in digital content, and that.
    I am not only a PC player, please anyone help me to remove
    Dell Inspiron password…” We usually hear such inquiry around us.
    There are some significant improvements made over Vista, and also for the most part, it’s just a version of Vista that’s both stable and much more user-friendly.

  66. Fantastic goods from you, man. I have take into account your stuff prior to and you’re just extremely wonderful. I really like what you have got right here, certainly like what you’re
    saying and the best way by which you assert it. You make it entertaining and you
    continue to take care of to keep it wise. I can’t wait to read much more from you. That is really a wonderful site.

  67. pulau tidung says:

    A fascinating discussion is worth comment. I do believe that
    you need to publish more on this issue, it may not be a taboo matter
    but usually folks don’t speak about these topics. To the next! Best wishes!!

  68. anmyas says:

    Предлагаем Вашему вниманию Садовые барбекю Moss. Высокое качество, доставка.

  69. Right now it seems like Drupal is the top blogging platform out there right now.
    (from what I’ve read) Is that what you are using on your blog?

  70. Attracive component off content. I just stumbled uplon your
    blog aand in accession capital to say that I get in fact loved account
    your weblog posts. Anyway I’ll be subscrribing on your augment or even I
    achievement you access persistently quickly.

  71. It’s remarkable designed for me to have a site, which is useful designed for
    my knowledge. thanks admin

  72. My programmer is trying to persuade me to move to .net
    from PHP. I have always disliked the idea because of the costs.
    But he’s tryiong none the less. I’ve been using Movable-type on a number of websites for about a year and
    am nervous about switching to another platform. I have
    heard great things about blogengine.net. Is there a way I can import all my wordpress content into it?
    Any kind of help would be really appreciated!

  73. I tend not to create a ton of responses, but I looked at a few of the remarks on this page Install Drupal with XAMPP in Ubuntu | CreativeBushido.

    I do have some questions for you if it’s okay.

    Is it simply me or does it seem like a few of these responses look like they
    are written by brain dead visitors? 😛
    And, if you are writing at additional social sites, I would like to keep up with you.
    Would you post a list of every one of your social community sites like your linkedin profile, Facebook page or twitter feed?

  74. Emanuel says:

    Great job. Works on Ubuntu 14.04. Thank you.

  75. Giovanni says:

    Thank you very much!

  76. Tools says:

    hi!,I really like your writing so much! proportion we keep up a correspondence more about your
    article on AOL? I require an expert in this area to unravel my problem.

    May be that’s you! Having a look ahead to peer you.

  77. ruchi says:

    Hi,
    I am trying to install a module in drupal 7.31 using ubuntu14.04 but getting following error:
    Warning: ftp_login(): Login incorrect. in FileTransferFTPExtension->connect() (line 59 of /opt/lampp/htdocs/drupal/includes/filetransfer/ftp.inc).
    Failed to connect to the server. The server reports the following message:

    Cannot log in to FTP server. Check username and password

    i have also tried
    sudo chown www-data:www-data -R /opt/lampp/htdocs/drupal/sites
    as my drupal is within /opt/lampp/htdocs/ but still getting same errors.

    Please help

  78. twiff says:

    Reblogged this on POLITICS and commented:
    this was awesome

  79. revathi says:

    nice explanation.thank u so much.

  80. healthy site says:

    Thank you for every other excellent article. Where else may anybody get that type of info in such
    an ideal way of writing? I have a presentation subsequent week, and I’m on the search for such info.

  81. Pingback: schnoodle car
  82. Jordan Orton says:

    Great post. Really interesting stuff. Cheers, have a great day

  83. Hi great website! Does running a blog like this require a great deal of work?
    I have virtually no knowledge of programming
    however I was hoping to start my own blog in the near future.
    Anyways, if you have any ideas or tips for new blog owners please share.
    I know this is off subject nevertheless I simply needed to
    ask. Appreciate it!

  84. You are so interesting! I don’t believe I have read
    anything like that before. So great to find somebody with genuine thoughts on this issue.
    Really.. thank you for starting this up. This site
    is one thing that is required on the internet, someone with
    some originality!

  85. SimonSSGon says:

    места в москве для фотосессии фотосессия беременных на природе . осенняя фотосессия в студии семейная фотосессия зимой фотосессия военная тематика образы для беременных фотограф на крещение ребенка москва фотосессия годик . фотограф новорожденных москва одежда для новогодней семейной фотосессии лучшие фотографы беременных москва фотосессия для беременных в Москве фото. фотосессия в москве цена фотосессия беременных с мужем на природе профессиональные фото беременных фотосессия ребенка 1 год .

  86. MartinLGon says:

    места для фотосессий в ростове беременная фотосессия в студии фотосессия девушки в студии фотосессия для беременных в парке в Москве. идеи для фото беременных дома новогодняя фотосессия с малышом интересные идеи для фотосессии беременных как проходит крещение младенца . осенняя фотосессия беременных фотосессия семейная в студии . идеи для беременной фотосессии в студии семейные фотосессии в студии идеи как одеться на новогоднюю фотосессию аксессуары для фотосессии своими руками места для фотосессий в ростове позы для беременной фотосессии

  87. Edwina says:

    I blog quite often and I seriously appreciate your content.
    The article has truly peaked my interest. I’m going to book mark your website and keep
    checking for new information about once per week. I subscribed to your Feed as
    well.

  88. Excellent blog you have got here.. It’s hard to find excellent writing like yours nowadays.
    I truly appreciate individuals like you! Take care!!

  89. KevinAnord says:

    how much does a 90 day supply of synthroid cost cheap cialis toronto where can you buy viagra in uk amoxicillin prescription price xenical usa price ventolin expectorant syrup price viagra 25 mg online cost of zantac liquid can you buy viagra in a supermarket 30 mg oxycodone brands Among other findings, many women in the study reported:Making discussions of race off limits. And He is now saying it present tense. Other Support SystemsDownload PDF (64. Smith History of Mt. Revelation 8:12The fourth angel sounded his trumpet, and a third of the sun was struck, a third of the moon, and a third of the stars, so that a third of them turned dark. In contrast with Romanticism, which was essentially optimistic about mankind, Realism offered a stark vision of poverty and despair. The story is amazing for the veracity of the situations, the hilarious dialogues and the emotions it transmits.

  90. Avi says:

    Hi I am installing Drupal 8 in linux. I am getting the error in requirement section Opcache warning (PHP Opcode caching not enabled). Please suggest me how can i resolve the error.
    Thanks.

  91. softorwar says:

    В реальности перевод на операционную платформу Windows 10 на ноутбуке вполне может быть продиктован несколькими предпосылками. А это http://win10soft.ru/40-excel.html%5Dскачать microsoft excel 2010 бесплатно на русском видал?
    скажем, для примера, такого рода перевод на Windows 10 получается в том разе, если был куплен новенький ноутбук (нетбук) или PC.

  92. StevenApels says:

    Найти абонента телефона онлайн на карте – Узнать местоположение человека по мобильному телефону, Андройд трекер отслеживание передвижений

Leave a reply to Brartelia Cancel reply