![]() |
View online Problem - Printable Version +- LetoDMS Community Forum (https://community.letodms.com) +-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4) +--- Forum: Technical Support (https://community.letodms.com/forumdisplay.php?fid=10) +--- Thread: View online Problem (/showthread.php?tid=97) Pages:
1
2
|
View online Problem - nienna - 06-30-2010 it was strange problem.. well im getting Code: Warning: filesize() [function.filesize]: stat failed for C:/xampp/htdocs/letodms/docs/1048576/27/data.txt in C:\xampp\htdocs\letoDMS\op\op.ViewOnline.php on line 60 when i was try to view online any file like http://localhost/letoDMS/op/viewonline/27/1/gusto.txt script was wants to open data.txt but my original file name is just simple 1.txt at file folder and uploaded file name is gusto.txt . so founds function at inc.ClassDocument.php / (line 1520) PHP Code: function getFileName(){ return "data" . $this->_fileType; } and i was try manually add data.txt at file storage folder 'n requested http://localhost/letoDMS/op/viewonline/27/1/data.txt and o la la script worked. what can i do for it ? RE: View online Problem - dzingis - 06-30-2010 What version of LetoDMS are you using. That problem I had with version 1.7 with versio 1.8 everything is fine. regards RE: View online Problem - nienna - 06-30-2010 im using latest version 1.8.2 RE: View online Problem - dzingis - 06-30-2010 You must have enabled mod-rewrite module in apache. I don't know how to do that in Windows, but Google is our friend. I've found this Quote:http://roshanbh.com.np/2008/04/check-enable-mod_rewrite-apache.html If this doesn't help ... ![]() RE: View online Problem - nienna - 06-30-2010 already loaded dzingis ![]() RE: View online Problem - nienna - 07-02-2010 is there anything to solve this problem ? RE: View online Problem - dzingis - 07-02-2010 (07-02-2010, 03:29 PM)nienna Wrote: is there anything to solve this problem ? downgrade to 1.8 ![]() Have you looked at: http://forums.letodms.com/showthread.php?tid=94 This definitely looks like mod_rewrite, have you checked .htaccess file in op subfolder ? RE: View online Problem - nienna - 07-05-2010 hmm i was manualy removed all whitespace at all php files after php close tag but still same so last thing is .htaccess if there is not an another problem... PHP Code: RewriteEngine on is my .htaccess. anything wrong ? still i need help guys. RE: View online Problem - dzingis - 07-05-2010 (07-05-2010, 05:23 PM)nienna Wrote: hmm i was manualy removed all whitespace at all php files after php close tag but still same so last thing is .htaccess if there is not an another problem... Have you looked at: http://forums.letodms.com/showthread.php?tid=105&pid=326#pid326 RE: View online Problem - nienna - 07-05-2010 well well with Doudoux's solutions Quote:In file "op\op.ViewOnline.php" Change totaly its working now. thx so much ![]() |