<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/vfront/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/vfront/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 27 Feb 2025 10:22:21 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/vfront/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>#28 after fresh install, sqlite access fails</title><link>https://sourceforge.net/p/vfront/bugs/28/?limit=25#f293</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I also can't use it after installation. I did the same thing, copied that file and copied it to the indicated folder.&lt;/p&gt;
&lt;p&gt;When I log I take that: &lt;br/&gt;
VERSÃO 0.99.5 &lt;br/&gt;
Aviso!&lt;br/&gt;
Você está tentando efetuar login através do grupo padrão . Se você estiver fazendo login pela primeira vez, isso está correto; Entre em contato com o administrador do sistema para definir os privilégios corretamente&lt;br/&gt;
Mesas disponíveis&lt;br/&gt;
No momento não há tabelas disponíveis Inicializar registro&lt;/p&gt;
&lt;p&gt;It didn't work.&lt;br/&gt;
I noticed that the database is empty, with no tables or records.&lt;br/&gt;
How can I populate the database? Where can I find the .sql file to import? Is that the way it works?&lt;/p&gt;
&lt;p&gt;We appreciate any information, Thank&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jose Silva</dc:creator><pubDate>Thu, 27 Feb 2025 10:22:21 -0000</pubDate><guid>https://sourceforge.net05b3038b7b0ddb980b6b72d0c1a4822086df02f1</guid></item><item><title>postgres issue - Synchronize database/frontend fails when CaseSensitive table names are found</title><link>https://sourceforge.net/p/vfront/bugs/45/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In postgres, "Synchronize database/frontend" fails when CaseSensitive  (i.e. schemaname.PREFIX_tblname) table names are found. &lt;br/&gt;
The error returned is:&lt;br/&gt;
ERROR:  relation "schemaname.prefix_tblname" does not exist&lt;/p&gt;
&lt;p&gt;(note that "PREFIX" has been converted to lowercase in the error, which is where it crashed).&lt;/p&gt;
&lt;p&gt;Unfortunately some other program decided to create a bunch of tables with a capitalised prefix in my schema (instead of creating its own schema or something), and to make sure it stayed capitalised, it also quoted it during creation.. now it has to ALWAYS be quoted when used in various places.&lt;/p&gt;
&lt;p&gt;the fix was easy enough, changing class.ischema_postgres.php file, line 202 as follows.&lt;br/&gt;
from:&lt;br/&gt;
&lt;code&gt;WHERE c.oid = (SELECT '{$db1['dbname']}.$table'::regclass::oid)&lt;/code&gt;&lt;br/&gt;
to:&lt;br/&gt;
&lt;code&gt;WHERE c.oid = (SELECT '{$db1['dbname']}.\"$table\"'::regclass::oid)&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;will keep updating this ticket if my DB breaks other places in the application...    &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">K P</dc:creator><pubDate>Wed, 05 Aug 2020 09:46:01 -0000</pubDate><guid>https://sourceforge.net76bde9ce18442bb2a1b139fde23287f51677d3fe</guid></item><item><title>specifying input type "values defined by table" generates PHP warnings</title><link>https://sourceforge.net/p/vfront/bugs/44/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Warnings:&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\SQLProcessor.php on line 142&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\SQLProcessor.php on line 170&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\SQLProcessor.php on line 173&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\SQLProcessor.php on line 276&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\SQLProcessor.php on line 365&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\FromProcessor.php on line 161&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\FromProcessor.php on line 183&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\FromProcessor.php on line 189&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\FromProcessor.php on line 213&lt;br/&gt;
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in C:\Apache24\htdocs\vfront\plugins\php-sql-parser\src\processors\ShowProcessor.php on line 70&lt;/p&gt;
&lt;p&gt;Configuration:&lt;br/&gt;
Milestone: 0.99.5&lt;br/&gt;
OS: Windows 10&lt;br/&gt;
Apache Version: Apache/2.4.39 (Win32) PHP/7.3.4 OpenSSL/1.0.2r&lt;br/&gt;
PHP version: 7.3.4&lt;br/&gt;
Database version: 10.3.10-MariaDB (Mysql 5.7 equivalent)&lt;/p&gt;
&lt;p&gt;Thank you for your fabulous software.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">clifford harrison</dc:creator><pubDate>Wed, 08 May 2019 11:42:38 -0000</pubDate><guid>https://sourceforge.net42c8a8e80498a32cf0b350b0159cc933eeaf6ab9</guid></item><item><title>misleading error message in installation routine</title><link>https://sourceforge.net/p/vfront/bugs/43/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;There is an error in the installation routine.  Vfront complains that vfront-code/files directory is not writeable when in fact it was.  The problem was subdirectories within that directory were not writable.  Please update the wording on the error message.&lt;/p&gt;
&lt;p&gt;Thank you for your work.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rolf</dc:creator><pubDate>Sun, 17 Feb 2019 16:25:20 -0000</pubDate><guid>https://sourceforge.net0eaebb89f4c722ea28346b4399f77609e10a4470</guid></item><item><title>#31 Records not view in grid table</title><link>https://sourceforge.net/p/vfront/bugs/31/?limit=25#f84c</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I reinstalled VFront, now the VFront tables are in the same Postgresql database as the DB itself.&lt;br/&gt;
Now when I imported the DB into the frontend, the Compatibility test showed only 4 errors instead of 12 (no primary keys).&lt;/p&gt;
&lt;p&gt;So, in general, it seems using sqlite as vfront backend is not really a good idea.&lt;/p&gt;
&lt;p&gt;Note: I had to increase the size of commento (varchar 255) in all vfront tables, otherwise I was not able to import the DB. This is because I had heavy comments on the tables.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pongracz Istvan</dc:creator><pubDate>Wed, 18 Oct 2017 19:56:16 -0000</pubDate><guid>https://sourceforge.net4f789890d0007c06d245ad1096a9a7236e0b94e8</guid></item><item><title>#31 Records not view in grid table</title><link>https://sourceforge.net/p/vfront/bugs/31/?limit=25#31bf</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In other table VFront was able to see the Primary Key.&lt;br/&gt;
The difference could be, the problematic table has foreign key, too.&lt;br/&gt;
Here are the constraints:  &lt;/p&gt;
&lt;p&gt;CONSTRAINT msz_id_pk PRIMARY KEY (id),&lt;br/&gt;
  CONSTRAINT fid_fk FOREIGN KEY (fid)&lt;br/&gt;
      REFERENCES mf (id) MATCH SIMPLE&lt;br/&gt;
      ON UPDATE NO ACTION ON DELETE NO ACTION&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pongracz Istvan</dc:creator><pubDate>Wed, 18 Oct 2017 17:53:50 -0000</pubDate><guid>https://sourceforge.net8548bdf73607013a2c3657f80570a9782c1dcd1b</guid></item><item><title>#31 Records not view in grid table</title><link>https://sourceforge.net/p/vfront/bugs/31/?limit=25#8306</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;It seems VFront just cannot see the Primary Key of the table in Postgresql 8.4.&lt;br/&gt;
There is a primary key defined in the table, but VFront cannot see it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pongracz Istvan</dc:creator><pubDate>Wed, 18 Oct 2017 17:42:05 -0000</pubDate><guid>https://sourceforge.netb0b59191148b7a6e2cc18848a38661ae37672029</guid></item><item><title>#31 Records not view in grid table</title><link>https://sourceforge.net/p/vfront/bugs/31/?limit=25#fbfa</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Some progress:&lt;br/&gt;
VFront has log, where I can found some leads.&lt;br/&gt;
It seems the missing Primary Key is the reason, why the grid view is empty, at least in my case.&lt;/p&gt;
&lt;p&gt;Here is the relevant part from the log:  &lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span&gt;&lt;/span&gt;LINE 1: SELECT  as pk, fsz,cd,vk,vn,vg,var...
                ^   SELECT as pk, 
&lt;/pre&gt;&lt;/div&gt;

&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pongracz Istvan</dc:creator><pubDate>Wed, 18 Oct 2017 17:39:52 -0000</pubDate><guid>https://sourceforge.net1fdc580d2df026ed5c91982de235d76581aca444</guid></item><item><title>#31 Records not view in grid table</title><link>https://sourceforge.net/p/vfront/bugs/31/?limit=25#13f9</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br/&gt;
This bug still exists in 0.99.5.&lt;br/&gt;
I have &lt;br/&gt;
&lt;em&gt; Database is on Postgresql 8.4 (yes, old),&lt;br/&gt;
&lt;/em&gt; Vfront in sqlite&lt;br/&gt;
&lt;em&gt; Table in the database has no primary key.&lt;br/&gt;
&lt;/em&gt; In the browser I cannot see any relevant issue (Shift+F8 devtools, console)&lt;/p&gt;
&lt;p&gt;What can I do solve this issue?&lt;br/&gt;
What kind of info do you need to solve this?&lt;br/&gt;
Thanks,&lt;br/&gt;
István&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pongracz Istvan</dc:creator><pubDate>Wed, 18 Oct 2017 16:25:21 -0000</pubDate><guid>https://sourceforge.net33d94cc6d43cfeb2ce9f9cc899cb714c8ab4b2df</guid></item><item><title>Checkboxes do not update properly when using postgresql database</title><link>https://sourceforge.net/p/vfront/bugs/42/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;.  The variable PGdb was initialized incorrectly in scheda.php:&lt;/p&gt;
&lt;p&gt;File: scheda.php, line 291&lt;/p&gt;
&lt;p&gt;Incorrect:       $PGdb= ($db1&lt;span&gt;['dbtype']&lt;/span&gt;=='postgres') ? "true":"false";&lt;/p&gt;
&lt;p&gt;Verfied fix:     $PGdb= ($db1&lt;span&gt;['dbtype']&lt;/span&gt;=='postgres') ? true:false;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matt Francis</dc:creator><pubDate>Thu, 28 Sep 2017 14:15:45 -0000</pubDate><guid>https://sourceforge.netf5b7a99e0ce8e823fd41b502fcceb4b3b313a347</guid></item></channel></rss>