Upgraded to the newest version of FCKeditorX.
Now when i upload images to the server it says that it uploads them fine, but they are not there.  If i navigate to the physical folder on the server... it's not there either.
It just puts a box with an x in it in the image place.
Any help would be great.
Thanks.
			
			
									
						
										
						Uploading images issue
Re: Uploading images issue
Is your umask in global settings set to 002? Before uploading this should be 002 to have the proper permissions.
Ronny
			
			
									
						
										
						Ronny
- 
				nickbrewer
- Forum Members 
- Posts: 12
- Joined: Tue Oct 31, 2006 11:28 pm
Re: Uploading images issue
umask was set to 022.  changed it to 002 and it is still not working.
any other ideas?
thanks so much.
			
			
									
						
										
						any other ideas?
thanks so much.
Re: Uploading images issue
It will depend on how new the version but if it is 2.4.3 have you tried adding
(you will have to check directory depths)
to the top of
\FCKeditorX\FCKeditor\editor\filemanager\browser\default\connectors\php\connector.php
and changing the config.php file in the same directory to
FCK developers are very active currently and there are changes to the browser directory structures, I think after 2.4.3, so if you have downloaded a later version you will have to make some more adjustments to the CMSMS module.  In all events there is a very useful test.html for file paths in the FCK browser/connector directory.
			
			
									
						
										
						Code: Select all
require_once(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))))) . '/include.php');
check_login();to the top of
\FCKeditorX\FCKeditor\editor\filemanager\browser\default\connectors\php\connector.php
and changing the config.php file in the same directory to
Code: Select all
$Config['UserFilesPath'] = '/uploads/'; 
$Config['UserFilesAbsolutePath'] = $config['uploads_path'].'/' ;- 
				banana
Re: Uploading images issue
I'm having the same problem  
Using the FCKEditor i cannot upload images or browse files. It says uploaded but the i just get a image holder.
Using the Image Manager, i can upload images so it's not a permisisons thing but i can't link to the images using fckeditor.
The default url is also set to /image.jpg hence the Red cross, it should be uploads/images/image.jpg
my config.php already has this in it:
$Config['UserFilesPath'] = $config['uploads_url'] ;
$Config['UserFilesAbsolutePath'] = $config['uploads_path'].'/' ;
It's a Windows server btw. any ideas?
			
			
									
						
										
						
Using the FCKEditor i cannot upload images or browse files. It says uploaded but the i just get a image holder.
Using the Image Manager, i can upload images so it's not a permisisons thing but i can't link to the images using fckeditor.
The default url is also set to /image.jpg hence the Red cross, it should be uploads/images/image.jpg
my config.php already has this in it:
$Config['UserFilesPath'] = $config['uploads_url'] ;
$Config['UserFilesAbsolutePath'] = $config['uploads_path'].'/' ;
It's a Windows server btw. any ideas?
- 
				streever
Re: Uploading images issue
windows uses different permissions structure than linux/unix, so it is hard to say...
			
			
									
						
										
						- 
				banana
Re: Uploading images issue
I figured  out it has to do with the paths. I got the Image uplaoder working but not the directory browser yet. It gives a javascript error object required or something.
It seems the main config.php is not included so the variable don't get inherited.
I'll figure it out!
			
			
									
						
										
						It seems the main config.php is not included so the variable don't get inherited.
I'll figure it out!

