blob: ce9ad82f750f69113ceb04aad5fdb7edcbac7e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# GN1 annotation page broken
## Tags
* assigned: zsloan, pjotrp
* priority: high
* status: overdue
* type: bug
* keywords: GN1, genenetwork1, annotation, from github
## Tasks
* [ ] Fix PHP view
* [ ] Fix CKEDITOR
## Description
Turns out that it is a PHP page that is not working. Also CKEDITOR is not visible.
=> https://github.com/genenetwork/genenetwork2/issues/421 From GitHub
=> http://gn1.genenetwork.org/webqtl/main.py?FormID=annotation The annotations page in GN1
is broken. An exception stack trace is displayed, instead of the annotations page content.
## Info
Lily runs a PHP from 2006(!)
PHP 5.1.6 (cli) (built: Mar 18 2014 20:48:55)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
In guix-bioinformatics we have
```
php 5.6.40 out /home/gn1/guix-bioinformatics/gn/packages/php.scm:14:2
```
Even if this page is for windows, it is the best description of using PHP:
=> https://www.thesitewizard.com/php/install-php-5-apache-windows.shtml
On lily:
```
AddType application/x-httpd-php .htm .html
```
And Apache:
```
[root@lily conf]# /usr/sbin/httpd -V
Server version: Apache/2.2.3
Server built: Sep 16 2014 11:05:09
Server's Module Magic Number: 20051115:3
Server loaded: APR 1.2.7, APR-Util 1.2.7
Compiled using: APR 1.2.7, APR-Util 1.2.7
Architecture: 64-bit
Server MPM: Prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D DYNAMIC_MODULE_LIMIT=128
-D HTTPD_ROOT="/etc/httpd"
-D SUEXEC_BIN="/usr/sbin/suexec"
-D DEFAULT_PIDLOG="run/httpd.pid"
-D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
-D DEFAULT_LOCKFILE="logs/accept.lock"
-D DEFAULT_ERRORLOG="logs/error_log"
-D AP_TYPES_CONFIG_FILE="conf/mime.types"
-D SERVER_CONFIG_FILE="conf/httpd.conf"
```
This is similar what we have in Guix GN1. No mention of PHP in either.
For simplicity we may switch to php-cgi
=> https://stackoverflow.com/questions/28823252/installing-php-5-3-29-from-sources-on-ubuntu-14-with-apache-2-module
=> https://www.bobulous.org.uk/coding/apache-php-cgi.html
## Test instance of GN1
I started a test instance that listens on port 8044 and is hosted in this dir and started with:
```
gn1@tux01:~/production/gnshare/gn-pjotr-test
. .guix-deploy
gn1@tux01 ~/production/gnshare/gn-pjotr-test [env]$ httpd -f `pwd`/etc/pjotr-test-httpd.conf
```
Restart with
```
pkill httpd ; sleep 1 ; httpd -f `pwd`/etc/pjotr-test-httpd.conf
```
Created a file in web/test/index.html and it displays as
=> http://gn1-pjotr.genenetwork.org/test/index.html
Now a php version
=> http://gn1-pjotr.genenetwork.org/test/index.php
|