openupload-devel Mailing List for Open Upload (Page 16)
Status: Beta
Brought to you by:
tsdogs
You can subscribe to this list here.
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(11) |
Dec
(11) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2009 |
Jan
(11) |
Feb
(9) |
Mar
(1) |
Apr
(32) |
May
(31) |
Jun
(6) |
Jul
(9) |
Aug
(108) |
Sep
(27) |
Oct
|
Nov
(9) |
Dec
(9) |
| 2010 |
Jan
(16) |
Feb
(38) |
Mar
(24) |
Apr
(2) |
May
(15) |
Jun
(2) |
Jul
(3) |
Aug
(4) |
Sep
(12) |
Oct
(21) |
Nov
(4) |
Dec
(17) |
| 2011 |
Jan
(7) |
Feb
(6) |
Mar
(26) |
Apr
(35) |
May
(6) |
Jun
(7) |
Jul
(1) |
Aug
(12) |
Sep
(5) |
Oct
(17) |
Nov
(6) |
Dec
(7) |
| 2012 |
Jan
(28) |
Feb
(17) |
Mar
(18) |
Apr
(2) |
May
(6) |
Jun
(15) |
Jul
(3) |
Aug
(3) |
Sep
(13) |
Oct
|
Nov
(6) |
Dec
(6) |
| 2013 |
Jan
(13) |
Feb
(2) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2014 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Edgar <ee...@la...> - 2010-03-01 23:59:23
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> Hi,<br> <br> I've installed OpenUpload v.0.4.1 on a shared hosting (infomaniak.ch).<br> Despite my poor computer skills, everything seems to work, except email notifications. I've no idea how to identify why and fix it. <br> Thanks for your help :)<br> <br> Cheers,<br> Edgar<br> <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="color: rgb(255, 255, 255); font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 15px; text-align: left;"><b></b></span></span> </body> </html> |
|
From: Fabio M. <Fab...@ar...> - 2010-03-01 14:43:40
|
Alessandro,
forgive me, but I figure out the problem: simply a syntax error, I didn't close the comment with */, so the row I added is ignored.
My fault, you suggestion works correctly.
Many thanks
Fabio
-----Original Message-----
From: Fabio Macchi
Sent: lunedì 1 marzo 2010 14.44
To: OpenUpload Delvel and General talk
Subject: Re: [openupload-devel] syslog logging info
Hi Alessandro,
I've tried the solution you suggested without success:
I've modified lib/main.inc.php in this way:
............................................
$this->loglevels['error'] = array('id' => 1, 'syslog' => LOG_ERR );
$this->loglevels['security'] = array('id' => 2, 'syslog' => LOG_WARNING );
$this->loglevels['warning'] = array('id' => 3, 'syslog' => LOG_WARNING );
$this->loglevels['notice'] = array('id' => 4, 'syslog' => LOG_NOTICE );
$this->loglevels['info'] = array('id' => 5, 'syslog' => LOG_INFO );
$this->loglevels['debug'] = array('id' => 9, 'syslog' => LOG_DEBUG );
/* modifica per abilitare syslog su facility LOCAL4
openlog('openupload',LOG_PID | LOG_ODELAY, LOG_LOCAL4);
/* handle magic_quotes at the source */
if (ini_get('magic_quotes_gpc')) {
.............................................
I'm using a Centos 5.4 so, from PHP openlog manual, LOG_LOCAL4 seem to be supported.
And I've added this line at the beginning of syslog.conf:
local4.* /var/log/openupload.log
The file /var/log/openupload.log is automatically created, but it is not filled with openupload log: the system file /var/log/messages still continue to be filled.
Did I insert the row in the correct place in main.inc.php ? Do you think I'm missing something ?
Many thanks in advance for any tips.
Fabio
-----Original Message-----
From: Alessandro Briosi [mailto:ts...@br...]
Sent: venerdì 26 febbraio 2010 14.40
To: OpenUpload Delvel and General talk
Subject: Re: [openupload-devel] syslog logging info
Hi Fabio,
Fabio Macchi ha scritto:
> Hi,
>
> I’ve enabled syslog logging level ‘statistics’, but I can’t figure out
> in which file this events are logged: have I to expect this events in
> /var/log/httpd/access_log ( or /var/log/httpd/ssl_access_log, as I use
> https ) or in a completely separated file ?
>
No, as its syslog the events are logged to the system syslog,
/etc/syslog.conf (or rsyslog.conf or whatever is available on the
system) is used to configure where to log events.
>
> I’d like to forward these events to an external syslog server: any
> suggestion about the best way to separate these events from other ?
>
hmm, probably to do this you need to use the openlog function first [1]
you can use the local0 to 7. For the nature of syslog you cannot define
it based on a process id or name.
rsyslogd should be able to acomplish this with a special filter. [2]
you can put something like this at line 106 of lib/main.inc.php
openlog('openupload',LOG_PID | LOG_ODELAY, LOG_LOCAL7);
Hope this helps,
Alessandro
[1] http://www.php.net/manual/en/function.openlog.php
[2] http://www.rsyslog.com/
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Openupload-devel mailing list
Ope...@li...
https://lists.sourceforge.net/lists/listinfo/openupload-devel
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Openupload-devel mailing list
Ope...@li...
https://lists.sourceforge.net/lists/listinfo/openupload-devel
|
|
From: Fabio M. <Fab...@ar...> - 2010-03-01 14:36:08
|
Hi Alessandro,
I've tried the solution you suggested without success:
I've modified lib/main.inc.php in this way:
............................................
$this->loglevels['error'] = array('id' => 1, 'syslog' => LOG_ERR );
$this->loglevels['security'] = array('id' => 2, 'syslog' => LOG_WARNING );
$this->loglevels['warning'] = array('id' => 3, 'syslog' => LOG_WARNING );
$this->loglevels['notice'] = array('id' => 4, 'syslog' => LOG_NOTICE );
$this->loglevels['info'] = array('id' => 5, 'syslog' => LOG_INFO );
$this->loglevels['debug'] = array('id' => 9, 'syslog' => LOG_DEBUG );
/* modifica per abilitare syslog su facility LOCAL4
openlog('openupload',LOG_PID | LOG_ODELAY, LOG_LOCAL4);
/* handle magic_quotes at the source */
if (ini_get('magic_quotes_gpc')) {
.............................................
I'm using a Centos 5.4 so, from PHP openlog manual, LOG_LOCAL4 seem to be supported.
And I've added this line at the beginning of syslog.conf:
local4.* /var/log/openupload.log
The file /var/log/openupload.log is automatically created, but it is not filled with openupload log: the system file /var/log/messages still continue to be filled.
Did I insert the row in the correct place in main.inc.php ? Do you think I'm missing something ?
Many thanks in advance for any tips.
Fabio
-----Original Message-----
From: Alessandro Briosi [mailto:ts...@br...]
Sent: venerdì 26 febbraio 2010 14.40
To: OpenUpload Delvel and General talk
Subject: Re: [openupload-devel] syslog logging info
Hi Fabio,
Fabio Macchi ha scritto:
> Hi,
>
> I’ve enabled syslog logging level ‘statistics’, but I can’t figure out
> in which file this events are logged: have I to expect this events in
> /var/log/httpd/access_log ( or /var/log/httpd/ssl_access_log, as I use
> https ) or in a completely separated file ?
>
No, as its syslog the events are logged to the system syslog,
/etc/syslog.conf (or rsyslog.conf or whatever is available on the
system) is used to configure where to log events.
>
> I’d like to forward these events to an external syslog server: any
> suggestion about the best way to separate these events from other ?
>
hmm, probably to do this you need to use the openlog function first [1]
you can use the local0 to 7. For the nature of syslog you cannot define
it based on a process id or name.
rsyslogd should be able to acomplish this with a special filter. [2]
you can put something like this at line 106 of lib/main.inc.php
openlog('openupload',LOG_PID | LOG_ODELAY, LOG_LOCAL7);
Hope this helps,
Alessandro
[1] http://www.php.net/manual/en/function.openlog.php
[2] http://www.rsyslog.com/
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Openupload-devel mailing list
Ope...@li...
https://lists.sourceforge.net/lists/listinfo/openupload-devel
|
|
From: Alessandro B. <ts...@br...> - 2010-02-27 08:44:46
|
Hi, dex...@ho... ha scritto: > Hello, > > Sorry for my English, I'm French Visage émoticône > > I used EASYPHP 5.3.1 and I can't upload big files... > The cause is UloadProgress or APC not found?? No APC / Upladprogress are optional (it's for telling the user at what point is the upload), it should not be the problem as far as you set it to not use any of them. Do you get any error when uploading big files? you might check the php.ini file for limits, or the .htaccess file in the www directory. Alessandro |
|
From: Alessandro B. <ts...@br...> - 2010-02-26 14:02:08
|
Hi Fabio,
Fabio Macchi ha scritto:
> Hi,
>
> I’ve enabled syslog logging level ‘statistics’, but I can’t figure out
> in which file this events are logged: have I to expect this events in
> /var/log/httpd/access_log ( or /var/log/httpd/ssl_access_log, as I use
> https ) or in a completely separated file ?
>
No, as its syslog the events are logged to the system syslog,
/etc/syslog.conf (or rsyslog.conf or whatever is available on the
system) is used to configure where to log events.
>
> I’d like to forward these events to an external syslog server: any
> suggestion about the best way to separate these events from other ?
>
hmm, probably to do this you need to use the openlog function first [1]
you can use the local0 to 7. For the nature of syslog you cannot define
it based on a process id or name.
rsyslogd should be able to acomplish this with a special filter. [2]
you can put something like this at line 106 of lib/main.inc.php
openlog('openupload',LOG_PID | LOG_ODELAY, LOG_LOCAL7);
Hope this helps,
Alessandro
[1] http://www.php.net/manual/en/function.openlog.php
[2] http://www.rsyslog.com/
|
|
From: Fabio M. <Fab...@ar...> - 2010-02-26 10:59:50
|
Hi, I've enabled syslog logging level 'statistics', but I can't figure out in which file this events are logged: have I to expect this events in /var/log/httpd/access_log ( or /var/log/httpd/ssl_access_log, as I use https ) or in a completely separated file ? I'd like to forward these events to an external syslog server: any suggestion about the best way to separate these events from other ? In other cases I've forced log to a facilities ( for example to facility local4 )and then I've configured syslog.conf to forward all these facility log to the external log server, but I don't know how to implement this with openupload. Thanks in advance for your answer, great software. Ciao Fabio |
|
From: Alessandro B. <ts...@br...> - 2010-02-19 18:40:34
|
Leandro Ledesma ha scritto: > *I can help you with the translation in to the Spanish,but i need the > fount files in order to translate it,where can i find them?. Thank you > Alessandro!.* > Translations are located in: /locale and /templates/default/locale Basically you have 2 ways of doing it: 1. Use a .po editor with the .po files 2. Translate the .inc.php files directly In both cases you can start from an existing translation by simply coping the files. If you want the empty files to be translated I'll take some time to generate them (once you tell me which way you prefer) (I know I should already have done this :) ). Alessandro |
|
From: Leandro L. <lea...@gm...> - 2010-02-19 18:11:42
|
*I can help you with the translation in to the Spanish,but i need the fount files in order to translate it,where can i find them?. Thank you Alessandro!.* 2010/2/19 Alessandro Briosi <ts...@br...> > On Fri, 19 Feb 2010 10:37:40 -0300, Leandro Ledesma <lea...@gm... > > > wrote: > > Language: ESPAÑOL?? > > Nope. Spanish has not been submitted by anyone. > > Alessandro > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel > -- -~-~-~-~-~-~-~-~-~-~-~-~-~ Leandro Ledesma Linux Counter #499024 |
|
From: Alessandro B. <ts...@br...> - 2010-02-19 14:57:23
|
On Fri, 19 Feb 2010 10:13:32 -0200, "Leonardo F. Cardoso" <leo...@gm...> wrote: > Hi all, > Hi Leonardo, > what's the best way to purge old files in OpenUpload? I'm using TXTDB. > In the Administration -> Files -> Maintainance Cheers, Alessandro |
|
From: Alessandro B. <ts...@br...> - 2010-02-19 14:54:30
|
On Fri, 19 Feb 2010 10:37:40 -0300, Leandro Ledesma <lea...@gm...> wrote: > Language: ESPAÑOL?? Nope. Spanish has not been submitted by anyone. Alessandro |
|
From: Leandro L. <lea...@gm...> - 2010-02-19 14:00:45
|
Language: ESPAÑOL?? 2010/2/19 Leandro Ledesma <lea...@gm...> > Gracias Alessandro!!!. > Exitos!. > > Leandro. > > 2010/2/19 Alessandro Briosi <ts...@br...> > > On Thu, 18 Feb 2010 17:55:54 -0300, Leandro Ledesma <lea...@gm... >> > >> wrote: >> > <?php >> > $CONFIG['WWW_SERVER'] = 'http://10.5.2.247'; >> > $CONFIG['WWW_ROOT'] = '/www'; >> > $CONFIG['INSTALL_ROOT'] = '/var/www/subir'; >> > $CONFIG['DATA_PATH'] = '/var/www/subir/data'; >> > $CONFIG['database']['type'] = 'mysql'; >> > $CONFIG['database']['host'] = 'localhost'; >> > $CONFIG['database']['user'] = 'base2'; >> > $CONFIG['database']['password'] = '123123'; >> > $CONFIG['database']['name'] = 'base2'; >> > $CONFIG['database']['prefix'] = ''; >> > >> > >> >> The www_root is wrong set it to: >> >> $CONFIG['WWW_ROOT'] = '/subdir/www'; >> >> Alessandro >> >> >> ------------------------------------------------------------------------------ >> Download Intel® Parallel Studio Eval >> Try the new software tools for yourself. Speed compiling, find bugs >> proactively, and fine-tune applications for parallel performance. >> See why Intel Parallel Studio got high marks during beta. >> http://p.sf.net/sfu/intel-sw-dev >> _______________________________________________ >> Openupload-devel mailing list >> Ope...@li... >> https://lists.sourceforge.net/lists/listinfo/openupload-devel >> > > > > -- > -~-~-~-~-~-~-~-~-~-~-~-~-~ > Leandro Ledesma > Linux Counter #499024 > -- -~-~-~-~-~-~-~-~-~-~-~-~-~ Leandro Ledesma Linux Counter #499024 |
|
From: Leandro L. <lea...@gm...> - 2010-02-19 13:59:21
|
Gracias Alessandro!!!. Exitos!. Leandro. 2010/2/19 Alessandro Briosi <ts...@br...> > On Thu, 18 Feb 2010 17:55:54 -0300, Leandro Ledesma <lea...@gm... > > > wrote: > > <?php > > $CONFIG['WWW_SERVER'] = 'http://10.5.2.247'; > > $CONFIG['WWW_ROOT'] = '/www'; > > $CONFIG['INSTALL_ROOT'] = '/var/www/subir'; > > $CONFIG['DATA_PATH'] = '/var/www/subir/data'; > > $CONFIG['database']['type'] = 'mysql'; > > $CONFIG['database']['host'] = 'localhost'; > > $CONFIG['database']['user'] = 'base2'; > > $CONFIG['database']['password'] = '123123'; > > $CONFIG['database']['name'] = 'base2'; > > $CONFIG['database']['prefix'] = ''; > > > > > > The www_root is wrong set it to: > > $CONFIG['WWW_ROOT'] = '/subdir/www'; > > Alessandro > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel > -- -~-~-~-~-~-~-~-~-~-~-~-~-~ Leandro Ledesma Linux Counter #499024 |
|
From: Leonardo F. C. <leo...@gm...> - 2010-02-19 13:20:07
|
Hi all, what's the best way to purge old files in OpenUpload? I'm using TXTDB. Sds Leonardo ----------------------------------------- Leonardo F. Cardoso leonardo.f.cardoso "at" gmail.com leofcar "at" ig.com.br (Alternativo) MSN: lfc...@ho... ----------------------------------------- |
|
From: Leonardo F. C. <leo...@gm...> - 2010-02-19 13:06:10
|
Hi Alessandro, it's ok, the current version is fine! Sds Leonardo ----------------------------------------- Leonardo F. Cardoso leonardo.f.cardoso "at" gmail.com leofcar "at" ig.com.br (Alternativo) MSN: lfc...@ho... ----------------------------------------- On Fri, Feb 19, 2010 at 10:06, Alessandro Briosi <ts...@br...> wrote: > On Thu, 18 Feb 2010 22:39:11 -0200, "Leonardo F. Cardoso" > <leo...@gm...> wrote: > > Hi Alessandro, > > > > are there any news from version 0.5 of Open Upload? > > > > Hi Leonardo, > development has somehow stalled :( . > I'm working on it but very slowly as time lately is too few. > > I was planning on releasing an alpha or preview when I reach a certain > point, but have no dates right now. > > Alessandro > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel > |
|
From: Alessandro B. <ts...@br...> - 2010-02-19 12:08:05
|
On Thu, 18 Feb 2010 22:39:11 -0200, "Leonardo F. Cardoso" <leo...@gm...> wrote: > Hi Alessandro, > > are there any news from version 0.5 of Open Upload? > Hi Leonardo, development has somehow stalled :( . I'm working on it but very slowly as time lately is too few. I was planning on releasing an alpha or preview when I reach a certain point, but have no dates right now. Alessandro |
|
From: Alessandro B. <ts...@br...> - 2010-02-19 07:37:12
|
On Thu, 18 Feb 2010 17:55:54 -0300, Leandro Ledesma <lea...@gm...> wrote: > <?php > $CONFIG['WWW_SERVER'] = 'http://10.5.2.247'; > $CONFIG['WWW_ROOT'] = '/www'; > $CONFIG['INSTALL_ROOT'] = '/var/www/subir'; > $CONFIG['DATA_PATH'] = '/var/www/subir/data'; > $CONFIG['database']['type'] = 'mysql'; > $CONFIG['database']['host'] = 'localhost'; > $CONFIG['database']['user'] = 'base2'; > $CONFIG['database']['password'] = '123123'; > $CONFIG['database']['name'] = 'base2'; > $CONFIG['database']['prefix'] = ''; > > The www_root is wrong set it to: $CONFIG['WWW_ROOT'] = '/subdir/www'; Alessandro |
|
From: Leonardo F. C. <leo...@gm...> - 2010-02-19 01:08:00
|
Hi Alessandro, are there any news from version 0.5 of Open Upload? Sds Leonardo ----------------------------------------- Leonardo F. Cardoso leonardo.f.cardoso "at" gmail.com leofcar "at" ig.com.br (Alternativo) MSN: lfc...@ho... ----------------------------------------- On Wed, Sep 23, 2009 at 14:11, Alessandro Briosi <ts...@br...> wrote: > Hi list, > just an update on what I plan to be including in version 0.5 of Open > Upload. > > Some are already implemented here, but need some working before commit, > some need to be implemented. > If anybody wants to help or has more ideas, just let me know. > > Alessandro > > ******* TARGETED FOR RELEASE 0.5 ******* > > - New upload method with perl cgi > - Remove prototype and use jquery > - Add a single click upload > - options can be set before upload (and must be, as long as possible, > checked before the upload) > - add option to logout after the upload > - add option to notify the user if something goes wrong > - Move administration options inside modules/plugins > - review the "step" functionality > - New GUI (multi file selection, options, administration,etc) > - Add invitation logic > - Separate LDAP from AD authentication (they differ too much, use ADLdap) > - TXTdb migration to gladiusDB > - Create a new setup script which uses the single plugins and modules > for the configuration > - first thing, paths then everything else. > - Check for required paths to be writable... > - checks and configuration options moved into the modules/plugins > - Upgrade/Migration script > - Plugin sorting should not impact gui > - SQL backend should be more versatile (joins and so on, probably using > some direct sql templates would help) > - Add user options (defaults for options/plugins) > - Users may be part of more than one group in the db auth. > - Files can be assigned to other users/groups > - Expiration can be decided by the user > - cron job script that allows to do the cleanup of expired files > - Email templating > - Files can be imported from the FS > - User accounts can expire > - Better urls/admin, maybe mod_rewrite could be used > - mime types handled on the server side > - a file can be edited after the upload is complete > - data tables for files users, etc. > - api to upload/download from outside the application > > Other things which probably will be postponed > - Antivirus plugin > - Encryption plugin > - (?) use apache authentication so can be integrated with the system users > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel > |
|
From: Alessandro B. <ts...@br...> - 2010-02-18 17:46:20
|
Leandro Ledesma ha scritto: > Thank you very much Alessandro!, import .sql to the database and > > *Fatal error*: Smarty error: unable to write to $compile_dir > '/var/www/subir/templates_c'. Be sure $compile_dir is writable by the > web server user. in */var/www/subir/lib/smarty/Smarty.class.php* on line > *1092 > Well this is a permission problem :), do what the message says, make it writable by the apache user. Alessandro |
|
From: Leandro L. <lea...@gm...> - 2010-02-18 17:38:33
|
Thank you very much Alessandro!, import .sql to the database and *Fatal error*: Smarty error: unable to write to $compile_dir '/var/www/subir/templates_c'. Be sure $compile_dir is writable by the web server user. in */var/www/subir/lib/smarty/Smarty.class.php* on line *1092 :-S * 2010/2/18 Alessandro Briosi <ts...@br...> > Leandro Ledesma ha scritto: > > Buenos dias gente!, tienen idea de cual puede ser el problema?. Muchas > > gracias. > > > .... > > > > *query failed: SELECT * FROM `langs` WHERE `active`="1" ORDER BY id* > > > > Hi Leandro, > sorry but I only speak English and Italian. > > Anyway the problem is that in the "populate database" option, you left > the default value, which is "do not alter the database" > > You need to repeat the setup and set it to something like "Restricted" > and then proceed with the database steps. > > Hope this helps, > Alessandro > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel > -- -~-~-~-~-~-~-~-~-~-~-~-~-~ Leandro Ledesma Linux Counter #499024 |
|
From: Alessandro B. <ts...@br...> - 2010-02-18 17:27:46
|
Leandro Ledesma ha scritto: > Buenos dias gente!, tienen idea de cual puede ser el problema?. Muchas > gracias. > .... > > *query failed: SELECT * FROM `langs` WHERE `active`="1" ORDER BY id* > Hi Leandro, sorry but I only speak English and Italian. Anyway the problem is that in the "populate database" option, you left the default value, which is "do not alter the database" You need to repeat the setup and set it to something like "Restricted" and then proceed with the database steps. Hope this helps, Alessandro |
|
From: Leandro L. <lea...@gm...> - 2010-02-18 15:15:18
|
Buenos dias gente!, tienen idea de cual puede ser el problema?. Muchas gracias. PHP INI Settings File Uploads are enabled upload_max_filesize value is set to : 2M post_max_size value is set to : 8M Register globals disabled Optional Values Magic Quotes: enabled It is strongly suggested to disable magic_quotes (which are deprecated now!) mime type php function: available For correct mime types handling it's suggested to install the Fileinfo MYSQL Support: exsists POSTGRESQL Support: not found POSTGRESQL is needed if you plan to use postgresql MSSQL Support: not found MSSQL is needed if you plan to use mssql LDAP Support: not found LDAP is needed for LDAP and AD support GD Support: exsists Upload progress traking (only one is needed) UploadProgress: not found APC: not found Here you must specify the paths of your installation. Guessed values might be wrong on some circumstances so please make sure they are ok. Install PATH: /var/www/subir (Where lib,templates,etc are) WWW Server URL: http://10.5.2.247 WWW Root Path (where setup.php is accessible from the web): /subir/www DATA PATH: /var/www/subir/data Database Type: mysql Database Type: mysql Host: localhost Username: root Password: xxxxx DB Name: openupload Table prefix: Create the database? tildado Also create user? tildado DB Admin user: root DB Admin password: xxxxx Populate database *query failed: SELECT * FROM `langs` WHERE `active`="1" ORDER BY id* -- -~-~-~-~-~-~-~-~-~-~-~-~-~ Leandro Ledesma Linux Counter #499024 |
|
From: Tech M. <tec...@ho...> - 2010-02-10 14:27:49
|
Im using outlook 2007 , but I also have the pb when using horde and firefox using UTF8 Best Regards > Date: Wed, 10 Feb 2010 11:16:32 +0100 > From: ts...@br... > To: ope...@li... > Subject: Re: [openupload-devel] French language with accents character > > What e-mail client are you using? > > Alessandro > _________________________________________________________________ Tchattez en direct en en vidéo avec vos amis ! http://www.windowslive.fr/messenger/ |
|
From: Alessandro B. <ts...@br...> - 2010-02-10 10:16:53
|
What e-mail client are you using?
Alessandro
Tech Man ha scritto:
> hello
>
> still not working , and sorry for annoying you
>
> here is my configs
>
> php.ini
>
> ; Magic quotes
> ;
>
> ; Magic quotes for incoming GET/POST/Cookie data.
> magic_quotes_gpc = Off
>
> ; Magic quotes for runtime-generated data, e.g. data from SQL, from
> exec(), etc.
> magic_quotes_runtime = Off
>
> ; Use Sybase-style magic quotes (escape ' with '' instead of \').
> magic_quotes_sybase = Off
>
>
> lib/general.inc.php :
>
> function sendmail($from,$reply,$to,$subject,$template, $attach = array()) {
> $tpl = &app()->tpl;
> $tpl->assign('subject',$subject);
> $tpl->assign('from',$from);
> $tpl->assign('to',$to);
> $subject = '=?UTF-8?B?'.base64_encode($subject).'?=';
> /* generate a boundary */
>
>
>
> templates/default/plugins/email/notify.tpl :
>
> Content-Type: text/plain; charset="utf-8"
> Content-Type: text/html; charset="utf-8"
>
>
>
>
> ------------------------------------------------------------------------
> Avec Internet Explorer, surfez en toute discrétion sur internet Cliquez
> ici ! <http://clk.atdmt.com/FRM/go/182932252/direct/01/>
>
>
> ------------------------------------------------------------------------
>
> ------------------------------------------------------------------------------
> SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
> Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
> http://p.sf.net/sfu/solaris-dev2dev
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Openupload-devel mailing list
> Ope...@li...
> https://lists.sourceforge.net/lists/listinfo/openupload-devel
|
|
From: Tech M. <tec...@ho...> - 2010-02-10 09:37:49
|
hello
still not working , and sorry for annoying you
here is my configs
php.ini
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
lib/general.inc.php :
function sendmail($from,$reply,$to,$subject,$template, $attach = array()) {
$tpl = &app()->tpl;
$tpl->assign('subject',$subject);
$tpl->assign('from',$from);
$tpl->assign('to',$to);
$subject = '=?UTF-8?B?'.base64_encode($subject).'?=';
/* generate a boundary */
templates/default/plugins/email/notify.tpl :
Content-Type: text/plain; charset="utf-8"
Content-Type: text/html; charset="utf-8"
_________________________________________________________________
Découvrez Windows 7 en 7 secondes !
http://clk.atdmt.com/FRM/go/181574577/direct/01/ |
|
From: Alessandro B. <ts...@br...> - 2010-02-09 11:50:25
|
Hi, I have checked the code, but in no place (except for the template) the string gets html escaped, so probably is php, the mail function or even the email client/server, which does this. On my system (linux / apache / php / postfix) / ( thunderbird / squirrelmail ) the message and subject are correct, if I use roundcube the problem is there, (not with html escaped characters though). Imho, the solution whould be to use an escape function at least on the subject. Put this in the lib/general.inc.php line 240 (before the comment /* generate a boundary */ ) $subject = '=?UTF-8?B?'.base64_encode($subject).'?='; This encodes the subject to UTF8 which should solve your problem with strange characters in the subject. Alessandro P.S. This is not really a solution, as it should be applied only on e-mails really containing the incriminated characters. (I think all decent email clients do support this.) Tech Man ha scritto: > > Hello > > I put it to off but nothing change I still have strange char in the > subject of the mail > > ex : > original subject : test 333été à > > subject I recieve by mail : test 333&eacute;t&eacute; &agrave; > > knowing that the body and the description is ok , the accents are well > displayed > > > Best Regards > > > ------------------------------------------------------------------------ > Vous cherchez l'intégrale des clips de Michael Jackson ? Bing ! Trouvez > ! <http://www.bing.com/videos/search?q=Michael+Jackson&FORM=MVDE6> > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Openupload-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openupload-devel |