You are not logged in.
Hi,
I'm trying to integrate xinha in my website and I'd like to let users upload images to their home directory.
This means that the $IMConfig['images_dir'] and $IMConfig['images_url'] are dynamic and need to be passed to backend.php file.
Has anyone an idea how to do that ? Via the XinhaConfig.js ?
Really appreciate your help.
Thomas
Offline
Salut,
Alors j'ai réussi à le faire sans XinhaConfig.js modificateur
J'ai simplement modifié, un fichier d'ExtendedFileManager.
Voici le chemin
xinha / plugins / ExtendedFileManager / config.inc.php
Dans ce fichier, j'ai modifié la ligne suivante:
Images_dir IMConfig $ [ ''] = "../../../../$ utilisateur / images ";
Il suffit de Mettre un lien RELATIF avec un dossier en variable selon utilisateur pour Atteindre Les dossiers des images des utilisateurs.
En espérant Avoir pu t'aider.
Last edited by Ch.Foveau (2009-10-28 09:13:43)
Offline
This goes in where you have your xinha_config (of course, you need to have PHP run over it)...
with (xinha_config.ImageManager)
{
<?php
require_once('/path/to/xinha/contrib/php-xinha.php');
xinha_pass_to_php_backend
(
array
(
'images_dir' => '/home/your/directory',
'images_url' => '/directory'
)
)
?>
}
Similar for ExtendedFileManager.
James Sleeman
Offline