[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Phpgroupware-users] Filemanager Problem with current CVS Version
From: |
Giancarlo Susin |
Subject: |
Re: [Phpgroupware-users] Filemanager Problem with current CVS Version |
Date: |
Wed, 03 Jul 2002 11:03:44 -0300 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.2) Gecko/20010726 Netscape6/6.1 |
Looks like a problem I had creating dirs or uploading files. If you are
*not* using MSSQL or Sybase, you can try this patch that worked for me
on MySQL.
Giancarlo
Andre Reschke wrote:
well thanks for the fast response,
i tried it out, but its the same as with the filemanager, creation of new
files is fine, but upload just doesnt work and this time i dont get an error
message, the file just isnt there :<
so far and waiting
Andre
Chris Weiss wrote:
I don't think filemanager works in .14. Try phpwebhosting.
Andre Reschke (address@hidden) wrote*:
hi,
i just upgradet to the current CVS version and i got a Problem with the
File Manager.
When i try to upload a file i get the following PHP error...
Warning: Unable to open '' for reading: No such file or directory in
/usr/local/www/data/phpgroupware/filemanager/inc/class.vfs.inc.php on
line 464
Create New File works, as well as downloading it so it cant be a
Permission Problem
My Apache version is 1.3.26 with mod_ssl2.8.10 and mod_php 4.2.1
i hope this helps to track down my problem
thanks in advance
Andre Reschke
_______________________________________________
Phpgroupware-users mailing list
address@hidden
http://mail.gnu.org/mailman/listinfo/phpgroupware-users
_______________________________________________
Phpgroupware-users mailing list
address@hidden
http://mail.gnu.org/mailman/listinfo/phpgroupware-users
_______________________________________________
Phpgroupware-users mailing list
address@hidden
http://mail.gnu.org/mailman/listinfo/phpgroupware-users
.
Index: phpgwapi/inc/class.vfs_sql.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/inc/class.vfs_sql.inc.php,v
retrieving revision 1.22
diff -u -r1.22 class.vfs_sql.inc.php
--- phpgwapi/inc/class.vfs_sql.inc.php 24 Jun 2002 04:02:14 -0000 1.22
+++ phpgwapi/inc/class.vfs_sql.inc.php 3 Jul 2002 13:43:23 -0000
@@ -149,7 +149,7 @@
}
else
{
- $query = $GLOBALS['phpgw']->db->query ("SELECT
directory, name, link_directory, link_name FROM phpgw_vfs WHERE (link_directory
IS NOT NULL or link_directory != '') AND (link_name IS NOT NULL or link_name !=
'')" . $this->extra_sql (array ('query_type' => VFS_SQL_SELECT)),
__LINE__,__FILE__);
+ $query = $GLOBALS['phpgw']->db->query ("SELECT
directory, name, link_directory, link_name FROM phpgw_vfs WHERE link_directory
IS NOT NULL AND link_name IS NOT NULL" . $this->extra_sql (array ('query_type'
=> VFS_SQL_SELECT)), __LINE__,__FILE__);
}