For some reason in case of switching on of the English version, the description goes in French
__http://ipic.su/img/img7/fs/kiss_28kb.1448957464.png
Now questions:
What configuration of the server is necessary, for an application launch? Now I have VPS on Uduntu, with 512RAM, understand that it can be a little.
Whether it is possible to Russify application, that is whether all lines in language files are available?
Whether there is an opportunity to brand the report, especially PDF? If the word “brand” isn’t clear, I think whitelable it will be more clear.
The application is supposed to work on any charset.
It seems to come from a bad configuration on the encoding type in the DB layer. Can you confirm your mysql is set to work in UTF-8?
Can you have a look on the ‘CONTENT’ table to see how the HTML is stored?
About the french description of tests when switching to english, it is unfortunately due to the lack of english translation for the referential we work on.
The recommended minimal hardware requirement is 2Gb of RAM. For CPU, the more you get the faster you process but any actual CPU is good. For the harddrive, as you may think, SSD provides a significant improvement for all read/write operations.
All these information are in the documentation, that is being (massively) refactored. It will be available at http://doc.asqatasun.org/ in the “Install doc” section.
Yes sure ! And we would be more than happy to have a russian i18n for Asqatasun ! I am setting up translation platform (Transifex). I will post all the details when it is available.
There is no such feature (yet). If you feel comfortable with Java, you could contribute to create it ! @koj could bring you some help on where to begin.
Adapted_Content (not shown here) contains lots of ??? characters.
And the DB was created with
GRANT USAGE ON * . * TO '$tgUser'@'localhost' IDENTIFIED BY '$tgPassword';
CREATE DATABASE IF NOT EXISTS `$tgDatabase` CHARACTER SET utf8;
GRANT ALL PRIVILEGES ON `$tgDatabase` . * TO '$tgUser'@'localhost';
FLUSH PRIVILEGES;
GRANT USAGE ON * . * TO '${DATABASE_USER}'@'${DATABASE_HOST}' IDENTIFIED BY '${DATABASE_PASSWD}'; \
CREATE DATABASE IF NOT EXISTS ${DATABASE_DBNAME} CHARACTER SET utf8; \
GRANT ALL PRIVILEGES ON ${DATABASE_DBNAME} . * TO '${DATABASE_USER}'@'${DATABASE_HOST}'; \
FLUSH PRIVILEGES;
Thanks for your councils.
Now I try to deliver through Docker on a test server, meanwhile I bought the small server for a month.
I will take language files on the translation, we will look that it will turn out to make with them. For a start I want to make full audit of the site, what to understand a completeness of data.
It is a pity that for installation process difficult, though for good programmers - quite simple
No, nevertheless there were questions.
After installation from Docker. There is such error: Error response from daemon: Can't start container 59820aeac1a4b714fcb2a2966517085ad4ba759239d36a4d04ebe7ac2102631d: failed to create endpoint asqa_test on network bridge: Error starting userland proxy: listen tcp 0.0.0.0:8080: bind: address already in use
If I change port, for example on 1000 or 8081, in case of the address to 8081/asqatasun occurs nothing, or seldom the site gives an error - ERR_CONNECTION_REFUSED
Ok, i fix problem with port - listen some port and find empty 8082. But on web - empty i try connect 8082/asqatasun
The bind error, is due to a running process that already uses the port 8080. Stop the service that uses this port, or as you might do, change the value of the host port on the start command line.
Then, the application can be reached at http://localhost:$YOUR_PORT/asqatasun/.
For the encoding bug, we have a serious idea of the origin of the problem.
May be fixed very soon