Table: cnotas, rows: 170

Página 1 de 9
           


Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /home/http/docs/santaclara5/libraries/src/HTML/Helpers/Grid.php on line 48

Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /home/http/docs/santaclara5/libraries/src/HTML/Helpers/Grid.php on line 48

Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /home/http/docs/santaclara5/libraries/src/HTML/Helpers/Grid.php on line 48
id titulo contenido
198install windows 11 from iso fileinstall woeusb:
sudo pamac build woeusb

make bootable USB:
sudo woeusb --device Win11_22H2_EnglishInternational_x64v2.iso /dev/sda
197Cambiar fecha a un directorio de fotosexiftool -AllDates="2023:07:05 11:30:00" .
196fedora httpd firewallDespues de la instalacion
-------------------------------------
sudo firewall-cmd --add-service=http
sudo firewall-cmd --add-service=https
195export import m_dbhttp://picota/phpmyadmin
select m_db
export
Custom - display all possible options
Object creation options
Add statements:
Add CREATE DATABASE / USE statement
Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER statement

Go

Save file en ~/bin/sql/picota/m_db.sql
cd ~/bin/sql/picota
./m_dbImport
194Joomla tmp filesudo mkdir /home/http/tmp
sudo chown www-data:martinez /home/http/tmp
sudo nano /etc/php/7.4/apache2/php.ini
edit:
file_uploads = On
upload_tmp_dir ="/home/http/tmp"
upload_max_filesize = 100M
post_max_size = 100M

sudo systemctl restart apache2
193uninstall mariadbIf you are using ubuntu, I suggest you to use the apt-get command to remove the database package, for instance:

$ sudo apt-get purge mariadb-server

You may check which mariadb packages are installed with:

$ sudo dpkg -l | grep mariad
192ubuntu mysql root$ sudo mysql -u root # I had to use "sudo" since is new installation

mysql> USE mysql;
mysql> SELECT User, Host, plugin FROM mysql.user;

+------------------+-----------------------+
| User | plugin |
+------------------+-----------------------+
| root | auth_socket |
+------------------+-----------------------+
As you can see in the query, the root user is using the auth_socket plugin

There are 2 ways to solve this:

You can set the root user to use the mysql_native_password plugin
You can create a new db_user with you system_user (recommended)

Option 1:

$ sudo mysql -u root # I had to use "sudo" since is new installation

mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
mysql> FLUSH PRIVILEGES;
mysql> exit;

$ sudo service mysql restart

Option 2: (replace YOUR_SYSTEM_USER with the username you have)

$ sudo mysql -u root # I had to use "sudo" since is new installation

mysql> USE mysql;
mysql> CREATE USER 'YOUR_SYSTEM_USER'@'localhost' IDENTIFIED BY 'YOUR_PASSWD';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'YOUR_SYSTEM_USER'@'localhost';
mysql> UPDATE user SET plugin='auth_socket' WHERE User='YOUR_SYSTEM_USER';
mysql> FLUSH PRIVILEGES;
mysql> exit;

$ sudo service mysql restart
191imagick manjaro php 8Ubuntu:
-----------
sudo apt install php-imagick

manjaro
----------
sudo pacman -S php-imagick

File:
/etc/php/conf.d/imagick.ini
descomentar:
extension=imagick

ubuntu
-----------
sudo systemctl restart apache2

manjaro
-----------
sudo systemctl restart httpd
190manjaro php 8 httpdFile /etc/httpd/conf/httpd.conf
comentar:
#LoadModule php7_module modules/libphp7.so
#AddHandler php7-script .php
#

poner al final:
LoadModule php_module modules/libphp.so
AddHandler php-script php
Include conf/extra/php_module.conf
Include conf/extra/phpmyadmin.conf

189phpmyadminQuitar el error tmp
-------------------------
sudo mkdir /usr/share/webapps/phpMyAdmin/tmp/
sudo mkdir /usr/share/webapps/phpMyAdmin/tmp/twig
sudo chown -R http /usr/share/webapps/phpMyAdmin/tmp/

quitar phpMyAdmin ERROR: mysqli_real_connect(): (HY000/1045): Access denied
--------------------------------------------------------------------------------------------------------------
CREATE USER 'phpmyadmin'@'%' IDENTIFIED BY 'gurugu';
GRANT ALL PRIVILEGES ON *.* TO 'phpmyadmin'@'%' WITH GRANT OPTION;

En manjaro editar /etc/php/php.ini y descomentar
extension=iconv



188ssh start remote apparranca el file manager nautilus
-----------------------------------
ssh -Y picota nautilus
187Enviar mensaje a Telegraminstalar telegram-cli:
-------------------------
sudo snap install telegram-cli

La primera vez progunta por el telefono del movil y envia un codigo
pregunta por el codigo que que es un mensaje en telegram del movil
se mira en el movil y se responde.
Mi nombre mismo es telegram

Ejemplo enviar el comando la respuesta al comando date
----------------------------------------------------------------
telegram-cli -W -e "msg Telegram 'Hoy es: `date`' "
telegram-cli -W -e "msg Urs_Jenzer 'Heute ist: `date`' "

comandos:
telegram-cli
>
To see a list of people in your contacts list who you can message, type:
> contact_list

To view a list of all current chats, groups and unread messages type:
> dialog_list

To message a contact or group, type msg followed by their name (remember that you can use tab to autocomplete) and then your message:
> msg

To view a conversation or chat history type history followed by the name of the contact or group and the number of lines you wish to see:
> history

To exit
> quit
E.g.: history Liam 10 will print the 10 most recent messages in my conversation with Liam:
186cups printer manjarosudo systemctl start cups.service
sudo systemctl status cups.service
sudo systemctl enable cups.service
lpstat -p -d
respuesta: printer HP-LaserJet-m1120n-MFP
lpr -P printer filename
lpr filename
185How to get rid of MySQL error 'Prepared statement needs to be re-prepared'The error went away for me when I added table_definition_cache=5000 in my /etc/my.cnf file (under the [mysqld] section), and restarted mysqld. Note that my.cnf may be in a different location for you
184borrar keyringrm ~/.local/share/keyrings/login.keyring
183ubuntu 19.10 apache userdir modul# cd /etc/apache2/conf-available
# vim httpd-userdir.conf
(editart)
# cd /etc/apache2/conf-enabled
# ln -s ../conf-avalaible/httpd-userdir.conf .
# cd /etc/apache2/mods-enabled
# ln -s ../mods-avalaible/userdir.load .
# systemctl restart apache2
# systemctl status apache2
182mysql password cd c:\wamp64\bin\mysql\mysql5.7.26\bin
mysql -uroot mysql
mysql> set password for root@localhost=password('gurugu');
181manjaro HP Laserjet M1120n MFP$ sudo hp-plugin
start programm HP device Manager
180mysql from remote host torrein host giraldo:
----------------------
create user 'martinez'@'torre' identified by 'gurugu';

grant all privileges on *.* to 'martinez'@'torre.%' identified by 'gurugu' with grant option;
179banco popularCuenta banco popular Nombre: Maria Encarnacion Martinez Santamaria

Entidad: 0075
Oficina: 0250
D.C: 73
Num. Cuenta: 0700504028
IBAN: ES19 0075 0250 7307 0050 4028
3MBMemory Usage120msRequest Duration
Joomla! Version5.2.5
PHP Version8.3.19
Identityguest
Response200
Templatecassiopeia
Database
Server
mysql
Version
8.0.41-0ubuntu0.24.04.1
Collation
utf8mb4_unicode_ci
Conn Collation
utf8mb4_0900_ai_ci
$_GET
array:2 [ "database" => "m_db" "table" => "cnotas" ]
$_POST
[]
$_SESSION
array:1 [ "joomla" => "***redacted***" ]
$_COOKIE
[]
$_SERVER
array:44 [ "SCRIPT_URL" => "/index.php/principal/cnotas" "SCRIPT_URI" => "https://santaclara5.co...
session
array:3 [ "counter" => 1 "timer" => array:3 [ "start" => 1743945250 "last" => 1743945250...
registry
array:3 [ "data" => array:1 [ "m_db_cnotas" => array:1 [ "mdb" => array:1 [ "lis...
user
array:21 [ "id" => 0 "name" => null "username" => null "email" => null "password" => "***r...
  • afterLoad (85.08KB) (3.05ms)
  • afterInitialise (1.13MB) (38.55ms)
  • afterRoute (89.35KB) (4.56ms)
  • beforeRenderComponent com_readmdb (52.32KB) (5.59ms)
  • Before Access::preloadComponents (all components) (221.08KB) (13.99ms)
  • After Access::preloadComponents (all components) (111.42KB) (2.48ms)
  • Before Access::getAssetRules (id:105 name:com_readmdb) (56B) (59μs)
  • After Access::getAssetRules (id:105 name:com_readmdb) (7.35KB) (189μs)
  • afterRenderComponent com_readmdb (341.66KB) (12.34ms)
  • afterDispatch (2.59KB) (226μs)
  • beforeRenderRawModule mod_menu (Main Menu) (26.04KB) (4.81ms)
  • afterRenderRawModule mod_menu (Main Menu) (24.82KB) (1.12ms)
  • beforeRenderRawModule mod_menu (Principal) (720B) (77μs)
  • afterRenderRawModule mod_menu (Principal) (912B) (268μs)
  • beforeRenderRawModule mod_menu (Molina) (688B) (59μs)
  • afterRenderRawModule mod_menu (Molina) (896B) (232μs)
  • beforeRenderRawModule mod_menu (Enlaces (links)) (720B) (76μs)
  • afterRenderRawModule mod_menu (Enlaces (links)) (1.52KB) (226μs)
  • beforeRenderRawModule mod_menu (Libros y apuntes (books)) (752B) (55μs)
  • afterRenderRawModule mod_menu (Libros y apuntes (books)) (928B) (212μs)
  • beforeRenderRawModule mod_articles_archive (Archived Articles) (2.33KB) (59μs)
  • afterRenderRawModule mod_articles_archive (Archived Articles) (2.95KB) (2.59ms)
  • beforeRenderRawModule mod_menu (Main Menu Blog) (4.13KB) (164μs)
  • afterRenderRawModule mod_menu (Main Menu Blog) (265.52KB) (7.84ms)
  • beforeRenderRawModule mod_tags_popular (Popular Tags) (1.05KB) (165μs)
  • afterRenderRawModule mod_tags_popular (Popular Tags) (31.57KB) (3.7ms)
  • beforeRenderRawModule mod_articles_category (Older Posts) (7.19KB) (121μs)
  • afterRenderRawModule mod_articles_category (Older Posts) (37.09KB) (5.29ms)
  • beforeRenderRawModule mod_tags_similar (Similar Items) (6.91KB) (73μs)
  • afterRenderRawModule mod_tags_similar (Similar Items) (5.95KB) (1.11ms)
  • beforeRenderRawModule mod_menu (Bottom Menu) (1.89KB) (92μs)
  • afterRenderRawModule mod_menu (Bottom Menu) (3.33KB) (378μs)
  • beforeRenderRawModule mod_breadcrumbs (Breadcrumbs) (6.98KB) (641μs)
  • afterRenderRawModule mod_breadcrumbs (Breadcrumbs) (10.84KB) (1.4ms)
  • beforeRenderModule mod_breadcrumbs (Breadcrumbs) (704B) (20μs)
  • afterRenderModule mod_breadcrumbs (Breadcrumbs) (3.91KB) (378μs)
  • beforeRenderModule mod_menu (Main Menu Blog) (2.3KB) (159μs)
  • afterRenderModule mod_menu (Main Menu Blog) (10.44KB) (134μs)
  • afterRender (149.76KB) (6.51ms)
  • 1 x afterInitialise (1.13MB) (32.08%)
    38.55ms
    1 x Before Access::preloadComponents (all components) (221.08KB) (11.64%)
    13.99ms
    1 x afterRenderComponent com_readmdb (341.66KB) (10.27%)
    12.34ms
    1 x afterRenderRawModule mod_menu (Main Menu Blog) (265.52KB) (6.52%)
    7.84ms
    1 x afterRender (149.76KB) (5.42%)
    6.51ms
    1 x beforeRenderComponent com_readmdb (52.32KB) (4.66%)
    5.59ms
    1 x afterRenderRawModule mod_articles_category (Older Posts) (37.09KB) (4.4%)
    5.29ms
    1 x beforeRenderRawModule mod_menu (Main Menu) (26.04KB) (4%)
    4.81ms
    1 x afterRoute (89.35KB) (3.79%)
    4.56ms
    1 x afterRenderRawModule mod_tags_popular (Popular Tags) (31.57KB) (3.08%)
    3.70ms
    1 x afterLoad (85.08KB) (2.54%)
    3.05ms
    1 x afterRenderRawModule mod_articles_archive (Archived Articles) (2.95KB) (2.16%)
    2.59ms
    1 x After Access::preloadComponents (all components) (111.42KB) (2.07%)
    2.48ms
    1 x afterRenderRawModule mod_breadcrumbs (Breadcrumbs) (10.84KB) (1.16%)
    1.40ms
    1 x afterRenderRawModule mod_menu (Main Menu) (24.82KB) (0.93%)
    1.12ms
    1 x afterRenderRawModule mod_tags_similar (Similar Items) (5.95KB) (0.92%)
    1.11ms
    1 x beforeRenderRawModule mod_breadcrumbs (Breadcrumbs) (6.98KB) (0.53%)
    641μs
    1 x afterRenderRawModule mod_menu (Bottom Menu) (3.33KB) (0.31%)
    378μs
    1 x afterRenderModule mod_breadcrumbs (Breadcrumbs) (3.91KB) (0.31%)
    378μs
    1 x afterRenderRawModule mod_menu (Principal) (912B) (0.22%)
    268μs
    1 x afterRenderRawModule mod_menu (Molina) (896B) (0.19%)
    232μs
    1 x afterDispatch (2.59KB) (0.19%)
    226μs
    1 x afterRenderRawModule mod_menu (Enlaces (links)) (1.52KB) (0.19%)
    226μs
    1 x afterRenderRawModule mod_menu (Libros y apuntes (books)) (928B) (0.18%)
    212μs
    1 x After Access::getAssetRules (id:105 name:com_readmdb) (7.35KB) (0.16%)
    189μs
    1 x beforeRenderRawModule mod_tags_popular (Popular Tags) (1.05KB) (0.14%)
    165μs
    1 x beforeRenderRawModule mod_menu (Main Menu Blog) (4.13KB) (0.14%)
    164μs
    1 x beforeRenderModule mod_menu (Main Menu Blog) (2.3KB) (0.13%)
    159μs
    1 x afterRenderModule mod_menu (Main Menu Blog) (10.44KB) (0.11%)
    134μs
    1 x beforeRenderRawModule mod_articles_category (Older Posts) (7.19KB) (0.1%)
    121μs
    1 x beforeRenderRawModule mod_menu (Bottom Menu) (1.89KB) (0.08%)
    92μs
    1 x beforeRenderRawModule mod_menu (Principal) (720B) (0.06%)
    77μs
    1 x beforeRenderRawModule mod_menu (Enlaces (links)) (720B) (0.06%)
    76μs
    1 x beforeRenderRawModule mod_tags_similar (Similar Items) (6.91KB) (0.06%)
    73μs
    1 x Before Access::getAssetRules (id:105 name:com_readmdb) (56B) (0.05%)
    59μs
    1 x beforeRenderRawModule mod_menu (Molina) (688B) (0.05%)
    59μs
    1 x beforeRenderRawModule mod_articles_archive (Archived Articles) (2.33KB) (0.05%)
    59μs
    1 x beforeRenderRawModule mod_menu (Libros y apuntes (books)) (752B) (0.05%)
    55μs
    1 x beforeRenderModule mod_breadcrumbs (Breadcrumbs) (704B) (0.02%)
    20μs
19 statements were executed28.51ms57.28KB
  • SELECT @@SESSION.sql_mode;269μs968B/libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php:308Copy
  • SELECT `data` FROM `tflp4_session` WHERE `session_id` = ?380μs1008BParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:250Copy
  • SELECT `session_id` FROM `tflp4_session` WHERE `session_id` = :session_id LIMIT 1375μs1.3KBParams/libraries/src/Session/MetadataManager.php:187Copy
  • INSERT INTO `tflp4_session` (`session_id`,`guest`,`time`,`userid`,`username`,`client_id`) VALUES (:session_id, :guest, :time, :user_id, :username, :client_id)6.7ms944BParams/libraries/src/Session/MetadataManager.php:260Copy
  • SELECT `extension_id` AS `id`,`element` AS `option`,`params`,`enabled` FROM `tflp4_extensions` WHERE `type` = 'component' AND `state` = 0 AND `enabled` = 1945μs1.61KB/libraries/src/Component/ComponentHelper.php:399Copy
  • SELECT `id`,`rules` FROM `tflp4_viewlevels`376μs656B/libraries/src/Access/Access.php:955Copy
  • SELECT `b`.`id` FROM `tflp4_usergroups` AS `a` LEFT JOIN `tflp4_usergroups` AS `b` ON `b`.`lft` <= `a`.`lft` AND `b`.`rgt` >= `a`.`rgt` WHERE `a`.`id` = :guest674μs1.33KBParams/libraries/src/Access/Access.php:868Copy
  • SELECT `folder` AS `type`,`element` AS `name`,`params` AS `params`,`extension_id` AS `id` FROM `tflp4_extensions` WHERE `enabled` = 1 AND `type` = 'plugin' AND `state` IN (0,1) AND `access` IN (:preparedArray1,:preparedArray2) ORDER BY `ordering`2.17ms3.98KBParams/libraries/src/Plugin/PluginHelper.php:294Copy
  • SELECT `m`.`id`,`m`.`menutype`,`m`.`title`,`m`.`alias`,`m`.`note`,`m`.`link`,`m`.`type`,`m`.`level`,`m`.`language`,`m`.`browserNav`,`m`.`access`,`m`.`params`,`m`.`home`,`m`.`img`,`m`.`template_style_id`,`m`.`component_id`,`m`.`parent_id`,`m`.`path` AS `route`,`e`.`element` AS `component` FROM `tflp4_menu` AS `m` LEFT JOIN `tflp4_extensions` AS `e` ON `m`.`component_id` = `e`.`extension_id` WHERE ( (`m`.`published` = 1 AND `m`.`parent_id` > 0 AND `m`.`client_id` = 0) AND (`m`.`publish_up` IS NULL OR `m`.`publish_up` <= :currentDate1)) AND (`m`.`publish_down` IS NULL OR `m`.`publish_down` >= :currentDate2) ORDER BY `m`.`lft`1.83ms20.8KBParams/libraries/src/Menu/SiteMenu.php:166Copy
  • SELECT * FROM `tflp4_languages` WHERE `published` = 1 ORDER BY `ordering` ASC587μs1.61KB/libraries/src/Language/LanguageHelper.php:177Copy
  • SELECT `id`,`home`,`template`,`s`.`params`,`inheritable`,`parent` FROM `tflp4_template_styles` AS `s` LEFT JOIN `tflp4_extensions` AS `e` ON `e`.`element` = `s`.`template` AND `e`.`type` = 'template' AND `e`.`client_id` = `s`.`client_id` WHERE `s`.`client_id` = 0 AND `e`.`enabled` = 1673μs832B/administrator/components/com_templates/src/Model/StyleModel.php:775Copy
  • SELECT `id`,`name`,`rules`,`parent_id` FROM `tflp4_assets` WHERE `name` IN (:preparedArray1,:preparedArray2,:preparedArray3,:preparedArray4,:preparedArray5,:preparedArray6,:preparedArray7,:preparedArray8,:preparedArray9,:preparedArray10,:preparedArray11,:preparedArray12,:preparedArray13,:preparedArray14,:preparedArray15,:preparedArray16,:preparedArray17,:preparedArray18,:preparedArray19,:preparedArray20,:preparedArray21,:preparedArray22,:preparedArray23,:preparedArray24,:preparedArray25,:preparedArray26,:preparedArray27,:preparedArray28,:preparedArray29,:preparedArray30,:preparedArray31,:preparedArray32,:preparedArray33,:preparedArray34,:preparedArray35,:preparedArray36,:preparedArray37,:preparedArray38,:preparedArray39)1.49ms7.44KBParams/libraries/src/Access/Access.php:357Copy
  • SELECT `m`.`id`,`m`.`title`,`m`.`module`,`m`.`position`,`m`.`content`,`m`.`showtitle`,`m`.`params`,`mm`.`menuid` FROM `tflp4_modules` AS `m` LEFT JOIN `tflp4_modules_menu` AS `mm` ON `mm`.`moduleid` = `m`.`id` LEFT JOIN `tflp4_extensions` AS `e` ON `e`.`element` = `m`.`module` AND `e`.`client_id` = `m`.`client_id` WHERE ( ( (`m`.`published` = 1 AND `e`.`enabled` = 1 AND `m`.`client_id` = :clientId AND `m`.`access` IN (:preparedArray1,:preparedArray2)) AND (`m`.`publish_up` IS NULL OR `m`.`publish_up` <= :publishUp)) AND (`m`.`publish_down` IS NULL OR `m`.`publish_down` >= :publishDown)) AND (`mm`.`menuid` = :itemId OR `mm`.`menuid` <= 0) ORDER BY `m`.`position`,`m`.`ordering`1.91ms2KBParams/libraries/src/Cache/Controller/CallbackController.php:51Copy
  • SELECT MONTH(`created`) AS created_month,MIN(`created`) AS created,YEAR(`created`) AS created_year FROM `tflp4_content` AS `c` WHERE `c`.`state` = 2 GROUP BY YEAR(`c`.`created`), MONTH(`c`.`created`) ORDER BY YEAR(`c`.`created`) DESC, MONTH(`c`.`created`) DESC LIMIT 10608μs640B/modules/mod_articles_archive/src/Helper/ArticlesArchiveHelper.php:69Copy
  • SELECT MAX(`tag_id`) AS `tag_id`,COUNT(*) AS `count`,MAX(`t`.`title`) AS `title`,MAX(`t`.`access`) AS `access`,MAX(`t`.`alias`) AS `alias`,MAX(`t`.`params`) AS `params`,MAX(`t`.`language`) AS `language` FROM `tflp4_contentitem_tag_map` AS `m` INNER JOIN `tflp4_ucm_content` AS `ucm` ON `m`.`content_item_id` = `ucm`.`core_content_item_id` AND `m`.`type_id` = `ucm`.`core_type_id` INNER JOIN `tflp4_categories` AS `cat` ON `ucm`.`core_catid` = `cat`.`id` INNER JOIN `tflp4_tags` AS `t` ON `tag_id` = `t`.`id` INNER JOIN `tflp4_ucm_content` AS `c` ON `m`.`core_content_id` = `c`.`core_content_id` WHERE `t`.`access` IN (:preparedArray1,:preparedArray2) AND `t`.`published` = 1 AND `cat`.`published` > 0 AND `m`.`type_alias` = `c`.`core_type_alias` AND `c`.`core_state` = 1 AND (`c`.`core_access` IN (:preparedArray3,:preparedArray4) OR `c`.`core_access` = 0) AND (`c`.`core_publish_up` IS NULL OR `c`.`core_publish_up` = :nullDate2 OR `c`.`core_publish_up` <= :nowDate2) AND (`c`.`core_publish_down` IS NULL OR `c`.`core_publish_down` = :nullDate3 OR `c`.`core_publish_down` >= :nowDate3) GROUP BY `tag_id`,`t`.`title`,`t`.`access`,`t`.`alias` ORDER BY `count` DESC LIMIT 81.91ms1.81KBParams/modules/mod_tags_popular/src/Helper/TagsPopularHelper.php:188Copy
  • SELECT `a`.`id`,`a`.`title`,`a`.`alias`,`a`.`introtext`,`a`.`fulltext`,`a`.`checked_out`,`a`.`checked_out_time`,`a`.`catid`,`a`.`created`,`a`.`created_by`,`a`.`created_by_alias`,`a`.`modified`,`a`.`modified_by`,CASE WHEN `a`.`publish_up` IS NULL THEN `a`.`created` ELSE `a`.`publish_up` END AS `publish_up`,`a`.`publish_down`,`a`.`images`,`a`.`urls`,`a`.`attribs`,`a`.`metadata`,`a`.`metakey`,`a`.`metadesc`,`a`.`access`,`a`.`hits`,`a`.`featured`,`a`.`language`,LENGTH(`a`.`fulltext`) AS `readmore`,`a`.`ordering`,`fp`.`featured_up`,`fp`.`featured_down`,CASE WHEN `c`.`published` = 2 AND `a`.`state` > 0 THEN 2 WHEN `c`.`published` != 1 THEN 0 ELSE `a`.`state` END AS `state`,`c`.`title` AS `category_title`,`c`.`path` AS `category_route`,`c`.`access` AS `category_access`,`c`.`alias` AS `category_alias`,`c`.`language` AS `category_language`,`c`.`published`,`c`.`published` AS `parents_published`,`c`.`lft`,CASE WHEN `a`.`created_by_alias` > ' ' THEN `a`.`created_by_alias` ELSE `ua`.`name` END AS `author`,`ua`.`email` AS `author_email`,`uam`.`name` AS `modified_by_name`,`parent`.`title` AS `parent_title`,`parent`.`id` AS `parent_id`,`parent`.`path` AS `parent_route`,`parent`.`alias` AS `parent_alias`,`parent`.`language` AS `parent_language` FROM `tflp4_content` AS `a` LEFT JOIN `tflp4_categories` AS `c` ON `c`.`id` = `a`.`catid` LEFT JOIN `tflp4_users` AS `ua` ON `ua`.`id` = `a`.`created_by` LEFT JOIN `tflp4_users` AS `uam` ON `uam`.`id` = `a`.`modified_by` LEFT JOIN `tflp4_categories` AS `parent` ON `parent`.`id` = `c`.`parent_id` LEFT JOIN `tflp4_content_frontpage` AS `fp` ON `fp`.`content_id` = `a`.`id` WHERE `a`.`access` IN (:preparedArray1,:preparedArray2) AND `c`.`access` IN (:preparedArray3,:preparedArray4) AND `c`.`published` = 1 AND `a`.`state` = :condition AND `a`.`catid` = :categoryId AND (`a`.`publish_up` IS NULL OR `a`.`publish_up` <= :publishUp) AND (`a`.`publish_down` IS NULL OR `a`.`publish_down` >= :publishDown) ORDER BY a.created DESC LIMIT 62.02ms6.28KBParams/libraries/src/MVC/Model/BaseDatabaseModel.php:164Copy
  • SELECT SUM(CASE WHEN `a`.`next_execution` <= :now THEN 1 ELSE 0 END) AS due_count,SUM(CASE WHEN `a`.`locked` IS NULL THEN 0 ELSE 1 END) AS locked_count FROM `tflp4_scheduler_tasks` AS `a` WHERE `a`.`state` = 1582μs2.62KBParams/administrator/components/com_scheduler/src/Model/TasksModel.php:517Copy
  • SELECT `session_id` FROM `tflp4_session` WHERE `session_id` = ?403μs1KBParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:277Copy
  • UPDATE `tflp4_session` SET `data` = ? , `time` = ? WHERE `session_id` = ?4.61ms592BParams/libraries/vendor/joomla/session/src/Handler/DatabaseHandler.php:301Copy