Giter Site home page Giter Site logo

otx's People

Contributors

arnaudcordier avatar bcenou avatar driky avatar lnprieto avatar rharoutiounian avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

otx's Issues

Compatibilité docx ?

J'ai entendu dire qu'OTX supportait maintenant l'import des docx. Ça ouvrirait pas mal de possibilités pour styler/scripter autrement qu'avec MS Word et VBA.

Est-ce confirmé ? Est-ce suffisamment mature pour une utilisation en prod ? Y a-t-il des limitations connues ?

Merci par avance pour ces infos.

the TEI is not valid

Bonjour,
J'ai reçu cette erreur "Error: ERROR: the TEI is not valid" dans l'etape "Analyse du résultat".
Et je n'arrive pas a trouver une solution.

merci pour votre aide précieuse

Lacks in doc ?

After uncompressing the files, problem with
require_once('Config.php')
I had to guess I had to install pear and Config package.

Then, the create_user.php script doesn't work and doesn't display any error message, no user in DB.
Then I removed the @ in @this in the OTXConfig class and got errors with the XML_Parser module ?
Any help would be appreciated as also LODEL that I'm trying to install is really buggy.

I'm on Debian 8.

Numéro de version

Bonjour,
Serait-il possible de rajouter quelque part dans les sources le numéro de version d'OTX (pour une identification rapide et sans ambiguïté) ?
Cordialement.
Sylvain Sonnet

soffice command line outdir option error

Hello,
I found this warning on my apache logs :
Warning: -outdir is deprecated. Use --outdir instead.

so I have an error because of the bad outdir
mkstemp("/var/www/.execooom8jD0s") failed: Permission denied

Mistake is located on line 2309 of server/otxserver.class.php
Just replace -outdir by --outdir and it works fine

OTX avec Lodel

Bonjour,

J'ai installé Lodel et OTX en local afin de mener des tests dans le cadre de mes études. Pour la connexion entre les deux services, j'ai mis l'URL suivante dans 'lodelconfig.php' :

$cfg['otxurl']="http://localhost/OTX/index.php

Seulement, quand je veux convertir un fichier, une erreur me retourne 'Empty return from OTX'. Quelle URL suis-je censé mettre ? Et puisque rien n'a été mis dans le serveur, où suis-je censé mettre le fichier à convertir ?

Bonne après-midi,

Daniel Sparti

Installation

Bonjour,

Suivant l'INSTALL, en arrivant à :

Créer un utilisateur:

php install/create_user.php [username] [password]

J'obtiens

PHP Warning: require_once(Config.php): failed to open stream: No such file or directory in OTX/OTXConfig.class.php on line 8

En effet, il n'y a pas de fichier Config.php


Anas

Install on Debian Jessie with PostrgeSQL database

Hi,
I have already install with success OTX on debian jessie with a PostgreSQL database.

php-config

For information php-config package is still not exists on Debian Jessie so you have to download last known package (wheezy version) and install it by hand :

dpkg -i php-config_1.10.12-4_all.deb

.htaccess

You're also need to modify install/.htaccess if you want to use apache2.4

 <IfVersion < 2.4>
     Order allow,deny
     Deny from all
 </IfVersion>
 <IfVersion >= 2.4>
     Require all denied
 </IfVersion>

PostgreSQL

For PostgreSQL install, I wrote a compatible init.pgsql

--
-- Table structure for table Document
--

DROP TABLE IF EXISTS Document;

CREATE TABLE Document (
  idDocument serial PRIMARY KEY,
  pathDocument varchar(255) NOT NULL DEFAULT '',
  nbNotes int NOT NULL DEFAULT '0',
  realname varchar(255) NOT NULL DEFAULT '',
  tmpname varchar(255) NOT NULL DEFAULT ''
);

--
-- Table structure for table NotePossible
--

DROP TABLE IF EXISTS NotePossible;

CREATE TABLE NotePossible (
  idNote serial,
  numNote int NOT NULL DEFAULT '0',
  motNote varchar(255) NOT NULL DEFAULT '',
  extraitMotNote text NOT NULL,
  probaNote int NOT NULL DEFAULT '0',
  idDocument int NOT NULL DEFAULT '0',
  PRIMARY KEY (idNote,idDocument)
);

--
-- Table structure for table NoteTexte
--

DROP TABLE IF EXISTS NoteTexte;

CREATE TABLE NoteTexte (
  numNote int NOT NULL DEFAULT '0',
  texteNote text NOT NULL,
  idDocument int NOT NULL DEFAULT '0',
  PRIMARY KEY (numNote,idDocument)
);

--
-- Table structure for table users
--

DROP TABLE IF EXISTS users;

CREATE TABLE users (
  id serial PRIMARY KEY,
  username varchar(255) NOT NULL DEFAULT '',
  password varchar(255) NOT NULL DEFAULT ''
);

Best regards

Arno

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.