1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-14 01:26:48 +00:00

Doc: Explains how to fix preg_split error in store.php

Fixes #3011
This commit is contained in:
Jermolene 2017-11-15 16:37:59 +00:00
parent 5acfc012cb
commit ca2225b940

View File

@ -3,7 +3,7 @@ created: 20140111091844267
delivery: DIY
description: DIY script you can install on your own server
method: save
modified: 20171113105946993
modified: 20171114212220389
tags: Saving PHP
title: Saving on a PHP Server
type: text/vnd.tiddlywiki
@ -41,3 +41,7 @@ As your TW file increases in size, you may need to modify your `.htaccess` or `
php_value upload_max_filesize 4M
php_value post_max_size 6M
```
!!! Note about possible error message
If you get an error message regarding `preg_split()`, you may need to change references to `preg_split` in ''store.php'' to function `explode` .