- Update to 8.0.0
PR: 219342 Submitted by: net@arrishq.net(maintainer)
This commit is contained in:
parent
0f1ce0f48c
commit
45a0d930dc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=441062
5 changed files with 5831 additions and 1837 deletions
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pydio
|
||||
PORTVERSION= 7.0.4
|
||||
PORTVERSION= 8.0.0
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= https://download.pydio.com/pub/core/archives/
|
||||
DISTNAME= ${PORTNAME}-core-${PORTVERSION}
|
||||
|
@ -28,6 +28,11 @@ post-patch:
|
|||
@${MV} ${WRKSRC}/conf/bootstrap_repositories.php ${WRKDIR}/bootstrap_repositories.php.sample
|
||||
# Remove unneeded sample file for IIS
|
||||
@${RM} ${WRKSRC}/web.config.sample
|
||||
@${RM} ${WRKSRC}/data/web.config
|
||||
|
||||
# Remove dead symlinks shipped in upstream
|
||||
@${RM} ${WRKSRC}/plugins/gui.ajax/res/mui/less
|
||||
@${RM} ${WRKSRC}/plugins/gui.ajax/res/themes/common/css/mui/less
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${WWWDIR}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1488207715
|
||||
SHA256 (pydio-core-7.0.4.tar.gz) = 8ff8f9ba9978924eb81f902d11bc7cf2be45bb592b3a9b6de51558da539a527f
|
||||
SIZE (pydio-core-7.0.4.tar.gz) = 43741497
|
||||
SHA256 (pydio-core-8.0.0.tar.gz) = 0d0e88a237b652a6f35c8735ab41e6f64a9c73333e67c424214ca417c4f1b490
|
||||
SIZE (pydio-core-8.0.0.tar.gz) = 54933292
|
||||
|
|
|
@ -12,7 +12,7 @@ if [ -d %%WWWDIR%% ]; then
|
|||
echo "NOTE:"
|
||||
echo "There are still some configuration, state and/or data files left"
|
||||
echo "in %%WWWDIR%%."
|
||||
echo "If you want to completely remove ajaxplorer use"
|
||||
echo "If you want to completely remove pydio use"
|
||||
echo "'rm -rf %%WWWDIR%%' to delete them."
|
||||
echo
|
||||
fi
|
||||
|
|
|
@ -4,7 +4,7 @@ Pydio has been installed in %%WWWDIR%%.
|
|||
|
||||
You need to configure your webserver to publish that directory.
|
||||
|
||||
Please also read http://ajaxplorer.info/documentation/administration/
|
||||
Please also read https://pydio.com/en/docs/v8/installation-guide/
|
||||
for further details on how to secure and configure your installation.
|
||||
|
||||
************************************************************************
|
||||
|
@ -55,3 +55,40 @@ Choosing the file matching your backend, then parsing it. Once this process
|
|||
is completed, Pydio may be updated using the web interface.
|
||||
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
|
||||
If you are upgrading from Pydio 7 to Pydio 8, please read follow the
|
||||
following quickstart guide for FreeBSD users.
|
||||
If the installer / upgrader fails upon trying to access it and there is
|
||||
an error message in your PHP log about "open_basedir" restriction from
|
||||
|
||||
%%WWWDIR%%/pydio/plugins/gui.ajax/RichClient.php
|
||||
|
||||
editing the file and changing line 512 from:
|
||||
|
||||
if(file_exists(AJXP_INSTALL_PATH . "." . $imagesFolder)){
|
||||
|
||||
to
|
||||
|
||||
if(file_exists(AJXP_INSTALL_PATH . "/" . $imagesFolder)){
|
||||
|
||||
should help with this issue.
|
||||
|
||||
When using MySQL as database backend and the user you use for accessing
|
||||
the database might temporary need all privileges (GRANT ALL PRIVILEGES)
|
||||
on the Pydio database during the upgrade process.
|
||||
The privileges may be set back afterwards.
|
||||
|
||||
If you use a cache driver (Doctrine), the upgrade process may fail. To
|
||||
disable the cache driver temporarily, edit:
|
||||
|
||||
%%WWWDIR%%/pydio/plugins/boot.conf/bootstrap.json
|
||||
|
||||
and remove the "core.cache" part. It can be added once the upgrade
|
||||
finished or re-configured in the admin panel.
|
||||
|
||||
Additionally cleaning the following temporary directory might be
|
||||
helpful:
|
||||
|
||||
%%WWWDIR%%/pydio/cache
|
||||
|
|
7616
www/pydio/pkg-plist
7616
www/pydio/pkg-plist
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue