1
Show Posts
This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.
Messages - Asawyer13
2
Questions / Re: Don't show initial records on list page
3
Questions / Don't show initial records on list page
I am thinking I might be able to use some code in the Actions Before List but no clue what I could put in.
Thanks
4
Questions / Re: Change database type
5
General Discussion / Re: Roles and Permissions
6
Bugs / Re: Error using sqlite and Roles/Permissions
Does someone know if that could be changed to look at the database type (mysql or sqlite) and create the appropriate php code??? That would be a nice short term solution until an updated release could be made.
I don't know if the database type is exposed anywhere when that xml file is processed.
7
Bugs / Error using sqlite and Roles/Permissions
I believe the buildQuery function in PDOFb.php has a bug.
When using sqlite database and using the Roles/Permssions, the query is
SELECT CONCAT(page_name, '/', action_name) AS page FROM role_permissions WHERE role_id = ?
For mysql that would be fine, however for sqlite the concatenate function is || so the query should be:
SELECT page_name ||' /' || action_name AS page FROM role_permissions WHERE role_id = ?
Can that be fixed so the sqlite database can be used with the Roles/Permissions??
Please fix...
8
Questions / Change database type
Is there a way to change the PHPRad object to use sqlite instead of MySQL? I tried making the change in the Global Settings but I get an error. Not sure where else I could change it.
There must be someplace in the project that I could change the database type. I'm not even against sending the project to PHPRad Techs to make the change for me. It's just this one project, but it's a decent sized project and I'm not sure I remember everything I did.
Thanks
Alan
9
Issues / Re: Getting PDO error
10
Questions / Re: SQL Server support
Hopefully the outstanding issues with mssql will be able to be fixed soon?
Thanks again
Alan
11
Questions / SQL Server support
Can you tell me why?? I would very much like to use MSSQL going forward along with MySQL and Sqlite.
Thanks
Alan
12
Questions / IIS url rewrite
I cant get the mod_rewrite file to import into IIS so even though I can get the main page to work, I am unable to navigate to other pages.
13
Bugs / Re: Joining 2 tables with 'Soft Delete' enabled on both tables
14
Issues / Getting PDO error
Getting an error while trying to access my sqlite database.
All other pages work, like Home, Contact Us, etc
It's a simple table
Error 500
Server Error
Exception Traces
This will only be displayed in DEVELOPMENT_MODE.
Error Message Call to a member function execute() on null
File C:\xampp\htdocs\test\app\models\PDODb.php On Line 1045
Stack Trace 1 C:\xampp\htdocs\test\app\controllers\TestController.php(53): PDODb->get('test', Array, Array)2 C:\xampp\htdocs\test\system\Router.php(196): TestController->index()3 C:\xampp\htdocs\test\system\Router.php(109): Router->run('test')4 C:\xampp\htdocs\test\index.php(106): Router->init()
Thanks
Alan