Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - disconnect

Pages: [1]
1
Feng Office 3 / Re: Upload > 2gb files
« on: February 24, 2016, 03:06:02 am »
No, is not  work for me. Anyway, many thanks for help)

2
Feng Office 3 / Re: Upload > 2gb files
« on: February 19, 2016, 02:00:39 am »
Many thanks, Steveg.

I use 32-bit linux, so I will think about migration on to 64-bit.

3
Feng Office 3 / Re: Upload > 2gb files
« on: February 16, 2016, 01:04:49 am »
Steveg.

I change upload size in php.ini from 2M to 20000000M but FO said "you can upload files up to 1.95Gb. Not megabytes. That reason why I ask for browser limit.
If i change php.ini max_upload_sise to 900M, FO said 900Mb upload limit. When 20000000M, just 2Gb.

So, I ask again. Browser limit or some other setting I can change?

Thanks)

4
Feng Office 3 / Re: Upload > 2gb files
« on: February 11, 2016, 01:55:39 am »
Thansk, Steveg.

I know this, but anyway Feng Ofiice said me "you can upload files up to 2Gb"

Browser limit?


5
Feng Office 3 / Upload > 2gb files
« on: February 10, 2016, 08:16:31 am »
Is it possible to upload files in to the system, larger than 2 GB?

Thank you in advance.

6
Feng Office 3 / Re: Can't upload some PDF files
« on: December 16, 2015, 07:57:25 am »
Hi Conrado.

Sorry for long response

The problem here

Code: [Select]
}
function getDirtyTexts(&$texts, $textContainers) {
    for ($j = 0; $j < count($textContainers); $j++) {
        if (preg_match_all("#\[(.*)\]\s*TJ#ismU", $textContainers[$j], $parts))
            $texts = array_merge($texts, @$parts[1]);
        elseif(preg_match_all("#Td\s*(\(.*\))\s*Tj#ismU", $textContainers[$j], $parts))
            $texts = array_merge($texts, @$parts[1]);
    }

I just add "_" symbol in
Code: [Select]
#Td\s*(\(.*\))\s*Tj#ismU
Now it look like
Code: [Select]
_#Td\s*(\(.*\))\s*Tj#ismU
Code: [Select]
}
function getDirtyTexts(&$texts, $textContainers) {
    for ($j = 0; $j < count($textContainers); $j++) {
        if (preg_match_all("_#\[(.*)\]\s*TJ#ismU", $textContainers[$j], $parts))
            $texts = array_merge($texts, @$parts[1]);
        elseif(preg_match_all("_#Td\s*(\(.*\))\s*Tj#ismU", $textContainers[$j], $parts))
            $texts = array_merge($texts, @$parts[1]);
    }

And error is gone

Hope this helps.

7
Feng Office 3 / Re: Can't upload some PDF files
« on: September 30, 2015, 11:44:10 am »
Fixed.  Is a bug, for sure, just add a "_" in dirtytxt function and problem is gone.  If anyone get the same trouble, just ask me. "Thanks" for your help.

8
Feng Office 3 / Can't upload some PDF files
« on: September 29, 2015, 12:01:57 pm »
Hi all

The strange problem occured. When I trying to upload PDF document created by Office 2010 the process takes a long time.

The document eventually uploaded to the server but the name changes to the "error.pdf"

I can rename it, but sure this is abnormal.

No error logs, no any warnings but very long and annoying.

Any idea what be wrong and how can I fix it?

Thank you in advance.

A little more

Xubuntu 12.04 Apache 2 php 5 Any other documents like a TXT, DOC, PDF from PDF printer or Adobe STD working fine.

Pages: [1]