Pagina 1 di 1
modificare php.ini
Inviato: 10 ott 2016, 11:36
da Rackham
salve, per TS212P, volevo gestire un database sql con phpmyadmin, ho installato le app MariaDB e phpMyadmin, mi loggo, ecc, ora ho un file da 60 mb o 3 se zippato (destinato a crescere ), in myphpadmin - importa leggo: file grande massimo 2,047 mb
da altri forum e manuali, vado a pannello di controllo su nas, web-server, modifica php.ini e niente resta uguale, ho provato a ricaricarlo uno nuovo e nada lo stesso,
qualcuno che può guidarmi?[
Re: modificare php.ini
Inviato: 27 ott 2016, 17:12
da selvaggi
ho lo stesso problema anche io, solo che il file è piu grande 96MB e ho un ts-251
Re: modificare php.ini
Inviato: 03 nov 2016, 15:46
da selvaggi
ho rigirato il problema al centro assistenza per capirci un po di più, la loro risposta alla mia email è stata:
cortesemente vada alla pagina indicata:
https://wiki.qnap.com/wiki/Running_Your ... _.28new.29
e vada alla sezione: -- QPKG-based method (new)
Esegua la procedura indicata.
MTD-based method (old)
This section is here only to make sure existing anchor links continue to work. The meat is in the section <a href="#MTD-based_method">MTD-based method</a>.
QPKG-based method (new)
This section is here only to make sure existing anchor links continue to work. The meat is in the section <a href="#QPKG-based_method">QPKG-based method</a>
Trick & tips
Waiting for encrypted partitions
If your data partition is encrypted, you might have some script that has to wait until the encrypted partition is available. I added a script called waitforenc.sh in my autorun-directory:
Codice: Seleziona tutto
#! /bin/sh
# This script ends after the encrypted filesystem has been mounted.
# The following exits successfully (0) if MD0 is mounted
cat /etc/mtab | grep -q MD0
while [[ $? -ne 0 ]] ; do
sleep 5
cat /etc/mtab | grep -q MD0
done
And now I'm able to call scripts *after* the encrypted partition is available, without blocking other scripts:
Codice: Seleziona tutto
(./waitforenc.sh; /etc/init.d/ldap_server.sh restart ) &
Calling all scripts in a certain directory
Place a file called listoffiles.sh in a directory, create a subdirectory called scripts, add listoffiles.sh to your autorun:
Codice: Seleziona tutto
#! /bin/sh
# listoffiles.sh
BASEDIR=$(dirname $0)
echo "" > log/userfiles.log
for i in scripts/*.sh ; do
if [[ -x $i ]] ; then
echo -n "$i " >> log/userfiles.log
echo `date` >> log/userfiles.log
$i 2>&1 >> log/userfiles.log
cd $BASEDIR
fi
done
a me personalmente non funziona, sicuramente sbaglio qualcosa, ma non mi pare anche giusta come procura per fare partire il php.ini
cosa ne pensate? idee?