Skip to content

Commit ba2f52d

Browse files
committed
Update registration_feed.md
1 parent ae16831 commit ba2f52d

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

_docs/sysadmin/configuration/registration_feed.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The columns/fields may be in any order.
9595

9696

9797
### 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.
9999
However, these instructions will focus on Ubuntu server 20.04 which provides PHP 7.4 by default.
100100

101101
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
364364
It is possible that when one row does not match, all rows will not match.
365365

366366

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-
375367
#### Timezone
376368
```php
377369
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
401393
#### `csv_local.php`
402394
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.
403395

404-
**`config.php`**
405-
*Define* |
396+
##### `config.php`
397+
*define* |
406398
`'LOCAL_SOURCE_CSV'` | Path/file to retrieve and placed in the location of [`'CSV_FILE'`](#csv-file-access) so that it may be processed.
407399

408400

@@ -411,7 +403,7 @@ This script will retrieve CSV Data files attached to an email in an IMAP email a
411403

412404
***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.
413405

414-
**config.php**
406+
##### `config.php`
415407
*define* |
416408
`'IMAP_HOSTNAME'` | FQDN of the IMAP email service.
417409
`'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
438430

439431
***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.
440432

441-
**config.php**
433+
##### `config.php`
442434
*define* |
443435
`'JSON_REMOTE_HOSTNAME'` | FQDN of the host server to access for the JSON file.
444436
`'JSON_REMOTE_PORT'` | Network port for SSH access. Usually 22.

0 commit comments

Comments
 (0)