You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _docs/developer/getting_started/vm_install_using_vagrant.md
+12-13
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ If you using an Intel-based Mac, you will follow the instructions below._
93
93
94
94
7. Enter your **BIOS** (generally by pressing Del, F12, or other keys while booting). If you are not able to find the key combo needed to enter your BIOS, refer to [this guide](https://www.tomshardware.com/reviews/bios-keys-to-access-your-firmware,5732.html).
95
95
96
-
8. Locate **Virtualization**, and enable it. (Note: If you cannot find the option to enable virtualization, [search Google](http://tinyurl.com/enable-virtualization) for a tutorial on enabling it with your motherboard.)
96
+
8. Locate **Virtualization**, and enable it. (Note: Some motherboards may call it SVM, AMD-V, VT-x/Vanderpool. If you cannot find the option to enable virtualization, [search Google](http://tinyurl.com/enable-virtualization) for a tutorial on enabling it with your motherboard.)
97
97
98
98
9. Reboot your computer.
99
99
@@ -102,7 +102,7 @@ If you using an Intel-based Mac, you will follow the instructions below._
102
102
103
103
2. Navigate the **BIOS Settings**.
104
104
105
-
3. Locate **Virtualization** and enable it.
105
+
3. Locate **Virtualization** and enable it. (Some motherboards may call it SVM, AMD-V, VT-x/Vanderpool)
106
106
107
107
4. Be sure to choose **Hardware Virtualization** in the **System -> Acceleration** settings of the virtual machine you are using.
108
108
@@ -169,17 +169,16 @@ Below are quick steps to get everything installed and running.
169
169
when running vagrant up, use `vagrant up --provider=virtualbox` so it doesnt default to libvirt
170
170
171
171
**Common errors when running vagrant up(Fedora/RHEL)**
172
-
1. Missing virtnetworkd:
173
-
Enable it in your terminal by running:
174
-
```
175
-
sudo systemctl start virtnetworkd
176
-
```
177
-
2. If your vagrant ever freezes kill it with
178
-
'''
179
-
VBoxManage controlvm VM_NAME poweroff
180
-
'''
181
-
or if that doesn't work, reboot the computer and then run `vagrant destroy` before re-running `vagrant up --provider=virtualbox` again.
182
-
172
+
1. Missing virtnetworkd:
173
+
Enable it in your terminal by running:
174
+
```
175
+
sudo systemctl start virtnetworkd
176
+
```
177
+
2. If your vagrant ever freezes kill it with
178
+
```
179
+
VBoxManage controlvm VM_NAME poweroff
180
+
```
181
+
or if that doesn't work, reboot the computer and then run `vagrant destroy` before re-running `vagrant up --provider=virtualbox` again.
183
182
184
183
5. Clone [the Submitty repository](https://github.com/Submitty/Submitty) to a location on
Copy file name to clipboardExpand all lines: _docs/sysadmin/configuration/registration_feed.md
+5-13
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ The columns/fields may be in any order.
95
95
96
96
97
97
### 4. Install On Ubuntu Server
98
-
As these are PHP scripts, they _should_ run on any computer that has PHP 7.3 or 7.4 and the appropriate extensions installed.
98
+
As these are PHP scripts, they _should_ run on any computer that has a version of PHP 7.3 through 8.3, and the appropriate extensions installed.
99
99
However, these instructions will focus on Ubuntu server 20.04 which provides PHP 7.4 by default.
100
100
101
101
1. If they haven't already been installed, install PHP and the required extensions.
@@ -364,14 +364,6 @@ Rows that do not match this constant's value will be ignored and a warning adde
364
364
It is possible that when one row does not match, all rows will not match.
365
365
366
366
367
-
#### End of Line Detection
368
-
```php
369
-
ini_set('auto_detect_line_endings', true);
370
-
```
371
-
This shouldn't be changed.
372
-
It ensures that CSV files exported by Microsoft Excel for Macintosh are correctly processed.
373
-
374
-
375
367
#### Timezone
376
368
```php
377
369
date_default_timezone_set('America/New_York');
@@ -401,8 +393,8 @@ These optional scripts can assist in retrieving CSV data, as opposed to the data
401
393
#### `csv_local.php`
402
394
Should CSV data files be made available in the local or a mounted filesystem, this script will help you validate and retrieve the CSV data file for the auto feed. Validation includes file's existence and that the timestamp is current, so to not reprocess an old CSV file.
403
395
404
-
**`config.php`**
405
-
*Define* |
396
+
##### `config.php`
397
+
*define* |
406
398
`'LOCAL_SOURCE_CSV'` | Path/file to retrieve and placed in the location of [`'CSV_FILE'`](#csv-file-access) so that it may be processed.
407
399
408
400
@@ -411,7 +403,7 @@ This script will retrieve CSV Data files attached to an email in an IMAP email a
411
403
412
404
***IMPORTANT:*** This script is highly specialized, and is currently obsolete and unsupported. This script is provided "as is" as a sample for another developer to adapt for their University's needs. Use at your own risk.
413
405
414
-
**config.php**
406
+
##### `config.php`
415
407
*define* |
416
408
`'IMAP_HOSTNAME'` | FQDN of the IMAP email service.
417
409
`'IMAP_PORT'` | Network port to access IMAP email.
@@ -438,7 +430,7 @@ This script attempts to open an SSH connection to another server, locate and rea
438
430
439
431
***IMPORTANT:*** This script is highly specialized, and is currently obsolete and unsupported. This script is provided "as is" as a sample for another developer to adapt for their University's needs. Use at your own risk.
440
432
441
-
**config.php**
433
+
##### `config.php`
442
434
*define* |
443
435
`'JSON_REMOTE_HOSTNAME'` | FQDN of the host server to access for the JSON file.
444
436
`'JSON_REMOTE_PORT'` | Network port for SSH access. Usually 22.
0 commit comments