newscoop and Airtime on one?
  • Hello guys, Can I install Airtime and Newscoop on the same machine without conflict?



    Apologies if i double posted this I didn't see the first one at time of writing.

    j
  • 7 Comments sorted by
  • Vote Up0Vote Down Andrey PodshivalovAndrey Podshivalov
    Posts: 1,526Member, Administrator, Sourcefabric Team
    for sure. You need just prepare apache virtual host for newscoop
  • thanks Andrey. I guess I have some reading to do. I don't know how to prepare Apache for this. Any tips?

    j
  • Vote Up0Vote Down Andrey PodshivalovAndrey Podshivalov
    Posts: 1,526Member, Administrator, Sourcefabric Team
    1. add into /etc/hosts file the new string
    127.0.0.1 newscoop

    2. download newscoop tarball and extract into /home/[USERNAME]/newscoop
    3. create file /etc/apache2/sites-enabled/newscoop:
    <VirtualHost *:80>
       ServerName newscoop
       DocumentRoot /home/[USERNAME]/newscoop
      <Directory /home/[USERNAME]/newscoop>   
          DirectoryIndex index.php 
          AllowOverride all 
          Order allow,deny 
          Allow from all
      </Directory>
    </VirtualHost>

    4. reload apache server: sudo service apache2 reload
    5. Install mysql server: sudo apt-get install mysql-server
    6. start newscoop installation wizard: http://newscoop
  • Andrey Podshivalov wrote on Thu, 07 April 2011 15:10
    1.
    6. start newscoop installation wizard: http://newscoop


    thank you sir. I'm off to explore can you complete that link for the wizard? I'm going to follow floss manual procedures and see where I end up.

  • Vote Up0Vote Down Andrey PodshivalovAndrey Podshivalov
    Posts: 1,526Member, Administrator, Sourcefabric Team
    http://newscoop - starts installation wizard.
  • Thanks Andrey I realised that after posting :)

    Could you take a look at the attached screen shot and tell me where I'm
    wrong?

    when i go to http://newscoop I can see a newscoop folder but no content.
    At the bottom of the shot you can see my apache config.

    Thanks for your help
    j

    On Thu, Apr 7, 2011 at 4:46 PM, Andrey Podshivalov <
    airtime-support@lists.sourcefabric.org> wrote:

    > http://newscoop - starts installation wizard.
    >

  • Vote Up0Vote Down Andrey PodshivalovAndrey Podshivalov
    Posts: 1,526Member, Administrator, Sourcefabric Team
    you should extract tarball in /home/user folder instead of /home/user/newscoop