skip to Main Content
author
262 views
0 votes

how to echo image alt in wordpress attachment page

I have a piece of code for wordpress attachment page
$image_size = apply_filters( 'wporg_attachment_size', 'large' );

author
192 views
0 votes

Parse xml child and namespace with PHP

I need to read a specific xml child from the following xml:
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

author
390 views
0 votes

PHP gRPC ignores keepalive parameters

I put these 3 parameters:
grpc.keepalive_time_ms=7200000
grpc.keepalive_timeout_ms=200000
grpc.keepalive_permit_without_calls=1

in /etc/php/8.1/apache2/conf.d/20-grpc.ini, /etc/php/8.1/apache2/conf.d/custom-php.ini, /etc/php/8.1/cli/conf.d/20-grpc.ini and /etc/php/8.1/cli/conf.d/custom-php.ini. Then I restart webserver (whole

Back To Top
Search