Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solr instal #6

Closed
mmallejac opened this issue Nov 12, 2019 · 72 comments
Closed

Solr instal #6

mmallejac opened this issue Nov 12, 2019 · 72 comments

Comments

@mmallejac
Copy link
Collaborator

Hello again,

Not being familiar yet with docker (learning !), I am wondering about the Solr install.

Should I use docker-compose with the solr docker image and combine it with your using docker-compose ? Or should it be installed within your docker image ?

Also which version of Solr should I use here ? The SolrPlugin page mention 5 or later : is the latest Solr image (8.3.0) fine ?

Many thanks !
Michel

@timlegge
Copy link
Owner

Hi

I will have to check my install tomorrow to be sure but I likely used something like:

sudo docker network create foswiki_net

sudo docker run --rm --network=foswiki_net --name docker-foswiki -idt -p 80:80 -p 443:443 -v foswiki_www:/var/www/foswiki:z -v nginx:/etc/nginx:z timlegge/docker-foswiki:v1.06

sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z solr

That creates a new network that can be used between the containers. At that point you can use my_solr as the host name in foswiki.

At this point you can copy the required files from the foswiki volume to the solr volume

Version may be an issue as I forget off hand which solr version will work.

I will take a look at the install tonight to see if I can replicate it. I was planning to document it anyway.

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 12, 2019 via email

@timlegge
Copy link
Owner

So, the schema in the foswiki configs does not work with version 8 so:

sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_data:/var/solr/data:z solr:7

Works
then:

cd /var/lib/docker/volumes/solr_data/_data/
cp -r ../../foswiki_www/_data/solr/cores .
mkdir configsets
cd configsets
cp -r ../../../foswiki_www/_data/solr/configsets .

That should get you a semi working solr install

Note the docs say to link the directories but I forget what exactly I did

@timlegge
Copy link
Owner

sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_home:/opt/solr/server/solr:z solr:5

The above will get a working install after you copy the files in place and change the permissions

sudo docker stop my_solr
sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_home:/opt/solr/server/solr:z --user=root solr:5

docker exec -it my_solr /bin/sh
chown -R solr:solr /opt/solr/server/solr
exit
sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_home:/opt/solr/server/solr:z solr:5

@timlegge
Copy link
Owner

I've made some progress on updating the solr configs for foswiki to support 6.6 of Solr in the attached file.

sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr_home6:/opt/solr/server/solr:z -v solr_home7:/var/solr solr:6

solr6.6.6.tar.gz

Let me know if it works for you

@MichaelDaum
Copy link

Awesome. I'll have a look at it and merge it with the next upcoming changes.

@timlegge
Copy link
Owner

And for 7.7.2
solr7.7.2.tar.gz

@timlegge
Copy link
Owner

Here is a command that seems to work well for solr. It creates volumes for the logs, configsets and cores. It also mounts the volume that the foswiki container uses. Because of that the instructions to do symbolic links will work fine.

sudo docker run --rm --network foswiki-net --name my_solr -d -P
-v solr_logs:/opt/solr/server/logs:z
-v solr_configsets:/opt/solr/server/solr/configsets:z
-v solr_foswiki:/opt/solr/server/solr/solr_foswiki:z
-v foswiki_www:/var/www/foswiki:z
-e GC_LOG_OPTS='' -e SOLR_LOG_LEVEL='WARN' -t solr:5

If you choose to use the update solr 6 or 7 configs from above use solr:6 or solr:7

@mmallejac
Copy link
Collaborator Author

I'll let you know. Many thanks !
I am trying to set up a docker-compose.yml, that will ease the setup I guess

@timlegge
Copy link
Owner

timlegge commented Nov 13, 2019 via email

@mmallejac
Copy link
Collaborator Author

I've made some progress. I have a docker-compose.yml file which works fine, that reproduces the volumes and environment variables that you have described previously :

I m using local port 8765 to access foswiki locally.

version: '3'

services:
  foswiki:
    image: timlegge/docker-foswiki
    container_name: foswiki
    depends_on:
      - solr
    ports:
      - 8765:80
    volumes:
      - solr_logs:/opt/solr/server/logs
      - solr_configsets:/opt/solr/server/solr/configsets
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki
      - foswiki_www:/var/www/foswiki
    networks:
      - foswiki-network

  solr:
    image: solr:5
    container_name: solr
    # only to have access to solr console, delete in prodcution
    ports:
      - 8983:8983
    volumes:
      - solr_logs:/opt/solr/server/logs
      - solr_configsets:/opt/solr/server/solr/configsets
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki
      - foswiki_www:/var/www/foswiki
    environment:
      - GC_LOG_OPTS=''
      - SOLR_LOG_LEVEL='WARN'
    networks:
      - foswiki-network

volumes:
  foswiki_www:
  solr_logs:
  solr_configsets:
  solr_foswiki:

networks:
  foswiki-network:

Then I run the following two commands (later will be included somehow in the compose file), and restart the solr container :

cd /opt/solr/server/solr/configsets   ; ln -s /var/www/foswiki/solr/configsets/foswiki_configs/ .
cd /opt/solr/server/solr/solr_foswiki ; ln -s /var/www/foswiki/solr/cores/foswiki/core.properties .

Most probably the second line of commands is not correct. I see in the logs that the foswiki configset is read, but it crashes after that about the core :

...
solr       | 1263 INFO  (main) [   ] o.a.s.c.CorePropertiesLocator Looking for core definitions underneath /opt/solr/server/solr
solr       | 1282 INFO  (main) [   ] o.a.s.c.CoreDescriptor Created CoreDescriptor: {name=foswiki, config=solrconfig.xml, transient=false, schema=schema.xml, loadOnStartup=true, configSetProperties=configsetprops.json, configSet=foswiki_configs, solr.autoSoftCommit.maxTime=6000, solr.autoCommit.maxTime=15000, dataDir=data/}
solr       | 1282 INFO  (main) [   ] o.a.s.c.CorePropertiesLocator Found core foswiki in /opt/solr/server/solr/solr_foswiki
solr       | 1282 INFO  (main) [   ] o.a.s.c.CorePropertiesLocator Found 1 core definitions
solr       | 1288 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.SolrResourceLoader new SolrResourceLoader for directory: '/opt/solr/server/solr/configsets/foswiki_configs'
solr       | 1289 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.SolrResourceLoader JNDI not configured for solr (NoInitialContextEx)
solr       | 1289 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.SolrResourceLoader using system property solr.solr.home: /opt/solr/server/solr
solr       | 1294 INFO  (main) [   ] o.a.s.s.SolrDispatchFilter user.dir=/opt/solr/server
solr       | 1294 INFO  (main) [   ] o.a.s.s.SolrDispatchFilter SolrDispatchFilter.init() done
solr       | 1314 INFO  (main) [   ] o.e.j.s.h.ContextHandler Started o.e.j.w.WebAppContext@3e6fa38a{/solr,file:/opt/solr/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr/server/solr-webapp/webapp}
solr       | 1330 INFO  (main) [   ] o.e.j.s.ServerConnector Started ServerConnector@57cf54e1{HTTP/1.1}{0.0.0.0:8983}
solr       | 1330 INFO  (main) [   ] o.e.j.s.Server Started @1655ms
...
solr       | 1588 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.SolrConfig Using Lucene MatchVersion: 5.0.0
solr       | 1777 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.SolrConfig Loaded SolrConfig: solrconfig.xml
solr       | 1881 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.IndexSchema [foswiki] Schema name=foswiki
solr       | 2421 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.IndexSchema default search field in schema is catchall
solr       | 2422 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.IndexSchema query parser default operator is AND
solr       | 2424 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.IndexSchema unique key field: id
solr       | 2554 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file currency.xml
solr       | 2560 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file currency.xml
solr       | 2718 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.ConfigSetProperties Did not find ConfigSet properties, assuming default properties: Can't find resource 'configsetprops.json' in classpath or '/opt/solr/server/solr/configsets/foswiki_configs'
solr       | 2718 INFO  (coreLoadExecutor-6-thread-1) [   ] o.a.s.c.CoreContainer Creating SolrCore 'foswiki' using configuration from configset /opt/solr/server/solr/configsets/foswiki_configs
solr       | 2748 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore solr.NRTCachingDirectoryFactory
solr       | 2763 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Opening new SolrCore at [/opt/solr/server/solr/configsets/foswiki_configs], dataDir=[/opt/solr/server/solr/solr_foswiki/data/]
solr       | 2765 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.JmxMonitoredMap No JMX servers found, not exposing Solr information with JMX.
solr       | 2768 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for newSearcher: [org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
solr       | 2768 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for firstSearcher: [org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
solr       | 2771 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SchemaCodecFactory Using default compressionMode: BEST_SPEED
solr       | 2798 ERROR (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore :java.nio.file.AccessDeniedException: /opt/solr/server/solr/solr_foswiki/data
...
solr       | 2799 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore New index directory detected: old=null new=/opt/solr/server/solr/solr_foswiki/data/index/
solr       | 2800 WARN  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [foswiki] Solr index directory '/opt/solr/server/solr/solr_foswiki/data/index' doesn't exist. Creating new index...
solr       | 2813 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [foswiki]  CLOSING SolrCore org.apache.solr.core.SolrCore@1b62f8c4
solr       | 2814 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.u.SolrCoreState Closing SolrCoreState
solr       | 2814 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.u.DefaultSolrCoreState SolrCoreState ref count has reached 0 - closing IndexWriter
solr       | 2814 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.SolrCore [foswiki] Closing main searcher on request.
solr       | 2814 INFO  (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.CachingDirectoryFactory Closing NRTCachingDirectoryFactory - 0 directories currently being tracked
solr       | 2815 ERROR (coreLoadExecutor-6-thread-1) [   x:foswiki] o.a.s.c.CoreContainer Error creating core [foswiki]: /opt/solr/server/solr/solr_foswiki/data
solr       | org.apache.solr.common.SolrException: /opt/solr/server/solr/solr_foswiki/data
...

I am not too much familiar with the foswiki / solr config. Any idea of whats wrong ?

@timlegge
Copy link
Owner

timlegge commented Nov 14, 2019 via email

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 14, 2019 via email

@timlegge
Copy link
Owner

I can give your docker-compose file a shot tonight. Will let you know

@mmallejac
Copy link
Collaborator Author

Here is an improved version of the docker-compose.yml file. It uses a third container, named setup, which only purpose is to create the necessary symlinks at startup time (since the command cant be used, since it overrides the container startup command, found this method here.

Still having problems, most probably an issue with these symlinks : solr does not have access to foswiki data : java.nio.file.AccessDeniedException: /opt/solr/server/solr/solr_foswiki/data

Here is the file :

version: '3'

services:
  foswiki:
    image: timlegge/docker-foswiki
    container_name: foswiki
    ports:
      - 8765:80
    volumes:
      - solr_logs:/opt/solr/server/logs
      - solr_configsets:/opt/solr/server/solr/configsets
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki
      - foswiki_www:/var/www/foswiki
    networks:
      - foswiki-network

  setup:
    image: alpine:latest
    container_name: setup
    depends_on:
      - foswiki
    volumes:
      - solr_configsets:/opt/solr/server/solr/configsets
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki
    command: sh -c "cd /opt/solr/server/solr/configsets ; [ -L foswiki_configs ] && rm foswiki_configs ; ln -s /var/www/foswiki/solr/configsets/foswiki_configs/ . ; cd /opt/solr/server/solr/solr_foswiki ; [ -L core.properties ] && rm core.properties ; ln -s /var/www/foswiki/solr/cores/foswiki/core.properties ."

  solr:
    image: solr:5
    container_name: solr
    depends_on:
      - setup
    # only usefull to have access to solr console, will be delete in production
    ports:
      - 8983:8983
    volumes:
      - solr_logs:/opt/solr/server/logs
      - solr_configsets:/opt/solr/server/solr/configsets
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki
      - foswiki_www:/var/www/foswiki
    environment:
      - GC_LOG_OPTS=''
      - SOLR_LOG_LEVEL='WARN'
    networks:
      - foswiki-network

volumes:
  foswiki_www:
  solr_logs:
  solr_configsets:
  solr_foswiki:

networks:
  foswiki-network:

@timlegge
Copy link
Owner

Add

; chown -R 8983:8983 /opt/solr/server/solr

to the command in the setup

Tim

@timlegge
Copy link
Owner

A working version:

version: '3'

services:
  foswiki:
    image: timlegge/docker-foswiki
    container_name: foswiki
    ports:
      - 8765:80
    volumes:
      - solr_logs:/opt/solr/server/logs:z
      - solr_configsets:/opt/solr/server/solr/configsets:z
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki:z
      - foswiki_www:/var/www/foswiki:z
    networks:
      - foswiki-network

  setup:
    image: alpine:latest
    container_name: setup
    depends_on:
      - foswiki
    volumes:
      - solr_configsets:/opt/solr/server/solr/configsets:z
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki:z
      - foswiki_www:/var/www/foswiki:z
    command: sh -c "cd /var/www/foswiki; chown -R 8983:8983 solr; cd /opt/solr/server/solr/configsets ; [ -L foswiki_configs ] && rm foswiki_configs ; ln -s /var/www/foswiki/solr/configsets/foswiki_configs/ . ; cd /opt/solr/server/solr/solr_foswiki ; [ -L core.properties ] && rm core.properties ; ln -s /var/www/foswiki/solr/cores/foswiki/core.properties ; chown -R 8983:8983 /opt/solr/server/solr ."

  solr:
    image: solr:5
    container_name: solr
    depends_on:
      - setup
    # only usefull to have access to solr console, will be delete in production
    ports:
      - 8983:8983
    volumes:
      - solr_logs:/opt/solr/server/logs:z
      - solr_configsets:/opt/solr/server/solr/configsets:z
      - solr_foswiki:/opt/solr/server/solr/solr_foswiki:z
      - foswiki_www:/var/www/foswiki:z
    environment:
      - GC_LOG_OPTS=''
      - SOLR_LOG_LEVEL='WARN'
    networks:
      - foswiki-network

volumes:
  foswiki_www:
  solr_logs:
  solr_configsets:
  solr_foswiki:

networks:
  foswiki-network:

@timlegge
Copy link
Owner

timlegge commented Nov 15, 2019

The above also required:
cd /var/www/foswiki; chown -R 8983:8983 solr;
to be added to the setup

Once that is done you need to update the solr URL in foswiki to be:

http://solr:8983/solr/foswiki

The container name "solr" is used as the hostname. Since both share the same network docker resolves solr to the ip of the container.

@timlegge
Copy link
Owner

I pushed a new version of the docker image that fixes an issue: TopicTitlePlugin needs to be enabled for SolrPlugin to work

I also updated the setup command in the docker-compose to change the Solr Plugin URL to point to the solr docker in the foswiki settings.

At this point your docker-compose results in a working install that will allow you to successfully test the Solr foswiki integration

@mmallejac
Copy link
Collaborator Author

Thanks a lot, it seems to work great.
Do you think we should modify things so that Solr 8 is by default ?

Also, my goal is to have this setup + Natskin, IMHO much better looking than the default skin.
Would you consider including this in you setup ? I have to do it anyway, so I can submit this to you when its done. Let me know !

@timlegge
Copy link
Owner

timlegge commented Nov 15, 2019 via email

@mmallejac
Copy link
Collaborator Author

Hi Tim,

I am having hard time with NatSkin. I've enabled it within SitePreferences but lot of macros are not working (which are perfectly working under the default skin).

See the attached screenshot :

Main   Foswiki

I've tried to fix all warnings and issues within bin/configure, also to test different NatSkin variations but no luck so far. The NatEdit works fine.

Any idea ?

Michel

@timlegge
Copy link
Owner

Probably a few plugins not enabled. Let me look

@mmallejac
Copy link
Collaborator Author

I've also tried to remove and reinstall all the 3 Nat plugins, no more luck :-\

@timlegge
Copy link
Owner

A number of Plugins are not enabled as they are installed as dependancys of other plugins. They include:
{Plugins}{AutoTemplatePlugin}{Enabled}
{Plugins}{AutoTemplatePlugin}{Enabled}
{Plugins}{DBCachePlugin}{Enabled}
{Plugins}{FlexFormPlugin}{Enabled}
{Plugins}{FlexWebListPlugin}{Enabled}
{Plugins}{PubLinkFixupPlugin}{Enabled}
{Plugins}{WebLinkPlugin}{Enabled}

Enable them manually for now but the best bet is for me to enable them in the Docker Image.

Tim

@timlegge
Copy link
Owner

v1.08 (latest was pushed with all installed plugins enabled (well not TWikiCompatibilityPlugin or EditTablePlugin)

@mmallejac
Copy link
Collaborator Author

Thanks !
In case you need it, BreadCrumbsPlugin also (bad copy/paste)

@mmallejac
Copy link
Collaborator Author

Do you know a way to modify a topic from CLI ?
If so, the skin could then be changed to Nat within the Main/SitePreferences

@mmallejac
Copy link
Collaborator Author

Hello Tim,

Just talked to M. Daum this morning about the Recent Changes bug. He has open a new ticket for that.

ClassificationPlugin will be upgraded and this should fix this issue !

@timlegge
Copy link
Owner

timlegge commented Nov 27, 2019 via email

@mmallejac
Copy link
Collaborator Author

Also while talking to him, I've proposed to mention your project in foswiki.org. He was very positive and said :

we would do that on the download page of a release. for that we have to restructure it a bit, in the vein of alternative install methods.
there is a vmware image at https://foswiki.org/Download/FoswikiRelease02x01x06
linking to https://foswiki.org/Support/VirtualMachineImages
so having a https://foswiki.org/Support/DockerImages page would be fine

What do you think ? Would you start this page ?

@timlegge
Copy link
Owner

Its, unpublished but I wrote this last night: https://blog.foswiki.org/Blog/DockerFoswikiAndSolr if you can't see it I can ask M. Daum to give you write permissions or send you the text

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 27, 2019 via email

@timlegge
Copy link
Owner

@timlegge
Copy link
Owner

Will likely publish soon

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 27, 2019 via email

@timlegge
Copy link
Owner

Made some changes. You should be able to login now with your MichelMallejac user. Feel free to make changes

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 28, 2019 via email

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 28, 2019

Hello Tim,

I think we have an issue with Solr : this guy is not able to index .odt files :

bash-5.0# ./solrindex 
Indexing topic Administratif.ContratRosa
Indexing attachment Administratif.ContratRosa.Fiche_heures.ods
ERROR: exec of odt2txt --encoding=UTF-8 %FILENAME|F% failed: No such file or directory

I've simply removed the few .ods files that we had in our wiki :-)
I'll probably open an issue with Solr, not very important anyway.

Also I don't think that the tools/solrjob work despite bash is present, I need to investigate more on this.

Personally, I set :

  • {SolrPlugin}{EnableOnSaveUpdates}
  • {SolrPlugin}{EnableOnUploadUpdates}
    Then I run once a tools/solrindex web=Myweb to index the content imported from my old wiki instance. Next, not sure that a cron job should be set up to index the entire content. That would be for peace of mind only with these settings. I am not sure anyway how to cron within a docker container !

@mmallejac
Copy link
Collaborator Author

Tried to edit https://blog.foswiki.org/Blog/DockerFoswikiAndSolr
I can see but not edit !

@timlegge
Copy link
Owner

timlegge commented Nov 28, 2019 via email

@timlegge
Copy link
Owner

I will log this as a separate issue as its a missing alpine linux package. It will take me a few days/week to get it packaged and accepted in alpine linux.

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 29, 2019 via email

@mmallejac
Copy link
Collaborator Author

mmallejac commented Nov 29, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Nov 29, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Nov 29, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Dec 2, 2019

@mmallejac do you have any updates you want to make on the blog entry? I did not get around to making your suggestions yet...

@mmallejac
Copy link
Collaborator Author

mmallejac commented Dec 2, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Dec 2, 2019

I would like to publish it soon but time is relative - I started that blog months ago (before you docker compose work)

@mmallejac
Copy link
Collaborator Author

mmallejac commented Dec 3, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Dec 3, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Dec 3, 2019 via email

@mmallejac
Copy link
Collaborator Author

mmallejac commented Dec 3, 2019 via email

@timlegge
Copy link
Owner

timlegge commented Dec 4, 2019

Yeah, I will change it to that. But I had been moving the yaml file from location to location to test a clean build for something and the basename was easier to up arrow...

@timlegge
Copy link
Owner

timlegge commented Dec 4, 2019

Yes, I was 1.24.1

@timlegge
Copy link
Owner

timlegge commented Dec 4, 2019

I have also added a blurb to the top of the blog about an issue I ran into today. My Foswiki installation has never had that issue but...

@mmallejac
Copy link
Collaborator Author

mmallejac commented Dec 4, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants