arete7
Forum Replies Created
-
Forum: Plugins
In reply to: [Font Organizer] PHP Foreach errorHi,
Can I ask how this is resolved, the last update did not resolve this for me.
Forum: Plugins
In reply to: [Visitor Traffic Real Time Statistics] Not working in networkHi,
I’m reviewing this plugin for our network site.
Can you post how this was resolved please, as I’ve tried this and it kills the network admin site.
Thanks.
Forum: Plugins
In reply to: [ABASE] Search LIKE instead of =Hi,
You can, just append a ‘%’ at the end of your field/column that you are searching.
eg[abase form="1,search" table="employees" columns="first_name%,last_name%$Search Employees" elements="first_name,last_name"]
This will match ‘Bob’ in Bobby.More complex LIKE searches need a little more defining.
eg[abase form="1,search" table="employees" columns="first_name!'text '=%first_name%,last_name!'text '=%last_name%$Search Employees" elements="first_name,last_name"]
What this is doing is defining the input form type and telling the form surrogate to compare to, being itself.
So the search LIKE is omnidirectional, ie ‘ob’ will match bobby, obby, snobby, etc….HTH
Paul- This reply was modified 8 years, 3 months ago by arete7.
Forum: Plugins
In reply to: [Custom Searchable Data Entry System] CSV file upload not allowedForum: Plugins
In reply to: [Custom Searchable Data Entry System] csv upload do not workHi,
Ok, after much looking reading and trying, I’ve resorted to changing LOAD DATA LOCAL INFILE to LOAD DATA INFILE and adding secure-file-priv = “” to my.cnf and GRANT FILE ON *.* TO ‘your_db_user’@’localhost’;.
As there is much controversy about php 5.5 upwards having some issues(bug possibly) that breaks LOAD DATA LOCAL INFILE(see https://stackoverflow.com/questions/13016797/load-data-local-infile-fails-from-php-to-mysql-on-amazon-rds to test this).
After making the about 3 changes, the upload was successful.
HOTH.
Paul.
Forum: Plugins
In reply to: [Custom Searchable Data Entry System] csv upload do not workHi,
MySQL needs extra config, see https://dev.mysql.com/doc/refman/5.5/en/load-data-local.html
Typically you may need to edit your my.cnf file and add
[client]
loose-local-infile=1Please read docs before just enabling this as it does have security implications.
Thx
Paul.Forum: Plugins
In reply to: [Custom Searchable Data Entry System] csv upload do not workHi,
I’m having the same problem. Bug maybe?
Thx.
Paul.Update, MySQL issue
WordPress database error The used command is not allowed with this MySQL version for query LOAD DATA LOCAL INFILE# mysql -V
mysql Ver 14.14 Distrib 5.5.53Forum: Plugins
In reply to: [Theme My Login] Remove the Remember Me and Lost Password OptionShortcodes don’t seem to work, widget does however.
Also the reCaptcha option box doesn’t show.Forum: Plugins
In reply to: [Theme My Login] Remove the Remember Me and Lost Password OptionJess did you find how to do this?
Jeff Farthing, Can you reply please?
Found it,
https://docs.thememylogin.com/ has shortcodes for show_log_link, show_reg_link and show_pass_link- This reply was modified 8 years, 4 months ago by arete7.