You are not logged in.
Pages: 1
i run eyeOS 1.9
i've followed the step to set up office support, i can open .doc document..but why still i can't open .pdf document and .ppt document?
can anyone help me?
thanks.
Offline
You have to install oneye 0.8, because eyeos 1.9 is not supported anymore.
oneye 0.8 have an updater from eyeos 1.9, so you're not going to loose any of your documents ;-)
Please have a look at this topic
Offline
thank you for your answer..
i'll try to download 0.8.0 version
Offline
when i open .ppt document in eyePresentation.
an error occured.
Warning: filesize(): stat failed for C:\xampp\htdocs\oneye_0.8.0\eyeOSf7e6f5f00b\users\rt4\root\tmp/11806_IMK_Presentation4.ppt_0.png in C:\xampp\htdocs\oneye_0.8.0\eyeOSf7e6f5f00b\apps\eyePresentation\events.eyecode on line 88
what happen?
what should i do now?
i already setting the office support..
i can open .xls and .doc document..
Offline
Please check if the image file form the error message really exists or maybe if a similar one exists.
I'm going to have a look at improving the Office support somehow...
Best regards,
Lars Knickrehm
The oneye project.
Offline
IMK_Presentation4.ppt_0.png is not an image file.
this is a powerpoint document (IMK_Presentation4.ppt)
This is the source code..
function eyePresentation_on_getSlide($params=null) {
global $myPid;
$myNumber = $GLOBALS['currentSlide']->text;
$myName = utf8_basename($GLOBALS['filepath']->text);
$file = realpath(um('getCurrentUserDir').'/tmp/').'/'.$myPid.'_'.$myName.'_'.$myNumber.'.png';
if(!$file) {
return;
}
$len = filesize($file);
$info = @getimagesize($file);
if ($info !== false) {
$fp = vfs('real_open',array($file,'r'),1);
if(!$fp) {
return;
}
header('Content-Type: '.$info['mime']);
header("Content-Length: $len");
header("Accept-Ranges: bytes");
$content = fread($fp,$len);
echo $content;
fclose($fp);
}
exit;
}
the error occured on
$len = filesize($file)
i don't understand what's wrong..
and i don't know why the code call .png file type..
Offline
Sorry just to make sure: It's important, that you open a file using eyePresentation and (without closing eyePresentation) check if the file in the error message exists.
In theory OpenOffice.org should create image files for eyePresentation slides, but it seems it does not - sadly .
I'll check it myself tomorrow...
Best regards,
Lars Knickrehm
The oneye project.
Offline
Is this a failt in the app or with the OO module ?
I'm really not sure... But testing the Office Support module is quite strange. We need to get these things a lot more stable someday...
Best regards,
Lars Knickrehm
The oneye project.
Offline
this file "19826_IMK CSCW.ppt_0.png" is not exist.
in tmp folder, only "19826_IMK CSCW.ppt" the Powerpoint file and "19826_IMK CSCW.ppt.bat" the Windows Batch File..
there's no png file..
if eyePresentation still doesn't work, is there any eyeOS application to open or view Powerpoint (.ppt) file?
Offline
and i want to know,
in eyeOS, when there's a new messages or internal messages,, is there any notification?
it confusing me because oneye 0.8.0 don't have any notification..
Offline
You're absolutely right. There's no notification board - sadly...
You could open the "internal messaging" widget as simple workaround.
Best regards,
Lars Knickrehm
The oneye project.
Offline
oh, i see..
can you show me how to setting office support for linux server?
Thank You.
Offline
Here you are http://wiki.eyeos.org/Setting_Up_Office_Linux
Unfortunately Office support is old and requires OpenOffice 2.4...
[EDIT]More info here: http://forums.lars-sh.de/viewtopic.php?id=87 [/EDIT]
Last edited by lucaferrario (2012-01-24 23:37:58)
Offline
Pages: 1