[Arches] Re: Using different versions of Linux and Python

2017-02-20 Thread 'Lucy FJ' via Arches Project
Hi Adam,
I followed your instructions and we *are* using Python version 2.7.6 .I do 
not totally understand about having Python 2.7.6 in the virtual 
environment. I assume that that is ENV? I an uploading snips of the entire 
library structure we have on our server. Our app is called 'EAD', these 
libraries are not in ENV. Is this correct? is ths structure correct? We are 
still having problems with compiling python by simply starting Arches - we 
need to use the runserver command and the JPEG decoder did not get 
installed. That is an old issue I asked you about before and you gave me a 
helpful answer but we haven't been able to try it out yet. 
Thank you very much for your help, as ever. Lucy


 











On Monday, February 20, 2017 at 8:01:52 PM UTC+2, Adam Cox wrote:
>
> Lucy, if you are having issues, the first step you should take is to make 
> sure you are using python 2.7.6. The trick is that you must have virtualenv 
> installed in the appropriate version of python before using it to make the 
> virtual environment for your app. You can test this by activating your 
> virtual environment and then typing python which will open the python 
> interpreter, and in the header you will see what version your virtual 
> environment is based on. This should be 2.7.6.
>
> Adam
>
> On Sunday, February 12, 2017 at 7:02:04 AM UTC-6, Lucy FJ wrote:
>>
>>
>> Hi all,
>>
>> Having done some Arches customization we have hit some strange technical 
>> problems so we decided to check everything from the installation of 
>> dependencies onwards. It appears that we are using Oracle Linux 6.7 for our 
>> Arches app. Has anyone had any problems with this? 
>>
>> It also seems that we are using Python v 2.6.6 not 2.7.6 which was 
>> suggested for Arches. We know later versions can cause problems but can 
>> earlier ones? If we need the later version of Python can we simply download 
>> it and install without redoing the whole Arches installation again? 
>>
>> Thank you very much for your help!
>>
>> Lucy
>>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Arches] STEPS: Arches 3 server migration from AWS to Azure

2017-02-20 Thread Joel Aldor
Hi Alexei,

I've only had two months of working with Azure, but apart from the
interface I don't see much difference with AWS as far as administering
servers are concerned, and I don't think I'll encounter problems with
Arches running on Azure. The reason we made the migration is because we got
an Azure sponsorship through a software grant, so that will definitely save
us money. :)

Regards,

Joel

On Tue, Feb 21, 2017 at 3:08 PM, Alexei Peters  wrote:

> Thanks for sharing Joel (and for all the hard work)!  I'm sure this will
> be helpful to many users.  How do you find AWS vs. Azure?
> Cheers,
> Alexei
>
>
> Director of Web Development - Farallon Geographics, Inc. - 971.227.3173
>
> On Mon, Feb 20, 2017 at 11:00 PM, Joel Aldor  wrote:
>
>> Hi guys!
>>
>> I'm sharing to you the steps in migrating your Arches server from AWS to
>> Microsoft Azure. I must admit the whole migration was pretty hard, since
>> AWS doesn't allow you to export your Linux EC2 instances to another cloud
>> provider. But after weeks of trial and error, I'm finally able to migrate
>> it completely. :)
>>
>> These steps will work, assuming your Arches is installed on an Ubuntu
>> server running on an EC2 instance, and you're using S3 for your image and
>> file storage.
>>
>> 1.) Launch an Ubuntu 14.04 LTS virtual machine on your Azure portal. Make
>> sure your virtual machine has the same security group settings that you
>> have on your AWS EC2 instance.
>>
>> 2.) Log in to your Ubuntu server, then create your root password
>> sudo passwd root
>>
>> To allow remote login using root, you also need to edit the file
>> /etc/ssh/sshd_config, and comment out the following line:
>> PermitRootLogin without-password
>>
>> Just below it, add the following line:
>> PermitRootLogin yes
>>
>> Save the file, then restart SSH:
>> service ssh restart
>>
>> 3.) Create an Azure storage account, then launch an Azure storage
>> container. Once you created the container, get the Azure container name and
>> access key, which you will use on step #5.
>>
>> 4.) Get your AWS Access Key ID and Secret Access Key from your AWS
>> Console's IAM, which you will use on step #5.
>>
>> 5.) Migrate your AWS S3 bucket to the new Azure storage container using
>> Flexify.io. Create a free account on Flexify, then launch a migration
>> task. I was able to migrate all my files totalling 6.5GB in just about 20
>> minutes.
>>
>> 6.) Start the server migration process from AWS EC2 to Azure using a
>> custom rsync shell script. Follow the pretty straightforward steps from
>> this link here: https://cloudnull.io/2012/07/cloud-server-migration (Go
>> to the section that says *Migrate using RSYNC The Easy Way *and follow
>> the steps there). After the migration, the new server will automatically
>> reboot itself.
>>
>> *Note: the rsync shell script uses Rackspace directory defaults, but it
>> worked pretty fine on me, so just hit ENTER to continue when you're
>> prompted to apply the default*
>>
>> 7.) Login to the new server, then restart Elasticsearch and Apache. By
>> this point, your new server is now hosting Arches, and you can already open
>> Arches on your browser. However it's still pointing to the old S3 bucket.
>>
>> 8.) Install the django-storages-redux by following the steps from here:
>> https://github.com/schumannd/django-storages. This is a forked
>> django-storages package, because the original django-storages has seen no
>> commit applied since March 2014, and there were errors on the AzureStorage
>> library.
>>
>> 9.) Comment out the AWS variables on settings.py and instead add these
>> variables:
>>
>> DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
>> AZURE_ACCOUNT_NAME = ''
>> AZURE_ACCOUNT_KEY = ''
>> AZURE_CONTAINER = ''
>> MEDIA_URL = '> https://your_azure_account_name.blob.core.windows.net/your_
>> azure_container>'
>>
>> 10.) Save your settings.py file, then restart your Apache server.
>>
>> *And you're done! *You can now point your domain to the new Azure
>> virtual machine and start decommissioning your AWS resources.
>>
>> If there's any problem you're encountering, please let me know here and
>> I'd be happy to help!
>>
>> Special thanks to Adam Cox for helping me out on some parts of this
>> migration process!
>>
>> Regards,
>>
>> Joel
>>
>> --
>> -- To post, send email to archesproject@googlegroups.com. To
>> unsubscribe, send email to archesproject+unsubscr...@googlegroups.com.
>> For more information, visit https://groups.google.com/d/fo
>> rum/archesproject?hl=en
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Arches Project" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to archesproject+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more informa

Re: [Arches] STEPS: Arches 3 server migration from AWS to Azure

2017-02-20 Thread Alexei Peters
Thanks for sharing Joel (and for all the hard work)!  I'm sure this will be
helpful to many users.  How do you find AWS vs. Azure?
Cheers,
Alexei


Director of Web Development - Farallon Geographics, Inc. - 971.227.3173

On Mon, Feb 20, 2017 at 11:00 PM, Joel Aldor  wrote:

> Hi guys!
>
> I'm sharing to you the steps in migrating your Arches server from AWS to
> Microsoft Azure. I must admit the whole migration was pretty hard, since
> AWS doesn't allow you to export your Linux EC2 instances to another cloud
> provider. But after weeks of trial and error, I'm finally able to migrate
> it completely. :)
>
> These steps will work, assuming your Arches is installed on an Ubuntu
> server running on an EC2 instance, and you're using S3 for your image and
> file storage.
>
> 1.) Launch an Ubuntu 14.04 LTS virtual machine on your Azure portal. Make
> sure your virtual machine has the same security group settings that you
> have on your AWS EC2 instance.
>
> 2.) Log in to your Ubuntu server, then create your root password
> sudo passwd root
>
> To allow remote login using root, you also need to edit the file
> /etc/ssh/sshd_config, and comment out the following line:
> PermitRootLogin without-password
>
> Just below it, add the following line:
> PermitRootLogin yes
>
> Save the file, then restart SSH:
> service ssh restart
>
> 3.) Create an Azure storage account, then launch an Azure storage
> container. Once you created the container, get the Azure container name and
> access key, which you will use on step #5.
>
> 4.) Get your AWS Access Key ID and Secret Access Key from your AWS
> Console's IAM, which you will use on step #5.
>
> 5.) Migrate your AWS S3 bucket to the new Azure storage container using
> Flexify.io. Create a free account on Flexify, then launch a migration
> task. I was able to migrate all my files totalling 6.5GB in just about 20
> minutes.
>
> 6.) Start the server migration process from AWS EC2 to Azure using a
> custom rsync shell script. Follow the pretty straightforward steps from
> this link here: https://cloudnull.io/2012/07/cloud-server-migration (Go
> to the section that says *Migrate using RSYNC The Easy Way *and follow
> the steps there). After the migration, the new server will automatically
> reboot itself.
>
> *Note: the rsync shell script uses Rackspace directory defaults, but it
> worked pretty fine on me, so just hit ENTER to continue when you're
> prompted to apply the default*
>
> 7.) Login to the new server, then restart Elasticsearch and Apache. By
> this point, your new server is now hosting Arches, and you can already open
> Arches on your browser. However it's still pointing to the old S3 bucket.
>
> 8.) Install the django-storages-redux by following the steps from here:
> https://github.com/schumannd/django-storages. This is a forked
> django-storages package, because the original django-storages has seen no
> commit applied since March 2014, and there were errors on the AzureStorage
> library.
>
> 9.) Comment out the AWS variables on settings.py and instead add these
> variables:
>
> DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
> AZURE_ACCOUNT_NAME = ''
> AZURE_ACCOUNT_KEY = ''
> AZURE_CONTAINER = ''
> MEDIA_URL = ' https://your_azure_account_name.blob.core.windows.net/your_azure_container
> >'
>
> 10.) Save your settings.py file, then restart your Apache server.
>
> *And you're done! *You can now point your domain to the new Azure virtual
> machine and start decommissioning your AWS resources.
>
> If there's any problem you're encountering, please let me know here and
> I'd be happy to help!
>
> Special thanks to Adam Cox for helping me out on some parts of this
> migration process!
>
> Regards,
>
> Joel
>
> --
> -- To post, send email to archesproject@googlegroups.com. To unsubscribe,
> send email to archesproject+unsubscr...@googlegroups.com. For more
> information, visit https://groups.google.com/d/forum/archesproject?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Arches Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to archesproject+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Cannot run manage.py

2017-02-20 Thread Joel Aldor
Hi Vincent, thanks for helping out! But I abandoned this part already 
because I was able to migrate my Arches server from AWS to Azure. I posted 
the steps on a new thread. :)

On Tuesday, February 21, 2017 at 1:49:51 AM UTC+8, Vincent Meijer wrote:
>
> Hey Joel, could you check arches and arches_hip are installed in 
> ~/Projects/ENV/lib/python2.7/site-packages ? 
> Or somewhere along that path, not sure if I got it exactly right off the 
> top of my head. 
>
>
> On Saturday, 18 February 2017 01:27:58 UTC-5, Joel Aldor wrote:
>>
>> Hello,
>>
>> Tried to create a new Arches3-HIP installation, but when I go to step 2 
>> on this link: 
>> http://arches-hip.readthedocs.io/en/latest/getting-started/#running-arches-hip,
>>  
>> I get the Unknown command: 'packages' error below. I checked 'help' as 
>> indicated below, and the packages subcommand seemed not to be included 
>> on my django installation (Django version I have is 1.6.2). 
>>
>> What can be done here? Thanks for the help.
>>
>> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$ python manage.py packages 
>> -o install
>> Unknown command: 'packages'
>> Type 'manage.py help' for usage.
>> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$ python manage.py help
>> Usage: manage.py subcommand [options] [args]
>>
>>
>> Options:
>>   -v VERBOSITY, --verbosity=VERBOSITY
>> Verbosity level; 0=minimal output, 1=normal 
>> output,
>> 2=verbose output, 3=very verbose output
>>   --settings=SETTINGS   The Python path to a settings module, e.g.
>> "myproject.settings.main". If this isn't 
>> provided, the
>> DJANGO_SETTINGS_MODULE environment variable will 
>> be
>> used.
>>   --pythonpath=PYTHONPATH
>> A directory to add to the Python path, e.g.
>> "/home/djangoprojects/myproject".
>>   --traceback   Raise on exception
>>   --version show program's version number and exit
>>   -h, --helpshow this help message and exit
>>
>>
>> Type 'manage.py help ' for help on a specific subcommand.
>>
>>
>> Available subcommands:
>>
>>
>> [django]
>> check
>> cleanup
>> compilemessages
>> createcachetable
>> dbshell
>> diffsettings
>> dumpdata
>> flush
>> inspectdb
>> loaddata
>> makemessages
>> runfcgi
>> runserver
>> shell
>> sql
>> sqlall
>> sqlclear
>> sqlcustom
>> sqldropindexes
>> sqlflush
>> sqlindexes
>> sqlinitialdata
>> sqlsequencereset
>> startapp
>> startproject
>> syncdb
>> test
>> testserver
>> validate
>> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$
>>
>> Regards,
>>
>> Joel
>>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] STEPS: Arches 3 server migration from AWS to Azure

2017-02-20 Thread Joel Aldor
Hi guys!

I'm sharing to you the steps in migrating your Arches server from AWS to 
Microsoft Azure. I must admit the whole migration was pretty hard, since 
AWS doesn't allow you to export your Linux EC2 instances to another cloud 
provider. But after weeks of trial and error, I'm finally able to migrate 
it completely. :)

These steps will work, assuming your Arches is installed on an Ubuntu 
server running on an EC2 instance, and you're using S3 for your image and 
file storage.

1.) Launch an Ubuntu 14.04 LTS virtual machine on your Azure portal. Make 
sure your virtual machine has the same security group settings that you 
have on your AWS EC2 instance.

2.) Log in to your Ubuntu server, then create your root password 
sudo passwd root

To allow remote login using root, you also need to edit the file 
/etc/ssh/sshd_config, and comment out the following line:
PermitRootLogin without-password 

Just below it, add the following line:
PermitRootLogin yes 

Save the file, then restart SSH:
service ssh restart

3.) Create an Azure storage account, then launch an Azure storage 
container. Once you created the container, get the Azure container name and 
access key, which you will use on step #5.

4.) Get your AWS Access Key ID and Secret Access Key from your AWS 
Console's IAM, which you will use on step #5.

5.) Migrate your AWS S3 bucket to the new Azure storage container using 
Flexify.io. Create a free account on Flexify, then launch a migration task. 
I was able to migrate all my files totalling 6.5GB in just about 20 minutes.

6.) Start the server migration process from AWS EC2 to Azure using a custom 
rsync shell script. Follow the pretty straightforward steps from this link 
here: https://cloudnull.io/2012/07/cloud-server-migration (Go to the 
section that says *Migrate using RSYNC The Easy Way *and follow the steps 
there). After the migration, the new server will automatically reboot 
itself.

*Note: the rsync shell script uses Rackspace directory defaults, but it 
worked pretty fine on me, so just hit ENTER to continue when you're 
prompted to apply the default*

7.) Login to the new server, then restart Elasticsearch and Apache. By this 
point, your new server is now hosting Arches, and you can already open 
Arches on your browser. However it's still pointing to the old S3 bucket.

8.) Install the django-storages-redux by following the steps from here: 
https://github.com/schumannd/django-storages. This is a forked 
django-storages package, because the original django-storages has seen no 
commit applied since March 2014, and there were errors on the AzureStorage 
library.

9.) Comment out the AWS variables on settings.py and instead add these 
variables:

DEFAULT_FILE_STORAGE = 'storages.backends.azure_storage.AzureStorage'
AZURE_ACCOUNT_NAME = ''
AZURE_ACCOUNT_KEY = ''
AZURE_CONTAINER = ''
MEDIA_URL = 'https://your_azure_account_name.blob.core.windows.net/your_azure_container>'

10.) Save your settings.py file, then restart your Apache server. 

*And you're done! *You can now point your domain to the new Azure virtual 
machine and start decommissioning your AWS resources.

If there's any problem you're encountering, please let me know here and I'd 
be happy to help!

Special thanks to Adam Cox for helping me out on some parts of this 
migration process!

Regards, 

Joel

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Arches] Abridged summary of arch...@googlegroups.com - 1 update in 1 topic

2017-02-20 Thread 'Lucy FJ' via Arches Project
Thank you very much, Vincent!

On Monday, February 20, 2017 at 7:52:35 PM UTC+2, Vincent Meijer wrote:
>
> It's Postgresql 9.3
>
> On Sunday, 19 February 2017 15:34:26 UTC-5, Lucy FJ wrote:
>>
>> This question is about the correct version of PostgreSQL. When we checked 
>> the version we are using for Arches, it showed 8.4.2 (server 9.3). Does 
>> this mean 8.4.2 or 9.3?
>> Thank you very much,
>> Lucy 
>>
>> Sent from my iPad
>>
>> On 16 Feb 2017, at 02:12, arches...@googlegroups.com wrote:
>>
>> archesproject@googlegroups.com 
>> 
>>  Google 
>> Groups 
>> 
>>  
>> 
>>  
>> Today's topic summary 
>> View all topics 
>> 
>>  
>>
>>- Using different versions of Linux and Python 
>>
>> <#862a9234-80ea-422e-b084-ef230b5707eb@googlegroups.com_451DC371-D2E5-469E-8DEE-F31CA8A02A15@aucegypt.edu_group_thread_0>
>>  
>>- 1 Update 
>>
>> Using different versions of Linux and Python 
>> 
>>  
>> Lucy Fletcher-Jones : Feb 15 10:42AM +0200 
>>
>> Thank you, Alexei. Do you think that Python 2.7.6 is absolutely essential?
>>  
>> Lucy
>>  
>> Lucy Fletcher-Jones
>> Egypt Database Project
>> TMP Room 2181, HUSS Building AUC New Campus
>> Tel: 02 2615 1760 ...more 
>> 
>>  
>> Back to top 
>> <#862a9234-80ea-422e-b084-ef230b5707eb@googlegroups.com_451DC371-D2E5-469E-8DEE-F31CA8A02A15@aucegypt.edu_digest_top>
>>  
>> You received this digest because you're subscribed to updates for this 
>> group. You can change your settings on the group membership page 
>> 
>> .
>> To unsubscribe from this group and stop receiving emails from it send an 
>> email to archesprojec...@googlegroups.com. 
>>
>>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Arches] Re: Arches resource cross reference relationships authority file problems

2017-02-20 Thread 'Lucy Fletcher-Jones' via Arches Project
HI Adam,

Thank you very much, I did not realize this had already been identified as
a problem - I will look harder next time! Thank you for the workaround.

Alison, Alexei: I hope this bug is fixed in Arches 4.0?

Lucy

Lucy Fletcher-Jones
Egypt Database Project
TMP Room 2181, HUSS Building AUC New Campus
Tel: 02 2615 1760
Mobile: 010 1633 8367


On Mon, Feb 20, 2017 at 7:58 PM, Adam Cox  wrote:

> Hi Lucy, this is indeed a bug (I'm personally unsure why resource
> relationships are treated differently in the RDM), and it has come up on
> the forum in the past. Here's the thread that contains a workaround:
> https://groups.google.com/forum/#!searchin/archesproject/add$
> 20relationship|sort:relevance/archesproject/sVhDoZmd7C4/bFdjOf_qBwAJ
>
> Hope that helps,
> Adam
>
>
> On Wednesday, February 8, 2017 at 4:12:03 AM UTC-6, Lucy FJ wrote:
>>
>>
>> 
>> Hi all,
>> I have come across a strange problem with the ARCHES RESOURCE
>> CROSS-REFERENCE RELATIONSHIPS TYPE.E32 authority file. This is named
>> differently from the others, without the _ between the parts of the file
>> name. Is this correct? The console command line utility I use to access the
>> server cannot read this file name. Also, I see that when looking at the
>> RDM, that it is not possible to change or add new types as the 'add
>> dropdown'  form is shown, not the 'add new concept' form. Are these
>> problems related?
>>
>> Thank you very much,
>>
>> Lucy
>>
>> --
> -- To post, send email to archesproject@googlegroups.com. To unsubscribe,
> send email to archesproject+unsubscr...@googlegroups.com. For more
> information, visit https://groups.google.com/d/forum/archesproject?hl=en
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "Arches Project" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/archesproject/EuzXeEVu2Kk/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> archesproject+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Using different versions of Linux and Python

2017-02-20 Thread Adam Cox
Lucy, if you are having issues, the first step you should take is to make 
sure you are using python 2.7.6. The trick is that you must have virtualenv 
installed in the appropriate version of python before using it to make the 
virtual environment for your app. You can test this by activating your 
virtual environment and then typing python which will open the python 
interpreter, and in the header you will see what version your virtual 
environment is based on. This should be 2.7.6.

Adam

On Sunday, February 12, 2017 at 7:02:04 AM UTC-6, Lucy FJ wrote:
>
>
> Hi all,
>
> Having done some Arches customization we have hit some strange technical 
> problems so we decided to check everything from the installation of 
> dependencies onwards. It appears that we are using Oracle Linux 6.7 for our 
> Arches app. Has anyone had any problems with this? 
>
> It also seems that we are using Python v 2.6.6 not 2.7.6 which was 
> suggested for Arches. We know later versions can cause problems but can 
> earlier ones? If we need the later version of Python can we simply download 
> it and install without redoing the whole Arches installation again? 
>
> Thank you very much for your help!
>
> Lucy
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Arches resource cross reference relationships authority file problems

2017-02-20 Thread Adam Cox
Hi Lucy, this is indeed a bug (I'm personally unsure why resource 
relationships are treated differently in the RDM), and it has come up on 
the forum in the past. Here's the thread that contains a 
workaround: 
https://groups.google.com/forum/#!searchin/archesproject/add$20relationship|sort:relevance/archesproject/sVhDoZmd7C4/bFdjOf_qBwAJ

Hope that helps,
Adam

On Wednesday, February 8, 2017 at 4:12:03 AM UTC-6, Lucy FJ wrote:
>
>
> 
> Hi all,
> I have come across a strange problem with the ARCHES RESOURCE 
> CROSS-REFERENCE RELATIONSHIPS TYPE.E32 authority file. This is named 
> differently from the others, without the _ between the parts of the file 
> name. Is this correct? The console command line utility I use to access the 
> server cannot read this file name. Also, I see that when looking at the 
> RDM, that it is not possible to change or add new types as the 'add 
> dropdown'  form is shown, not the 'add new concept' form. Are these 
> problems related? 
>
> Thank you very much,
>
> Lucy 
>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Arches] Abridged summary of arches...@googlegroups.com - 1 update in 1 topic

2017-02-20 Thread Vincent Meijer
It's Postgresql 9.3

On Sunday, 19 February 2017 15:34:26 UTC-5, Lucy FJ wrote:
>
> This question is about the correct version of PostgreSQL. When we checked 
> the version we are using for Arches, it showed 8.4.2 (server 9.3). Does 
> this mean 8.4.2 or 9.3?
> Thank you very much,
> Lucy 
>
> Sent from my iPad
>
> On 16 Feb 2017, at 02:12, arches...@googlegroups.com  wrote:
>
> archesproject@googlegroups.com 
> 
>  Google 
> Groups 
> 
>  
> 
>  
> Today's topic summary 
> View all topics 
> 
>  
>
>- Using different versions of Linux and Python 
><#451DC371-D2E5-469E-8DEE-F31CA8A02A15@aucegypt.edu_group_thread_0> - 1 
>Update 
>
> Using different versions of Linux and Python 
> 
>  
> Lucy Fletcher-Jones >: Feb 15 10:42AM 
> +0200 
>
> Thank you, Alexei. Do you think that Python 2.7.6 is absolutely essential?
>  
> Lucy
>  
> Lucy Fletcher-Jones
> Egypt Database Project
> TMP Room 2181, HUSS Building AUC New Campus
> Tel: 02 2615 1760 ...more 
> 
>  
> Back to top 
> <#451DC371-D2E5-469E-8DEE-F31CA8A02A15@aucegypt.edu_digest_top> 
> You received this digest because you're subscribed to updates for this 
> group. You can change your settings on the group membership page 
> 
> .
> To unsubscribe from this group and stop receiving emails from it send an 
> email to archesprojec...@googlegroups.com . 
>
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Arches] Re: Cannot run manage.py

2017-02-20 Thread Vincent Meijer
Hey Joel, could you check arches and arches_hip are installed in 
~/Projects/ENV/lib/python2.7/site-packages ? 
Or somewhere along that path, not sure if I got it exactly right off the 
top of my head. 


On Saturday, 18 February 2017 01:27:58 UTC-5, Joel Aldor wrote:
>
> Hello,
>
> Tried to create a new Arches3-HIP installation, but when I go to step 2 on 
> this link: 
> http://arches-hip.readthedocs.io/en/latest/getting-started/#running-arches-hip,
>  
> I get the Unknown command: 'packages' error below. I checked 'help' as 
> indicated below, and the packages subcommand seemed not to be included on 
> my django installation (Django version I have is 1.6.2). 
>
> What can be done here? Thanks for the help.
>
> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$ python manage.py packages -o 
> install
> Unknown command: 'packages'
> Type 'manage.py help' for usage.
> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$ python manage.py help
> Usage: manage.py subcommand [options] [args]
>
>
> Options:
>   -v VERBOSITY, --verbosity=VERBOSITY
> Verbosity level; 0=minimal output, 1=normal output
> ,
> 2=verbose output, 3=very verbose output
>   --settings=SETTINGS   The Python path to a settings module, e.g.
> "myproject.settings.main". If this isn't 
> provided, the
> DJANGO_SETTINGS_MODULE environment variable will be
> used.
>   --pythonpath=PYTHONPATH
> A directory to add to the Python path, e.g.
> "/home/djangoprojects/myproject".
>   --traceback   Raise on exception
>   --version show program's version number and exit
>   -h, --helpshow this help message and exit
>
>
> Type 'manage.py help ' for help on a specific subcommand.
>
>
> Available subcommands:
>
>
> [django]
> check
> cleanup
> compilemessages
> createcachetable
> dbshell
> diffsettings
> dumpdata
> flush
> inspectdb
> loaddata
> makemessages
> runfcgi
> runserver
> shell
> sql
> sqlall
> sqlclear
> sqlcustom
> sqldropindexes
> sqlflush
> sqlindexes
> sqlinitialdata
> sqlsequencereset
> startapp
> startproject
> syncdb
> test
> testserver
> validate
> (ENV2)ubuntu@PHMARCHES3DEV:~/Projects/phm2app$
>
> Regards,
>
> Joel
>

-- 
-- To post, send email to archesproject@googlegroups.com. To unsubscribe, send 
email to archesproject+unsubscr...@googlegroups.com. For more information, 
visit https://groups.google.com/d/forum/archesproject?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Arches Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to archesproject+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.