[jira] [Commented] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-06-07 Thread Ammar Master (Jira)


[ 
https://issues.apache.org/jira/browse/FLINK-35371?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17853052#comment-17853052
 ] 

Ammar Master commented on FLINK-35371:
--

I will have a PR by the weekend, apologies for the delay.

> Allow the keystore and truststore type to configured for SSL
> 
>
> Key: FLINK-35371
> URL: https://issues.apache.org/jira/browse/FLINK-35371
> Project: Flink
>  Issue Type: Improvement
>  Components: Runtime / Network
>Affects Versions: 1.19.0
>Reporter: Ammar Master
>    Assignee: Ammar Master
>Priority: Minor
>  Labels: SSL
>
> Flink always creates a keystore and trustore using the [default 
> type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
>  defined in the JDK, which in most cases is JKS.
> {code}
> KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
> {code}
> We should add other configuration options to set the type explicitly to 
> support other custom formats, and match the options provided by other 
> applications by 
> [Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
>  and 
> [Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
>  already. The default would continue to be specified by the JDK.
>  
> The SSLContext for the REST API can read the configuration option directly, 
> and we need to add extra logic to the 
> [CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
>  for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-05-16 Thread Ammar Master (Jira)


[ 
https://issues.apache.org/jira/browse/FLINK-35371?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17846937#comment-17846937
 ] 

Ammar Master commented on FLINK-35371:
--

Thanks, can you assign it to me if it makes sense? I have a patch almost ready.

> Allow the keystore and truststore type to configured for SSL
> 
>
> Key: FLINK-35371
> URL: https://issues.apache.org/jira/browse/FLINK-35371
> Project: Flink
>  Issue Type: Improvement
>  Components: Runtime / Network
>Affects Versions: 1.19.0
>Reporter: Ammar Master
>Assignee: Gabor Somogyi
>Priority: Minor
>  Labels: SSL
>
> Flink always creates a keystore and trustore using the [default 
> type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
>  defined in the JDK, which in most cases is JKS.
> {code}
> KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
> {code}
> We should add other configuration options to set the type explicitly to 
> support other custom formats, and match the options provided by other 
> applications by 
> [Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
>  and 
> [Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
>  already. The default would continue to be specified by the JDK.
>  
> The SSLContext for the REST API can read the configuration option directly, 
> and we need to add extra logic to the 
> [CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
>  for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-05-15 Thread Ammar Master (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-35371?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ammar Master updated FLINK-35371:
-
Description: 
Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS.

{code}

KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());

{code}

We should add other configuration options to set the type explicitly to support 
other custom formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.

  was:
Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS. 

{{KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());}}


We should add other configuration options to set the type explicitly to support 
other custom formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.


> Allow the keystore and truststore type to configured for SSL
> 
>
> Key: FLINK-35371
> URL: https://issues.apache.org/jira/browse/FLINK-35371
> Project: Flink
>  Issue Type: Improvement
>  Components: Runtime / Network
>    Reporter: Ammar Master
>Priority: Minor
>  Labels: SSL
>
> Flink always creates a keystore and trustore using the [default 
> type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
>  defined in the JDK, which in most cases is JKS.
> {code}
> KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
> {code}
> We should add other configuration options to set the type explicitly to 
> support other custom formats, and match the options provided by other 
> applications by 
> [Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
>  and 
> [Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
>  already. The default would continue to be specified by the JDK.
>  
> The SSLContext for the REST API can read the configuration option directly, 
> and we need to add extra logic to the 
> [CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
>  for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-05-15 Thread Ammar Master (Jira)


 [ 
https://issues.apache.org/jira/browse/FLINK-35371?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ammar Master updated FLINK-35371:
-
Description: 
Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS. 

{{KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());}}


We should add other configuration options to set the type explicitly to support 
other custom formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.

  was:
Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS. We should add other 
configuration options to set the type explicitly to support other custom 
formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.


> Allow the keystore and truststore type to configured for SSL
> 
>
> Key: FLINK-35371
> URL: https://issues.apache.org/jira/browse/FLINK-35371
> Project: Flink
>  Issue Type: Improvement
>  Components: Runtime / Network
>    Reporter: Ammar Master
>Priority: Minor
>  Labels: SSL
>
> Flink always creates a keystore and trustore using the [default 
> type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
>  defined in the JDK, which in most cases is JKS. 
> {{KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());}}
> We should add other configuration options to set the type explicitly to 
> support other custom formats, and match the options provided by other 
> applications by 
> [Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
>  and 
> [Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
>  already. The default would continue to be specified by the JDK.
>  
> The SSLContext for the REST API can read the configuration option directly, 
> and we need to add extra logic to the 
> [CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
>  for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-05-15 Thread Ammar Master (Jira)
Ammar Master created FLINK-35371:


 Summary: Allow the keystore and truststore type to configured for 
SSL
 Key: FLINK-35371
 URL: https://issues.apache.org/jira/browse/FLINK-35371
 Project: Flink
  Issue Type: Improvement
  Components: Runtime / Network
Reporter: Ammar Master


Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS. We should add other 
configuration options to set the type explicitly to support other custom 
formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (FLINK-35371) Allow the keystore and truststore type to configured for SSL

2024-05-15 Thread Ammar Master (Jira)
Ammar Master created FLINK-35371:


 Summary: Allow the keystore and truststore type to configured for 
SSL
 Key: FLINK-35371
 URL: https://issues.apache.org/jira/browse/FLINK-35371
 Project: Flink
  Issue Type: Improvement
  Components: Runtime / Network
Reporter: Ammar Master


Flink always creates a keystore and trustore using the [default 
type|https://github.com/apache/flink/blob/b87ead743dca161cdae8a1fef761954d206b81fb/flink-runtime/src/main/java/org/apache/flink/runtime/net/SSLUtils.java#L236]
 defined in the JDK, which in most cases is JKS. We should add other 
configuration options to set the type explicitly to support other custom 
formats, and match the options provided by other applications by 
[Spark|https://spark.apache.org/docs/latest/security.html#:~:text=the%20key%20store.-,%24%7Bns%7D.keyStoreType,-JKS]
 and 
[Kafka|https://kafka.apache.org/documentation/#:~:text=per%2Dbroker-,ssl.keystore.type,-The%20file%20format]
 already. The default would continue to be specified by the JDK.

 

The SSLContext for the REST API can read the configuration option directly, and 
we need to add extra logic to the 
[CustomSSLEngineProvider|https://github.com/apache/flink/blob/master/flink-rpc/flink-rpc-akka/src/main/java/org/apache/flink/runtime/rpc/pekko/CustomSSLEngineProvider.java]
 for Pekko.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [tesseract-ocr] Cannt extract number from image screenshot

2024-04-29 Thread Master - Event

i try invert color, white to black, try enchance image sharpness, 
contracst,  convert color grb, gray, config pytesseract lang, page 
segmentation method,  OCR engine mode but it not work :(
Vào lúc 21:19:34 UTC+2 ngày Thứ Hai, 29 tháng 4, 2024, zdenop đã viết:

> First, show us that you tried everything from the documentation. 
>
> Zdenko
>
>
> po 29. 4. 2024 o 21:16 Master - Event  napísal(a):
>
>> i try  extract number from screenshot but i cannt. someone help me why.
>> my code ```
>> img_data = base64.b64decode(screenshot)
>> image_pil = Image.open(BytesIO(img_data))
>> box = (0, 222, 80, 240)
>> cropped_img = image_pil.crop(box)
>> image_cv2 = np.array(cropped_img)
>> image_cv2 = cv2.cvtColor(image_cv2, cv2.COLOR_RGB2BGR)
>> gray_image = cv2.cvtColor(image_cv2, cv2.COLOR_BGR2GRAY)
>> resized_image = cv2.resize(gray_image, None, fx=3, fy=3, interpolation
>> =cv2.INTER_CUBIC)
>> cv2.imshow('__', resized_image)
>> cv2.waitKey(0)
>> pytesseract.pytesseract.tesseract_cmd = r'C:\Program 
>> Files\Tesseract-OCR\tesseract.exe'
>> extracted_text = pytesseract.image_to_string(resized_image, config="-c 
>> tessedit_char_whitelist=0123456789,./")
>> ```
>> [image: Screenshot 2024-04-29 202702.png]
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "tesseract-ocr" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tesseract-oc...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tesseract-ocr/2fdb-4bd8-47de-b905-467a863f53adn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tesseract-ocr/2fdb-4bd8-47de-b905-467a863f53adn%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/c673bd40-1078-4885-a06e-8cc07eb3ca75n%40googlegroups.com.


[tesseract-ocr] Cannt extract number from image screenshot

2024-04-29 Thread Master - Event
i try  extract number from screenshot but i cannt. someone help me why.
my code ```
img_data = base64.b64decode(screenshot)
image_pil = Image.open(BytesIO(img_data))
box = (0, 222, 80, 240)
cropped_img = image_pil.crop(box)
image_cv2 = np.array(cropped_img)
image_cv2 = cv2.cvtColor(image_cv2, cv2.COLOR_RGB2BGR)
gray_image = cv2.cvtColor(image_cv2, cv2.COLOR_BGR2GRAY)
resized_image = cv2.resize(gray_image, None, fx=3, fy=3, interpolation
=cv2.INTER_CUBIC)
cv2.imshow('__', resized_image)
cv2.waitKey(0)
pytesseract.pytesseract.tesseract_cmd = r'C:\Program 
Files\Tesseract-OCR\tesseract.exe'
extracted_text = pytesseract.image_to_string(resized_image, config="-c 
tessedit_char_whitelist=0123456789,./")
```
[image: Screenshot 2024-04-29 202702.png]

-- 
You received this message because you are subscribed to the Google Groups 
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tesseract-ocr+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tesseract-ocr/2fdb-4bd8-47de-b905-467a863f53adn%40googlegroups.com.


SVN Update issue

2024-02-01 Thread Master Savunma şu grup üzerinden : TortoiseSVN
Hello,

After the change made on a file via svnserver, another user can see the 
current version by updating it, but another user in the same department 
cannot see it.

Thank you
Good work

-- 
You received this message because you are subscribed to the Google Groups 
"TortoiseSVN" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tortoisesvn+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tortoisesvn/f516bd34-7243-4f14-aaed-6d2e03b894a2n%40googlegroups.com.


SVN Update issue

2024-02-01 Thread Master Savunma şu grup üzerinden : TortoiseSVN-dev
Hello,

After the change made on a file via svnserver, another user can see the 
current version by updating it, but another user in the same department 
cannot see it.

Thank you
Good work

-- 
You received this message because you are subscribed to the Google Groups 
"TortoiseSVN-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tortoisesvn-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tortoisesvn-dev/005193e5-3830-44df-970a-ec5d0d04c41en%40googlegroups.com.


[Koha] Koha login error

2024-01-31 Thread MASTeR Library
Dear sri, koha when logging in the following error is coming what should be
done to fix this.
n error has occurred!*Error 500*This message may have been caused by any of
the following reasons:

   - You made use of an external link to an item that is no longer available
   - You followed an outdated link e.g. from a search engine or a bookmark
   - You tried to access a page that needs authentication
   - An internal link in the client is broken and the page does not exist

What's next?

   - Use top menu bar to navigate to another part of Koha.
   - To report a broken link or any other issue, please contact the Koha
   administrator. Send email 
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[OpenAFS-devel] Re: Requesting greater performance

2024-01-08 Thread stone cutter master
Hi Everyone,

I just wanted to check in again on this request.

I received a private reply from a salesman for a similar product, but no thing, 
reply from any OpenAFS dev.

Are these or other patches to increase performance going to be shipped in the 
next version of OpenAFS? Is there evem going to be a next version?

Thank again,
Mark

On Monday, October 9th, 2023 at 4:01 PM, stone cutter master 
 wrote:

> Hello Developers,
>
> Firstly, thanks for your ongoing work on OpenAFS!
>
> I'm Mark, a researcher currently evaluating it for a project I'm working on. 
> I love several features like the online backup volumes and transparent volume 
> moves -- very impressive and rather attractive to admins.
>
> However while OpenAFS seems to have some great featuers, the performance of 
> it seems to be sorely lacking compared to peer products (like NFS, Ceph, 
> Gluster). It's becoming harder to take performance of 100MB/s [+/-, usually 
> -] seriously in the days of commodity 10Gb networking.
>
> I noticed that several patches on gerrit and old workshop presentations 
> (sendmmsg, recvmmsg, maybe tcp-oob) exist which if implemented would help 
> OpenAFS gain both performance and relevance in the network filesystem space. 
> But it seems no traction has taken place to implement any of these despite 
> being submitted years(!?) ago.
>
> I realize that it's important to maintain compatibility with the newest 
> operating systems, but unless you put more effort towards keeping up with 
> modern performance, more sites will drop OpenAFS and fewer new projects like 
> mine will consider it.
>
> So, can some of the performance patches in gerrit please be merged into 
> master for a production release of OpenAFS within the short term.
>
> Thanks for reading,Mark
>
> Sent with [Proton Mail](https://proton.me/) secure email.

[OpenAFS-devel] Requesting greater performance

2023-10-09 Thread stone cutter master
Hello Developers,

Firstly, thanks for your ongoing work on OpenAFS!

I'm Mark, a researcher currently evaluating it for a project I'm working on. I 
love several features like the online backup volumes and transparent volume 
moves -- very impressive and rather attractive to admins.

However while OpenAFS seems to have some great featuers, the performance of it 
seems to be sorely lacking compared to peer products (like NFS, Ceph, Gluster). 
It's becoming harder to take performance of 100MB/s [+/-, usually -] seriously 
in the days of commodity 10Gb networking.

I noticed that several patches on gerrit and old workshop presentations 
(sendmmsg, recvmmsg, maybe tcp-oob) exist which if implemented would help 
OpenAFS gain both performance and relevance in the network filesystem space. 
But it seems no traction has taken place to implement any of these despite 
being submitted years(!?) ago.

I realize that it's important to maintain compatibility with the newest 
operating systems, but unless you put more effort towards keeping up with 
modern performance, more sites will drop OpenAFS and fewer new projects like 
mine will consider it.

So, can some of the performance patches in gerrit please be merged into master 
for a production release of OpenAFS within the short term.

Thanks for reading,Mark

Sent with [Proton Mail](https://proton.me/) secure email.

[Csgo_servers] Release Date CS2 dedicated server

2023-07-28 Thread s-master
When will be Counter-Strike 2 dedicated server for testing or public be 
available?

cheers s-master

___
To unsubscribe, edit your list preferences, or view the list archives,
please visit:
https://list.valvesoftware.com/

Re: [Koha] SQL report for URL

2023-07-20 Thread MASTeR Library
Visit item type wise collection SQL report
https://libpowertech.blogspot.com/2019/05/department-wise-number-of-books-in-your.html?m=1

On Thu, 20 Jul 2023, 2:32 pm Dr. Prajeesh Bhaskaran, 
wrote:

> Hi
> Please, can anyone help me to create a SQL report for getting the URL of
> all the items based on the collections in Koha.
>
> --
> With Regards
> Prajeesh Bhaskaran
> Reference Assistant (Library)
> Mahatma Gandhi University, Kerala, India.
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] hourly fines not calculating

2023-07-05 Thread MASTeR Library
Fine and rules/"overdue fines Cap", enter your maximum penalty calculation
amount and replace 0. For example, change 0 to 6000, which is the maximum
penalty amount to calculate.

On Wed, 5 Jul 2023, 1:28 am Hector Gonzalez Jaime,  wrote:

> Tom, you should check your circulation rules, and verify "overdue fines
> cap" is not zero (the default), as it would limit your fines to nothing.
>
> Make sure you have "CalculateFinesOnReturn" on, and "FinesMode" set to
> "Calculate and Charge"
>
> On 7/4/23 10:24, Tom Obrien wrote:
> > Hi all,
> > I installed koha 22 on ubuntu 22. Everything works except that Koha is
> not
> > calculating hourly fines. The long loan is working very well.
> > Kindly assist.
> > Tom
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
> --
> Hector Gonzalez
> ca...@genac.org
>
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: Is there a particular type of elitism that assert 44.1kHz is the best kind of sample rate

2023-07-05 Thread Goran Finnberg master...@telia.com
Andy Farnell:

>I've heard a few bits of apocryphal folklore - and I briefly met some
>of the CD team while in Eindhoven NL at Philips, all of whom denied
>these popular myths - but here goes;
>
>44kHz was a compromise to fit a typical album of about 70 mins,
>reliably (with ECC etc) onto the available physical medium.

Straight from the horses mouth, Kees Schouhamer Immink:

https://www.researchgate.net/publication/294484774_Compact_disc_story




---

Best regards,

Goran Finnberg
The Mastering Room AB
Goteborg
Sweden

E-mail: master...@telia.com

Learn from the mistakes of others, you can never live long enough to
make them all yourself.    -   John Luther

(\__/)
(='.'=)
(")_(") Ranglet, Aron, VovVov, Nero & Smurfen:RIP


Re: [Koha] updating database Structure Error

2023-06-21 Thread MASTeR Library
Glad to hear it! Thank u.

On Wed, 21 Jun 2023, 1:14 pm Mr. Sitali C. S.,  wrote:

> Thanks a lot. It has worked like a charm. After adding the lines all I
> needed to do was to restart.
> Thank a lot for pointing me in the right direction. Much appreciated
>
> On Wed, 21 Jun 2023 at 07:38, MASTeR Library 
> wrote:
>
>> Hi!
>>
>> I added the lines:
>>  
>>  __ENCRYPTION_KEY__
>>
>> The update went through without a problem.
>>
>> https://github.com/Koha-Community/Koha/blob/master/etc/koha-conf.xml
>>
>> Good Luck!
>>
>> On Wed, 21 Jun 2023, 1:04 am Mr. Sitali C. S., 
>> wrote:
>>
>>> Greetings,
>>>
>>> I need help with the following error;
>>>
>>>- Upgrade to 22.12.00.041 [21:28:28]: Bug 30649 - Increase the vendor
>>>EDI account password field to 256 characters
>>>ERROR: Exception 'Koha::Exceptions::MissingParameter' thrown 'No
>>>encryption_key in koha-conf.xml'
>>>
>>> I installed Koha using the following;
>>>
>>> https://wiki.koha-community.org/wiki/Koha_on_Debian
>>> using ubuntu 22.04
>>>
>>> Thank you
>>> --
>>> Sitali Chrispin Simasiku,
>>> P. O. Box 660193,
>>> Monze,
>>> ZAMBIA.
>>>
>>> Mobile: +26 0979 869471
>>> +26 0966 869471
>>> SKYPE: Libsitali
>>> ___
>>>
>>> Koha mailing list  http://koha-community.org
>>> Koha@lists.katipo.co.nz
>>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>>>
>>
>
> --
> Sitali Chrispin Simasiku,
> P. O. Box 660193,
> Monze,
> ZAMBIA.
>
> Mobile: +26 0979 869471
> +26 0966 869471
> SKYPE: Libsitali
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] updating database Structure Error

2023-06-20 Thread MASTeR Library
Hi!

I added the lines:
 
 __ENCRYPTION_KEY__

The update went through without a problem.

https://github.com/Koha-Community/Koha/blob/master/etc/koha-conf.xml

Good Luck!

On Wed, 21 Jun 2023, 1:04 am Mr. Sitali C. S.,  wrote:

> Greetings,
>
> I need help with the following error;
>
>- Upgrade to 22.12.00.041 [21:28:28]: Bug 30649 - Increase the vendor
>EDI account password field to 256 characters
>ERROR: Exception 'Koha::Exceptions::MissingParameter' thrown 'No
>encryption_key in koha-conf.xml'
>
> I installed Koha using the following;
>
> https://wiki.koha-community.org/wiki/Koha_on_Debian
> using ubuntu 22.04
>
> Thank you
> --
> Sitali Chrispin Simasiku,
> P. O. Box 660193,
> Monze,
> ZAMBIA.
>
> Mobile: +26 0979 869471
> +26 0966 869471
> SKYPE: Libsitali
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Local covers and the Coverflow plugin

2023-06-20 Thread MASTeR Library
Copy and paste the above SQL code.
Save the report follow error,
*The following error was encountered:*
The database returned the following error:
Table 'koha_library.biblioimages' doesn't exist
Please check the log for further details.

On Tue, 20 Jun 2023, 1:09 pm libr...@ssst.edu.ba, 
wrote:

> Hi Alvaro,
>
> What do you mean by discard items with no covers? I don’t want to discard
> them; I want them to use the cover I upload for those records that don’t
> have Amazon covers (mostly because they are titles published in my country
> and are not available via big distributors). Or is that not what “discard”
> means in this context?
>
> Best regards
>
> Aida Đikić
>
>
> From: Alvaro Cornejo 
> Sent: Monday, June 19, 2023 4:34 PM
> To: libr...@ssst.edu.ba
> Cc: koha@lists.katipo.co.nz
> Subject: Re: [Koha] Local covers and the Coverflow plugin
>
> Hi
>
> You need to "discard" items with no covers from your query.
>
> We use this:
>
> SELECT DISTINCT biblio.title, biblio.biblionumber, c.imagenumber AS
> localcover
> FROM items i
> LEFT JOIN biblioitems USING (biblioitemnumber)
> LEFT JOIN biblio ON (i.biblionumber=biblio.biblionumber)
> LEFT JOIN biblioimages c ON (i.biblionumber=c.biblionumber)
>   WHERE DATE_SUB(CURDATE(),INTERVAL 30 DAY) <= i.dateaccessioned AND
> biblioitems.isbn IS NOT NULL  AND c.imagenumber != ''
>   ORDER BY rand()
> LIMIT  50
>
> Hope helps
>
> Regards
>
> Alvaro
>
>
>
> ||
> [
> https://ci3.googleusercontent.com/mail-sig/AIorK4zO0f8Z21m2X0jK3RWGktD8bapLQbsF7Zq7ukeIuapEB3QMlgOXKzxbFPpUQzsex8cwRRihwVw]
> Stay safe / Cuídate/  Reste sécurisé
> 7 Switch off as you go / Apaga lo que no usas /  Débranchez au fur et à
> mesure.
>  q Recycle always / Recicla siempre / Recyclez toujours
>  P Print only if absolutely necessary / Imprime solo si es necesario /
> Imprimez seulement si nécessaire
>
>
> Le lun. 19 juin 2023 à 02:16, libr...@ssst.edu.ba libr...@ssst.edu.ba> mailto:libr...@ssst.edu.ba>> a
> écrit :
> Hello Alvaro,
>
> I don't know how to do that, since I never even touched SQL before. I can
> copy and paste code from the SQL list, but don’t really understand what it
> does and how to change it to do what I need.
>
> I just checked the report, it is public. The code I'm using is from the
> plugin configuration:
>
> SELECT b.biblionumber, SUBSTRING_INDEX(m.isbn, ' ', 1) AS isbn, b.title
>   FROM items i
>   LEFT JOIN biblioitems m USING (biblioitemnumber)
>   LEFT JOIN biblio b ON (i.biblionumber=b.biblionumber)
>   WHERE DATE_SUB(CURDATE(),INTERVAL 30 DAY) <= i.dateaccessioned AND
> m.isbn IS NOT NULL AND m.isbn != ''
>   GROUP BY biblionumber
>   HAVING isbn != ""
>   ORDER BY rand()
>   LIMIT 30
>
> The instructions then go on to say:
>
> Note: You can add an additional column 'localcover' - this should be blank
> if the biblio doesn't have a localcover and can contain any other data if
> it does. If this column is populated a local cover will be used. Example
> below:
>
> SELECT DISTINCT biblio.title, biblio.biblionumber,
> SUBSTRING_INDEX(biblioitems.isbn, ' ', 1) AS isbn, c.imagenumber AS
> localcover
> FROM items
> LEFT JOIN biblioitems USING (biblioitemnumber)
> LEFT JOIN biblio ON (items.biblionumber=biblio.biblionumber)
> LEFT JOIN cover_images c ON (items.biblionumber=c.biblionumber)
> WHERE biblioitems.isbn IS NOT NULL AND biblioitems.isbn !=''
> ORDER BY RAND()
> LIMIT 15;
>
>
> But when I tried replacing the first code with the second, I didn't get
> any results. Right now I'm back to the original code, and have turned the
> local covers option off, so I have several "No image available" images.
> Where do I change what to get local covers?
>
> Best regards
>
> Aida Đikić
>
>
> From: Alvaro Cornejo  cornejo.alv...@gmail.com>>
> Sent: Friday, June 16, 2023 4:27 PM
> To: libr...@ssst.edu.ba
> Cc: koha@lists.katipo.co.nz
> Subject: Re: [Koha] Local covers and the Coverflow plugin
>
> Hi Aida
>
> You only need to change/edit the report that pulls information for
> coverflow. Also remember to define the report as public.
>
> Regards
>
> Alvaro
>
>
> ||
>  Stay safe / Cuídate/  Reste sécurisé
> • Switch off as you go / Apaga lo que no usas /  Débranchez au fur et à
> mesure.
>  • Recycle always / Recicla siempre / Recyclez toujours
>  • Print only if absolutely necessary / Imprime solo si es necesario /
> Imprimez seulement si nécessaire
>
>
> Le ven. 16 juin 2023 à 03:41, mailto:libr...@ssst.edu.ba libr...@ssst.edu.ba> > a écrit :
> Hello again,
>
> I'm trying to find a way to have local covers show in the Coverflow plugin
> on the OPAC page for titles not added via Z39.50.
>
> I had originally set it up using the first example in the configuration
> (items added in the last 30 days), but 

Re: [Koha] Koha upgrade 22.11.6 to 23.5.00 upgrade-schema error

2023-06-07 Thread MASTeR Library
It working,
Thanks you Jonathan and all supports .

On Wed, 7 Jun 2023, 12:48 pm Jonathan Druart, <
jonathan.dru...@bugs.koha-community.org> wrote:

> Hey, put a proper key there! Not "__ENCRYPTION_KEY__"!
> It can be generated using the following command `pwgen 32`
>
> Le mer. 7 juin 2023 à 07:41, Сычев Игорь Алексеевич  a écrit :
>
> > Hi!
> >
> > I added the lines:
> >  
> >  __ENCRYPTION_KEY__
> >
> > The update went through without a problem.
> >
> > https://github.com/Koha-Community/Koha/blob/master/etc/koha-conf.xml
> >
> > Good Luck!
> >
> > Igor A. Sychev
> > Tomsk Polytechnic University
> > https://lib.tpu.ru
> >
> >
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> >
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha upgrade 22.11.6 to 23.5.00 upgrade-schema error

2023-06-06 Thread MASTeR Library
Hi All

Just upgraded tonight from Koha 212.11.06.000 to 23.05.00
That all went fine.

The About Koha page now says:
"Warning:


   - Upgrade to 22.12.00.041 [09:43:21]: Bug 30649 - Increase the vendor
   EDI account password field to 256 characters
   ERROR: Exception 'Koha::Exceptions::MissingParameter' thrown 'No
   encryption_key in koha-conf.xml'

Please help.

 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha Fines script not running.

2023-06-05 Thread MASTeR Library
Hi
all jobs should always be run as your koha user. You can use 'sudo
koha-shell instance' to switch to that user and then try to run the job
again.

Some other things to make sure of:

system preference finesmode is set to "Calculate and charge"
today is not a holiday in the calendar of the library
the maxfine setting in circulation rules is > 0
Hope this helps,

On Mon, 5 Jun 2023, 7:04 pm Rupinder Singh,  wrote:

> HI,
> I configured my Circulation and Fine rules, and also did the settings in
> koha administration for fines.
> But when I tried to run my cronjob manually, it gave following error.
>
> /bin/sh: 1: misc/cronjobs/fines.pl: not found
>
>
> I figured out my fines.pl file is located in "/usr/share/koha/bin/cronjob"
> directory. I tried running it from there, and the terminal threw the
> following error.
>
> Can't locate Koha/Script.pm in @INC (you may need to install the
> Koha::Script module) (@INC contains: /usr/share/webmin /etc/perl
> /usr/local/lib/x86_64-linux-gnu/perl/5.34.0
> /usr/local/share/perl/5.34.0 /usr/lib/x86_64-linux-gnu/perl5/5.34
> /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base
> /usr/lib/x86_64-linux-gnu/perl/5.34 /usr/share/perl/5.34
> /usr/local/lib/site_perl) at /usr/share/koha/bin/cronjobs/fines.pl
> line 33.
> BEGIN failed--compilation aborted at
> /usr/share/koha/bin/cronjobs/fines.pl line 33.
>
>
> I tried installing "Koha::Scrip" from CPAN modules but couldn't find
> anything. However, I was able to install another Cpan package. By the name
> "Koha::Contrib::Tamil", but this was of no help too.
>
> Please suggest. How do I configure my Ubutnu 22.04 server to automatically
> run these fines.pl script. Am i doing something wrong?
>
> Thank you
> Rupinder Singh
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 23.05 released

2023-05-31 Thread MASTeR Library
Super !!!  to the entire Koha Team!

On Thu, 1 Jun 2023, 2:14 am Kelly McElligott, 
wrote:

> Yahoo!!! Congrats to the entire Koha Team!
>
>
> Kelly McElligott, MLIS
> (she/her)
> Library Accounts Coordinator
> ByWater Solutions 
> Koha   |  Aspen Discovery
> 
> Phone:(888)900-8944 <(888)%20900-8944>
> Follow us:
> 
> 
> 
> 
>
> Currently Reading
> <
> https://www.goodreads.com/user/email_signature_destination/2645311?utm_medium=reading_link_source=email_signature
> >
> [image: Book Cover]
> <
> https://www.goodreads.com/user/email_signature_destination/2645311?utm_medium=cover_source=email_signature
> >
> [image: Goodreads Logo]
>  >Get
> your own email signature
> <
> https://www.goodreads.com/user/email_signature_instructions?utm_medium=gyo_link_source=email_signature
> >
>
>
> On Wed, May 31, 2023 at 3:50 PM Tomas Cohen Arazi 
> wrote:
>
> > The Koha community is proud to announce the release of Koha 23.05.00.
> >
> > Koha 23.05.00 is a major release, that comes with many new features.
> >
> > It includes 26 new features, 145 enhancements, 701 bugfixes.
> >
> > The full release notes are available here:
> > https://koha-community.org/koha-23-05-released/
> >
> > Debian packages should be available soon
> >
> > Best regards
> >
> > --
> > Tomás Cohen Arazi
> > Theke Solutions (http://theke.io)
> > ✆ +54 9351 3513384
> > GPG: B2F3C15F
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> >
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 22.11.5v Fine amount did not Calculate

2023-05-30 Thread MASTeR Library
Katrin Fischer sir,

koha until 22.11.3 Fine calculation was calculated perfectly. But fine
doesn't calculate since upgrade Koha 22.11.5 and 22.11.6
My Koha failed to calculate fines despite setting all preferences
correctly. I get the following errors when running the ./fines.pl manually.

Can't locate Koha.pm in @INC (you may need to install the Koha module)
(@INC con tains: /etc/perl /usr/local/lib/perl/5.18.2
/usr/local/share/perl/5.18.2 /usr/li b/perl5 /usr/share/perl5
/usr/lib/perl/5.18 /usr/share/perl/5.18 /usr/local/lib/ site_perl .) at
/etc/perl/C4/Context.pm line 115.
BEGIN failed--compilation aborted at /etc/perl/C4/Context.pm line 115.
Compilation failed in require at ./fines.pl line 33.
BEGIN failed--compilation aborted at ./fines.pl line 33.

Please help and reply.

On Tue, 30 May 2023, 4:24 pm Katrin Fischer, 
wrote:

> Hi,
>
> all jobs should always be run as your koha user. You can use 'sudo
> koha-shell instance' to switch to that user and then try to run the job
> again.
>
> Some other things to make sure of:
>
>- system preference finesmode is set to "Calculate and charge"
>- today is not a holiday in the calendar of the library
>- the maxfine setting in circulation rules is > 0
>
> Hope this helps,
>
> Katrin
> On 30.05.23 10:32, MASTeR Library wrote:
>
> Katrin Fischer sir,
> I have Enclosed fines.pl error Screen link.
> https://i.ibb.co/K2Qzy83/fines-error.png
>
> On Tue, May 30, 2023 at 12:39 PM MASTeR Library <
> mamcet.librar...@gmail.com> wrote:
>
>> Katrin Fischer
>> Thank you for your reply,
>> I have run the fines.pl, following error?
>> Use of uninitialized value in string eq at
>> /usr/share/koha/lib/C4/Overdues.pm line 612.
>>
>> On Mon, May 29, 2023 at 5:44 PM Katrin Fischer 
>> wrote:
>>
>>> Hi,
>>>
>>> the error you posted looks like it's from the overdues.pl script. It
>>> complains about a missing letter ODUE. So you might want to check your
>>> notices and overdue notice triggers. But this won't affect fine
>>> calculation.
>>>
>>> Fines are calculated independently of the letters via the fines.pl
>>> cronjob.
>>>
>>> If you run fines.pl, is there any error?
>>>
>>> Fines not calculating can have a lot of reasons. Are you using a
>>> CurrencyFormat other than US?
>>>
>>> Hope this helps,
>>>
>>> Katrin
>>>
>>> On 20.05.23 15:25, MASTeR Library wrote:
>>> > Hi, friends using koha 22.11.5 version please reply to me with the
>>> above
>>> > question.
>>> >
>>> > On Sat, May 20, 2023 at 10:39 AM MASTeR Library <
>>> mamcet.librar...@gmail.com>
>>> > wrote:
>>> >
>>> >> Hi Koha Community Members,
>>> >> I just updated my Koha from 22.11.3 to 22.11.5 when I upgraded the
>>> server
>>> >> from Ubuntu MATE 22.11. patrons' account book overdrive fine is not
>>> >> calculated, only the date shown on the red colour fine amount is not
>>> >> displayed.
>>> >>
>>> >> I try to manually fine script commands. cd /etc/cron.daily/
>>> ./koha-common
>>> >>
>>> >> Get the following error/warning:
>>> >>
>>> >> No circulation ODUE letter transported by print at
>>> >> /usr/share/koha/lib/C4/Letters.pm line 585.
>>> >>
>>> >> Use of uninitialized value in string eq at
>>> >> /usr/share/koha/lib/C4/Overdues.pm line 612.
>>> >>
>>> >> I Enclosed the Error Screen message:
>>> https://i.ibb.co/W5DkRbk/Fine.png
>>> >>
>>> >> Can anybody tell me what this means? Is it a big problem?
>>> >>
>>> >>
>>> >> --
>>> >>   Thanking you..
>>> >>
>>> >> Librarian,
>>> >> MAMCET <http://mamcet.com/>
>>> >> Trichy-Chennai Trunk Road,
>>> >> Siruganur, Tiruchirappalli-621 105.
>>> >>
>>> >>
>>> ___
>>>
>>> Koha mailing list  http://koha-community.org
>>> Koha@lists.katipo.co.nz
>>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>>>
>>
>>
>> --
>>  Thanking you..
>>
>> Librarian,
>> MAMCET <http://mamcet.com/>
>> Trichy-Chennai Trunk Road,
>> Siruganur, Tiruchirappalli-621 105.
>>
>>
>
> --
>  Thanking you..
>
> Librarian,
> MAMCET <http://mamcet.com/>
> Trichy-Chennai Trunk Road,
> Siruganur, Tiruchirappalli-621 105.
>
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 22.11.5v Fine amount did not Calculate

2023-05-30 Thread MASTeR Library
Katrin Fischer sir,
I have Enclosed fines.pl error Screen link.
https://i.ibb.co/K2Qzy83/fines-error.png

On Tue, May 30, 2023 at 12:39 PM MASTeR Library 
wrote:

> Katrin Fischer
> Thank you for your reply,
> I have run the fines.pl, following error?
> Use of uninitialized value in string eq at
> /usr/share/koha/lib/C4/Overdues.pm line 612.
>
> On Mon, May 29, 2023 at 5:44 PM Katrin Fischer 
> wrote:
>
>> Hi,
>>
>> the error you posted looks like it's from the overdues.pl script. It
>> complains about a missing letter ODUE. So you might want to check your
>> notices and overdue notice triggers. But this won't affect fine
>> calculation.
>>
>> Fines are calculated independently of the letters via the fines.pl
>> cronjob.
>>
>> If you run fines.pl, is there any error?
>>
>> Fines not calculating can have a lot of reasons. Are you using a
>> CurrencyFormat other than US?
>>
>> Hope this helps,
>>
>> Katrin
>>
>> On 20.05.23 15:25, MASTeR Library wrote:
>> > Hi, friends using koha 22.11.5 version please reply to me with the above
>> > question.
>> >
>> > On Sat, May 20, 2023 at 10:39 AM MASTeR Library <
>> mamcet.librar...@gmail.com>
>> > wrote:
>> >
>> >> Hi Koha Community Members,
>> >> I just updated my Koha from 22.11.3 to 22.11.5 when I upgraded the
>> server
>> >> from Ubuntu MATE 22.11. patrons' account book overdrive fine is not
>> >> calculated, only the date shown on the red colour fine amount is not
>> >> displayed.
>> >>
>> >> I try to manually fine script commands. cd /etc/cron.daily/
>> ./koha-common
>> >>
>> >> Get the following error/warning:
>> >>
>> >> No circulation ODUE letter transported by print at
>> >> /usr/share/koha/lib/C4/Letters.pm line 585.
>> >>
>> >> Use of uninitialized value in string eq at
>> >> /usr/share/koha/lib/C4/Overdues.pm line 612.
>> >>
>> >> I Enclosed the Error Screen message: https://i.ibb.co/W5DkRbk/Fine.png
>> >>
>> >> Can anybody tell me what this means? Is it a big problem?
>> >>
>> >>
>> >> --
>> >>   Thanking you..
>> >>
>> >> Librarian,
>> >> MAMCET <http://mamcet.com/>
>> >> Trichy-Chennai Trunk Road,
>> >> Siruganur, Tiruchirappalli-621 105.
>> >>
>> >>
>> ___
>>
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>>
>
>
> --
>  Thanking you..
>
> Librarian,
> MAMCET <http://mamcet.com/>
> Trichy-Chennai Trunk Road,
> Siruganur, Tiruchirappalli-621 105.
>
>

-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 22.11.5v Fine amount did not Calculate

2023-05-30 Thread MASTeR Library
Katrin Fischer
Thank you for your reply,
I have run the fines.pl, following error?
Use of uninitialized value in string eq at
/usr/share/koha/lib/C4/Overdues.pm line 612.

On Mon, May 29, 2023 at 5:44 PM Katrin Fischer 
wrote:

> Hi,
>
> the error you posted looks like it's from the overdues.pl script. It
> complains about a missing letter ODUE. So you might want to check your
> notices and overdue notice triggers. But this won't affect fine
> calculation.
>
> Fines are calculated independently of the letters via the fines.pl
> cronjob.
>
> If you run fines.pl, is there any error?
>
> Fines not calculating can have a lot of reasons. Are you using a
> CurrencyFormat other than US?
>
> Hope this helps,
>
> Katrin
>
> On 20.05.23 15:25, MASTeR Library wrote:
> > Hi, friends using koha 22.11.5 version please reply to me with the above
> > question.
> >
> > On Sat, May 20, 2023 at 10:39 AM MASTeR Library <
> mamcet.librar...@gmail.com>
> > wrote:
> >
> >> Hi Koha Community Members,
> >> I just updated my Koha from 22.11.3 to 22.11.5 when I upgraded the
> server
> >> from Ubuntu MATE 22.11. patrons' account book overdrive fine is not
> >> calculated, only the date shown on the red colour fine amount is not
> >> displayed.
> >>
> >> I try to manually fine script commands. cd /etc/cron.daily/
> ./koha-common
> >>
> >> Get the following error/warning:
> >>
> >> No circulation ODUE letter transported by print at
> >> /usr/share/koha/lib/C4/Letters.pm line 585.
> >>
> >> Use of uninitialized value in string eq at
> >> /usr/share/koha/lib/C4/Overdues.pm line 612.
> >>
> >> I Enclosed the Error Screen message: https://i.ibb.co/W5DkRbk/Fine.png
> >>
> >> Can anybody tell me what this means? Is it a big problem?
> >>
> >>
> >> --
> >>   Thanking you..
> >>
> >> Librarian,
> >> MAMCET <http://mamcet.com/>
> >> Trichy-Chennai Trunk Road,
> >> Siruganur, Tiruchirappalli-621 105.
> >>
> >>
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 22.11.5v Fine amount did not Calculate

2023-05-20 Thread MASTeR Library
Hi, friends using koha 22.11.5 version please reply to me with the above
question.

On Sat, May 20, 2023 at 10:39 AM MASTeR Library 
wrote:

> Hi Koha Community Members,
> I just updated my Koha from 22.11.3 to 22.11.5 when I upgraded the server
> from Ubuntu MATE 22.11. patrons' account book overdrive fine is not
> calculated, only the date shown on the red colour fine amount is not
> displayed.
>
> I try to manually fine script commands. cd /etc/cron.daily/ ./koha-common
>
> Get the following error/warning:
>
> No circulation ODUE letter transported by print at
> /usr/share/koha/lib/C4/Letters.pm line 585.
>
> Use of uninitialized value in string eq at
> /usr/share/koha/lib/C4/Overdues.pm line 612.
>
> I Enclosed the Error Screen message: https://i.ibb.co/W5DkRbk/Fine.png
>
> Can anybody tell me what this means? Is it a big problem?
>
>
> --
>  Thanking you..
>
> Librarian,
> MAMCET <http://mamcet.com/>
> Trichy-Chennai Trunk Road,
> Siruganur, Tiruchirappalli-621 105.
>
>

-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha 22.11.5v Fine amount did not Calculate

2023-05-19 Thread MASTeR Library
Hi Koha Community Members,
I just updated my Koha from 22.11.3 to 22.11.5 when I upgraded the server
from Ubuntu MATE 22.11. patrons' account book overdrive fine is not
calculated, only the date shown on the red colour fine amount is not
displayed.

I try to manually fine script commands. cd /etc/cron.daily/ ./koha-common

Get the following error/warning:

No circulation ODUE letter transported by print at
/usr/share/koha/lib/C4/Letters.pm line 585.

Use of uninitialized value in string eq at
/usr/share/koha/lib/C4/Overdues.pm line 612.

I Enclosed the Error Screen message: https://i.ibb.co/W5DkRbk/Fine.png

Can anybody tell me what this means? Is it a big problem?


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha v 22.11.5 top quick search menu options not working.

2023-05-08 Thread MASTeR Library
Thank you so much Katrin Fischer sir,
I have removed the entries in the "IntranetUserJs" system preference. my
problems are solved and working well.

On Mon, May 8, 2023 at 12:14 PM MASTeR Library 
wrote:

> Thank you for your reply.
> Yes, there are entries in IntranetUserJs system preference.
>
> On Mon, May 8, 2023 at 12:01 PM Katrin Fischer 
> wrote:
>
>> Hi,
>>
>> are there any JavaScript errors on the page maybe? You should be able to
>> check if you press F12 and then check the Console tab in the developer
>> tools in your browser.
>>
>> Are there any entries in IntranetUserJs system preference?
>>
>> Hope this helps,
>>
>> Katrin
>>
>> On 06.05.23 07:18, MASTeR Library wrote:
>> > Hi Koha Community Members,
>> > If I click on the quick menu options in Koha 22.11.5, the options do not
>> > change, for example, check-in, renew, search patrons, search the
>> catalogue,
>> > etc., if I click the Check-in option, but the search box does not change
>> > the above options. I have enclosed the screenshot link kind your
>> reference.
>> > I waiting for your's valuable reply.
>> >
>> > Screenshot Link:
>> https://i.ibb.co/tQMkBJp/Screenshot-2023-05-06-09-59-46.png
>> ___
>>
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>>
>
>
> --
>  Thanking you..
>
> Librarian,
> MAMCET <http://mamcet.com/>
> Trichy-Chennai Trunk Road,
> Siruganur, Tiruchirappalli-621 105.
>
>

-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha v 22.11.5 top quick search menu options not working.

2023-05-08 Thread MASTeR Library
Thank you for your reply.
Yes, there are entries in IntranetUserJs system preference.

On Mon, May 8, 2023 at 12:01 PM Katrin Fischer 
wrote:

> Hi,
>
> are there any JavaScript errors on the page maybe? You should be able to
> check if you press F12 and then check the Console tab in the developer
> tools in your browser.
>
> Are there any entries in IntranetUserJs system preference?
>
> Hope this helps,
>
> Katrin
>
> On 06.05.23 07:18, MASTeR Library wrote:
> > Hi Koha Community Members,
> > If I click on the quick menu options in Koha 22.11.5, the options do not
> > change, for example, check-in, renew, search patrons, search the
> catalogue,
> > etc., if I click the Check-in option, but the search box does not change
> > the above options. I have enclosed the screenshot link kind your
> reference.
> > I waiting for your's valuable reply.
> >
> > Screenshot Link:
> https://i.ibb.co/tQMkBJp/Screenshot-2023-05-06-09-59-46.png
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha v 22.11.5 top quick search menu options not working.

2023-05-07 Thread MASTeR Library
Hi friends using koha 22.11.5 version please reply to me. The quick link in
koha is not working for the above links check-in, search patrons, and etc,
and the same thing koha about the option and item types "choose an icon"
options links are not working. I have enclosed the screenshot link kind
your reference. I waiting for your's valuable reply.

Check-in, Search Patrons, Search catalogu,  Screenshot Link:
https://i.ibb.co/tQMkBJp/Screenshot-2023-05-06-09-59-46.png
About Koha  Screenshot Link:
https://i.ibb.co/rvkqkD1/Koha-About-link-nit-work.gif

Thank you.


On Sat, May 6, 2023 at 10:48 AM MASTeR Library 
wrote:

> Hi Koha Community Members,
> If I click on the quick menu options in Koha 22.11.5, the options do not
> change, for example, check-in, renew, search patrons, search the catalogue,
> etc., if I click the Check-in option, but the search box does not change
> the above options. I have enclosed the screenshot link kind your reference.
> I waiting for your's valuable reply.
>
> Screenshot Link:
> https://i.ibb.co/tQMkBJp/Screenshot-2023-05-06-09-59-46.png
> --
>  Thanking you.
>
> Librarian,
> MAMCET <http://mamcet.com/>
> Trichy-Chennai Trunk Road,
> Siruganur, Tiruchirappalli-621 105.
>
>

-- 
 Thanking you..

Librarian,
MAMCET <http://mamcet.com/>
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha v 22.11.5 top quick search menu options not working.

2023-05-05 Thread MASTeR Library
Hi Koha Community Members,
If I click on the quick menu options in Koha 22.11.5, the options do not
change, for example, check-in, renew, search patrons, search the catalogue,
etc., if I click the Check-in option, but the search box does not change
the above options. I have enclosed the screenshot link kind your reference.
I waiting for your's valuable reply.

Screenshot Link: https://i.ibb.co/tQMkBJp/Screenshot-2023-05-06-09-59-46.png
-- 
 Thanking you.

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] How To Add OCLC in Koha Z39.50 Server.

2023-05-05 Thread MASTeR Library
Dear Michael Kuhn Sir,
Dear, I changed the settings as you said but it says book search result not
found. I have attached the modified Z30.50 screenshot link below please
reply.

Z30.50 Screenshot link: https://i.ibb.co/vwrx0rZ/Z39-50-Server.png
Book Search Result: https://i.ibb.co/KFtGJCG/Capture-result.png



On Fri, May 5, 2023 at 4:31 PM Mark Alexander  wrote:

> I'm not an expert on this, but it appears that zcat.oclc.org requires
> you to provide your OCLC user name and password, as mentioned in the
> message mentioned previously:
>
> https://www.mail-archive.com/koha@lists.katipo.co.nz/msg25554.html
>
> Here is what happened when I tried to connect using yaz-client without
> username/password:
>
> % yaz-client zcat.oclc.org:210/OLUCWorldCat
> Connecting...OK.
> Sent initrequest.
> Connection rejected by v3 target.
> UserInformationfield:
> {
>   OID: 1 2 840 10003 10 1000 17 1
>   {
> ANY (len=29)
>   }
> }
> OCLC UserInformation:
> {
>   failReason TRUE
>   text 'Invalid Autho/password'
> }
> Options: search present delSet triggerResourceCtrl scan sort
> extendedServices namedResultSets
> Elapsed: 0.193017
>
> --
> Fundamentally, there may be no basis for anything. --Ashleigh Brilliant
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] How To Add OCLC in Koha Z39.50 Server.

2023-05-05 Thread MASTeR Library
I Successfully Configuration to Z39.50 but the catalogue title search
result  "Connection failed to zcat.oclc.org"

Z39.50 Server Configuration Details Link Enclosed Please check and reply to
me.

https://i.ibb.co/CWxwZ56/Screenshot-2023-05-05-16-06-01.png

On Fri, May 5, 2023 at 3:54 PM Michael Kuhn  wrote:

> Hi MAMCET Library
>
> You wrote:
>
>  >   How to Add OCLC  WORLD Catalogue in Koha Z39.50 Server.
>  > http://classify.oclc.org/classify2/
>
> The following post by Heather Siemoin may help you:
>
> https://www.mail-archive.com/koha@lists.katipo.co.nz/msg25554.html
>
> Also the following page by OCLC:
>
>
> https://help.oclc.org/Metadata_Services/Z3950_Cataloging/Get_started/Configuration_guide_for_OCLC_Z39.50_Cataloging
>
> Best wishes: Michael Kuhn
> --
> Geschäftsführer · Diplombibliothekar BBS, Informatiker eidg. Fachausweis
> Admin Kuhn GmbH · Pappelstrasse 20 · 4123 Allschwil · Schweiz
> T 0041 (0)61 261 55 61 · E m...@adminkuhn.ch · W www.adminkuhn.ch
>
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] How To Add OCLC in Koha Z39.50 Server.

2023-05-05 Thread MASTeR Library
Hi Koha Community Members,
 How to Add OCLC  WORLD Catalogue in Koha Z39.50 Server.
http://classify.oclc.org/classify2/

-- 
 Thanking you.

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Bug#1033546: Debian installer / Network configuration

2023-03-27 Thread Libre Master
Package: installation-reports

Boot method: debian-testing-amd64-netinst.iso
Image version: 
https://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso
Date: 2023/03/27 10:23

Machine: Proxmox KVM VM
Configure network:      [E]

Comments/Problems:

This bug is present since many years.

Currently, tt's not possible to declare a network like this :

> IPv4: 54.37.96.xxx/32
> 

> Gateway: 54.38.179.254

The installer tell "Unreachable gateway" but it's not true. If the network if 
configured with these values, everything is fine.

If i put this in /etc/network/interfaces, it works :

> auto eth0
> 

> iface eth0 inet static
> 

>     address 54.37.96.xxx/32
>     gateway 54.38.179.254




-- Have a good day / night ,
Christophe.

signature.asc
Description: OpenPGP digital signature


Bug#1033546: Debian installer / Network configuration

2023-03-27 Thread Libre Master
Package: installation-reports

Boot method: debian-testing-amd64-netinst.iso
Image version: 
https://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso
Date: 2023/03/27 10:23

Machine: Proxmox KVM VM
Configure network:      [E]

Comments/Problems:

This bug is present since many years.

Currently, tt's not possible to declare a network like this :

> IPv4: 54.37.96.xxx/32
> 

> Gateway: 54.38.179.254

The installer tell "Unreachable gateway" but it's not true. If the network if 
configured with these values, everything is fine.

If i put this in /etc/network/interfaces, it works :

> auto eth0
> 

> iface eth0 inet static
> 

>     address 54.37.96.xxx/32
>     gateway 54.38.179.254




-- Have a good day / night ,
Christophe.

signature.asc
Description: OpenPGP digital signature


[Koha] How to get sql report on patron additional attributes.

2023-03-15 Thread MASTeR Library
Dear Team,
how to get the sql report on Patron additional attributes for example
Department, Student Roll number, blood group and etc?

Sample SQL Code.
SELECT ROW_NUMBER() OVER (ORDER BY LPAD(borrowers.cardnumber,100,' ') ASC)
 AS 'S.No',
borrowers.cardnumber AS "Lib Membership
No",borrowers.borrowernumber,borrowers.surname AS "
Name",borrowers.title,borrowers.sex,borrowers.dateofbirth AS " Date of
Birth",borrowers.contactname AS "Guardian Name", borrowers.relationship,
borrowers.phone,borrowers.email,borrowers.address,borrowers.categorycode,borrowers.dateenrolled,borrowers.dateexpiry,borrowers.userid
FROM borrowers WHERE branchcode=<> AND
categorycode LIKE <>
-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha 22.05 OPAC Autocomplete Search Feature not working.

2023-03-13 Thread MASTeR Library
Dear Team,
The autocomplete search function in the Koha OPAC search box is not working
in Wikipedia Java Code, The Koha 22.05 latest version, please provide any
suggestions.
Reference.
https://libpowertech.blogspot.com/2021/03/how-to-adding-to-opac-autocomplete.html
https://en.wikipedia.org/w/api.php
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25532#c15
-- 
 Thanking you.

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Modify Patron Transaction Invoices and Fee Receipts

2023-02-28 Thread MASTeR Library
Account payment invoice
https://libpowertech.blogspot.com/2022/03/how-to-create-email-receipt-template.html?m=1

On Wed, 1 Mar 2023, 11:26 am Ms. Naveen Ali,  wrote:

> Hi Caroline,
>
> Thanks a lot for the information.
>
> I was looking for them in Tools->Notices and slips but was not able to map
> the receipts and invoices.
>
> The link you mentioned is great.
>
> I tried using Help on the Koha interface. It took me to this link
>
>
> https://koha-community.org/manual//22.05/en/html/tools.html#existing-notices-and-slips
>
> where i did not find ACCOUNT_DEBIT and CREDIT you mentioned.
>
> I believe the manual needs to be updated.
>
> Thanks a lot for your help and kind support.
>
> With best regards,
>
> Naveen Ali
>
> ITM-JE (EAKL)
> Inst Representative for
> HEC Digital Library Resources.
> NEDUET, Karachi.
>
>
> - Original Message -
> From: "Caroline Cyr La Rose" 
> To: koha@lists.katipo.co.nz
> Sent: Tuesday, 28 February, 2023 7:20:50 PM
> Subject: Re: [Koha] Modify Patron Transaction Invoices and Fee Receipts
>
> Hi Naveen,
>
> Transaction invoice = ACCOUNT_DEBIT
>
> Transaction receipt = ACCOUNT_CREDIT
>
> Summary is not customizable...
> (https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11340)
>
> Slip = ISSUESLIP
>
> Quick slip = ISSUEQSLIP
>
> Overdues = OVERDUES_SLIP
>
> Checkin slip = CHECKINSLIP
>
> Can I ask where you checked? I know most of them are described in the
> manual
>
> https://koha-community.org/manual/latest/en/html/tools.html#existing-notices-and-slips
> but it might be missing in crucial places where people would check
> first... So I'd like to add it there.
>
> Thanks!
>
> Caroline
>
>
> On 2023-02-27 23:33, Ms. Naveen Ali wrote:
> > Dear members,
> >
> > I'd like to modify the Patron Transaction Invoices and Fee Receipts.
> > In fact all the print options available on the Patron Screen (Summary,
> Slip, Quick Slip, Overdues, Check In Slip)
> > I can't identify them in the Notices and Slips Tool
> > Please provide support.
> >
> > With best regards,
> >
> > Naveen Ali
> >
> > ITM-JE (EAKL)
> > Inst Representative for
> > HEC Digital Library Resources.
> > NEDUET, Karachi.
> >
> >
> > ___
> >
> > Koha mailing listhttp://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe:https://lists.katipo.co.nz/mailman/listinfo/koha
> --
> Logo inLibro   Caroline Cyr-La-Rose
> Bibliothécaire | Responsable de produit
>
> T 833-INLIBRO (465-4276) , poste 221
> C caroline.cyr-la-r...@inlibro.com
>
> www.inLibro.com 
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Upgrade from - 17.11.02

2023-02-13 Thread MASTeR Library
Koha Upgrade the old stable version.
https://libpowertech.blogspot.com/2019/11/how-to-upgrade-koha.html
https://wiki.koha-community.org/wiki/Koha_on_Debian

On Mon, Feb 13, 2023 at 1:21 PM Laxmi Lal Menaria 
wrote:

> Good Morning All!
>
> We have installed koha - 17.11.02, and would like to upgrade to the latest
> version. Please let me know the steps I need to use.
>
> Is there any help link where I can see the steps? Please help me.
>
> Thanks in advance.
> --
>
> Thanks,
> Laxmilal Menaria | +91 982 955 3793 | http://cloud-computing.solutions/
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Fine calculation on over dues books

2023-01-17 Thread MASTeR Library
Visit the Link:
https://libpowertech.blogspot.com/2019/08/koha-not-calculating-in-fine-amount.html

On Wed, Jan 18, 2023 at 2:57 AM Katrin Fischer 
wrote:

> Hi,
>
> please make sure that your fines.pl cronjob is set up correctly and
> running. If you don't have server access, you can activate the
> CronjobLog system preference. Then you can use the log viewer to verify
> that the script did run overnight. You could also try running it
> manually with -v to get more information and to check if the fines then
> get calculated.
>
> Hope this helps,
>
> Katrin
>
>
> On 17.01.23 08:24, Banesh Hiremath wrote:
> > Hi,
> > I'm using the KOHA 21.05.02.000 version.
> > In this version, the fine does not appear on overdue items, but it
> appears
> > after the book is returned.
> > When students access the OPAC, the fine does not appear.
> >
> > Please assist us in resolving the above issue.
> >
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] Coin Master - Support is on the way!

2022-11-21 Thread Coin Master Support
Hey, Users!

Thank you for contacting us. Please note this is an automated reply. In order 
for our agents to expedite a resolution for you, we just need your device ID.
 
If you’re not sure where to get your Device ID, follow the below instructions:
1. Tap on the upper-right corner of the screen https://lh3.googleusercontent.com/pw/AM-JKLUAvIq7hNeGz_TalnAQWekngve1u3F0JgbmHKijZdgVGTwcOvmLNOvLJzb9zoGdLRHbgdVnVtRr_k2wxVh4tAupFtppSg9nwfrFGv40N7p2Qa-24ehWbpFFhYv1IrZ2IL_em3pfV5pPTdHBUBUXypI=s25-no?authuser=0;>
2. Click on the gear on the upper-left corner https://lh3.googleusercontent.com/pw/AM-JKLVZ-YISYOK99VH8PGgYcYfWk-JfV6C4qXnxjfv8Zdle2AgmMS9KJiOR9lJJsHgYx8MHZFabApBvJnZOWqJbyTwRGHQ0skB2SB2dEE17oRVPDqEjcOKjfHVxvefUZxgnUGi0i5j29BDB_wsd091C13o=s25-no?authuser=0;>
3. Scroll down and click on the Device ID (the string of numbers and letters 
found at the bottom of the screen) to copy it.
https://lh3.googleusercontent.com/pw/AL9nZEX3p0iNyjNYzRn6jguC8bhqWs3EFaqYkgcEhRwGOQRkol2GM04FUXh31Z3jMsPrtefTYFjVoctWcvAfCMbTsgN1m09KhyxJkOut7xUM6y87cYVcHitGqYPfPpDHjXl1AlcRGwjMe9WBckLmsae82NJc=w211-h433-no?authuser=0;>
4. Paste the Device ID in a reply to this email. Make sure to include any other 
relevant details of your experience.

If you don’t have access to your Device ID, please reply to this message 
letting us know, so we can further assist. 
 
Best regards,
Coin Master Support Team


This email is a service from Moon Active.











[XZ8KPL-77VKQ]

[users@httpd] Coin Master - Support is on the way!

2022-11-21 Thread Coin Master Support
Hey, Users!

Thank you for contacting us. Please note this is an automated reply. In order 
for our agents to expedite a resolution for you, we just need your device ID.
 
If you’re not sure where to get your Device ID, follow the below instructions:
1. Tap on the upper-right corner of the screen https://lh3.googleusercontent.com/pw/AM-JKLUAvIq7hNeGz_TalnAQWekngve1u3F0JgbmHKijZdgVGTwcOvmLNOvLJzb9zoGdLRHbgdVnVtRr_k2wxVh4tAupFtppSg9nwfrFGv40N7p2Qa-24ehWbpFFhYv1IrZ2IL_em3pfV5pPTdHBUBUXypI=s25-no?authuser=0;>
2. Click on the gear on the upper-left corner https://lh3.googleusercontent.com/pw/AM-JKLVZ-YISYOK99VH8PGgYcYfWk-JfV6C4qXnxjfv8Zdle2AgmMS9KJiOR9lJJsHgYx8MHZFabApBvJnZOWqJbyTwRGHQ0skB2SB2dEE17oRVPDqEjcOKjfHVxvefUZxgnUGi0i5j29BDB_wsd091C13o=s25-no?authuser=0;>
3. Scroll down and click on the Device ID (the string of numbers and letters 
found at the bottom of the screen) to copy it.
https://lh3.googleusercontent.com/pw/AL9nZEX3p0iNyjNYzRn6jguC8bhqWs3EFaqYkgcEhRwGOQRkol2GM04FUXh31Z3jMsPrtefTYFjVoctWcvAfCMbTsgN1m09KhyxJkOut7xUM6y87cYVcHitGqYPfPpDHjXl1AlcRGwjMe9WBckLmsae82NJc=w211-h433-no?authuser=0;>
4. Paste the Device ID in a reply to this email. Make sure to include any other 
relevant details of your experience.

If you don’t have access to your Device ID, please reply to this message 
letting us know, so we can further assist. 
 
Best regards,
Coin Master Support Team


This email is a service from Moon Active.











[V0Z636-V00E9]

[users@httpd] Coin Master - Happy to Help

2022-11-13 Thread Coin Master Support
Hey, Users.

I haven’t heard back from you in regards to your request, ticket 17986875, so I 
will be solving this ticket within a few days.
 
If you still need support, please reply to this email with the requested 
information and I will be more than happy to assist. You can also check out 
some fun tips and tricks as well as useful articles in our https://support.coinmastergame.com/hc/en-us;>Help Center

I look forward to your response!

Best Regards,
Coin Master Support Team


This email is a service from Moon Active.











[22PDR2-493G6]

[users@httpd] Coin Master - Support is on the way!

2022-11-12 Thread Coin Master Support
Hey, Users!

Thank you for contacting us. Please note this is an automated reply. In order 
for our agents to expedite a resolution for you, we just need your device ID.
 
If you’re not sure where to get your Device ID, follow the below instructions:
1. Tap on the upper-right corner of the screen https://lh3.googleusercontent.com/pw/AM-JKLUAvIq7hNeGz_TalnAQWekngve1u3F0JgbmHKijZdgVGTwcOvmLNOvLJzb9zoGdLRHbgdVnVtRr_k2wxVh4tAupFtppSg9nwfrFGv40N7p2Qa-24ehWbpFFhYv1IrZ2IL_em3pfV5pPTdHBUBUXypI=s25-no?authuser=0;>
2. Click on the gear on the upper-left corner https://lh3.googleusercontent.com/pw/AM-JKLVZ-YISYOK99VH8PGgYcYfWk-JfV6C4qXnxjfv8Zdle2AgmMS9KJiOR9lJJsHgYx8MHZFabApBvJnZOWqJbyTwRGHQ0skB2SB2dEE17oRVPDqEjcOKjfHVxvefUZxgnUGi0i5j29BDB_wsd091C13o=s25-no?authuser=0;>
3. Scroll down and click on the Device ID (the string of numbers and letters 
found at the bottom of the screen) to copy it.
https://lh3.googleusercontent.com/pw/AL9nZEX3p0iNyjNYzRn6jguC8bhqWs3EFaqYkgcEhRwGOQRkol2GM04FUXh31Z3jMsPrtefTYFjVoctWcvAfCMbTsgN1m09KhyxJkOut7xUM6y87cYVcHitGqYPfPpDHjXl1AlcRGwjMe9WBckLmsae82NJc=w211-h433-no?authuser=0;>
4. Paste the Device ID in a reply to this email. Make sure to include any other 
relevant details of your experience.

If you don’t have access to your Device ID, please reply to this message 
letting us know, so we can further assist. 
 
Best regards,
Coin Master Support Team


This email is a service from Moon Active.











[22PDR2-493G6]

Re: [Koha] KOHA not getting install old or new version

2022-11-08 Thread MASTeR Library
koha install latest  stable version
https://libpowertech.blogspot.com/2021/03/how-to-install-koha-on-ubuntu-mate-2004.html

On Tue, Nov 8, 2022 at 12:43 PM Laxmi Lal Menaria 
wrote:

> Look these basic cleanup steps too here
>
> http://cloud-computing.solutions/how-to-install-koha-a-library-software-on-ubuntu/
>
>
> On Tue, Nov 8, 2022 at 12:37 PM Jonathan Druart <
> jonathan.dru...@bugs.koha-community.org> wrote:
>
> > Hello,
> >
> > > and followed all the process
> > What did you follow exactly?
> > If you are trying to install Koha on debian you should follow this
> > documentation: https://wiki.koha-community.org/wiki/Koha_on_Debian
> >
> > Regards,
> > Jonathan
> >
> > Le mar. 8 nov. 2022 à 01:28, shailendra arora
> >  a écrit :
> > >
> > > I have formatted the pc and installed ubuntu  and followed all the
> > process
> > > but koha is not getting installed, not even creating a koha directory.
> > >
> > > I somehow installed koha on vm on laptop after lots of trying but now I
> > am
> > > trying to install a fully formatted system PC but it is not happening.
> > >
> > > some perl file showing  issue but perl is installed and updated too.
> > >
> > > Thank's & Regards
> > >
> > > Shailendra Arora
> > >  *( 3D Artist ,Modeler, 3D Animator , Designer,Instructor, PhotoGrapher
> > )*
> > >
> > > e-mail:-  *shailendraaror...@gmail.com *
> > > Mobile :- *9887503892*
> > > ___
> > >
> > > Koha mailing list  http://koha-community.org
> > > Koha@lists.katipo.co.nz
> > > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> >
>
>
> --
>
> Thanks,
> Laxmilal Menaria | +91 982 955 3793 | http://cloud-computing.solutions/
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] OPAC CUSTOMIZATION ON KOHA 21.11.12

2022-10-29 Thread MASTeR Library
OPAC customisation visit
https://youtu.be/SPVIW3y86J4

On Tue, 25 Oct 2022, 2:17 am Katrin Fischer, 
wrote:

> Hi Murphy,
>
> in 21.11 the news and HTML/OPAC customizations are different tools. Go
> to Tools > HTML customizations.
>
> Hope this helps,
>
> Katrin
>
> On 24.10.22 16:28, Igbudu Tersoo wrote:
> > Hello,
> > I just installed koha 21.11.12 running on ubuntu 20.04. i want to
> customize
> > the koha OPAC. on the news section, I can't see opacheader to position my
> > header. i can only see Librarian and OPAC interfaces, Librarian
> Interface,
> > OPAC and slip.
> >
> > How do i position my header now?
> >
> > Murphy Igbudu
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Error in creating instance

2022-09-22 Thread MASTeR Library
MSQL Password Error (Access Denied for User 'root'@'localhost' (using
password: YES) - No Privileges?)
https://libpowertech.blogspot.com/2022/09/msql-password-error-access-denied-for.html?m=1

On Thu, 22 Sep 2022, 10:43 am Mumanyi, Bravismore,  wrote:

> Hi Kumar
>
> I advise you re-check MySQL access credentials.
>
> Those parameters are wrong. You are trying to access MySQL with username
> root without a password.
>
> #mysql -u root -p
>
> If you set a password, then set the correct password in KOHA config file.
>
> There are also ways to reset MySQL password, in case you forgot.
>
> Hope this helps
>
> Regards
> 
> From: Koha  on behalf of Rishav Kumar
> Gond 
> Sent: 22 September 2022 07:00
> To: koha@lists.katipo.co.nz 
> Subject: [Koha] Error in creating instance
>
> Hi all,
>
> I have created an instance 'library' but soon after creating it when i am
> applying the command
>  "sudo koha-create --create-db library1"
> It is showing
> ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
> password: NO)
>
> Kindly help
>
> Warm regards
> Rishav
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> CAUTION -EXTERNAL SENDER: Please be careful when opening links and
> attachments. UNAM Directorate: Information & Communication Technology
> Services (DICTS)
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Freeipa-users] Intermittent login issues with SSSD/IDM

2022-09-01 Thread Master Blaster via FreeIPA-users
Howdy,

We are having intermittent login issues with our SSSD/IPA clients using 
Identity Manager in a read-only cross-forest trust configuration.

The SSSD/IPA servers themselves don't seem to be having this issue, just the 
SSSD/IPA clients using the IDM/IPA servers as their identity provider.

In addition, the problem only affects AD accounts, not native IDM accounts.

The issue manifests itself as either failed logins or the 'id' command 
returning user unknown.
 
All of our IDM servers are RHEL 8.  Clients are various mixes of RHEL 7 and 
RHEL 8, all exhibiting the same issue.

We have a P2 open with Red Hat, and it feels like they are having a problem 
pinpointing the issue.

Red Hat support seems to be indicating our AD environment is to blame, at least 
partially, as most our of AD groups don't have GIDs.  We have 80K + users in 
our AD  (not all of them assigned a Unix UID in AD as most of them have no need 
to log in to Unix).  However, the users that are logging in via SSSD obviously 
have UIDs and many groups attached to them, most of which may not have Possix 
GIDs as many of those groups will never need to touch Unix. (ie, email groups, 
Windows only access groups, etc, etc, etc)

Red Hat seems to indicate this is a highly unusual configuration for AD, where 
not all groups have Possix GIDs assigned.

I'm curious to know if those who have large AD environments like this with a 
mix of Unix and non-Unix uses, truly assign a Possix GID to each and every 
group, even if that group will never be utilized by Unix.

Also curious to know if anyone else is experiencing intermittent loging 
problems like this, and if you were able to solve it, and how?

Thank you...
___
FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org
To unsubscribe send an email to freeipa-users-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-users@lists.fedorahosted.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Freeipa-users] Intermittent login issues with SSSD/IDM

2022-09-01 Thread Master Blaster via FreeIPA-users
Howdy,

We are having intermittent login issues with our SSSD/IPA clients using 
Identity Manager in a read-only cross-forest trust configuration.

The SSSD/IPA servers themselves don't seem to be having this issue, just the 
SSSD/IPA clients using the IDM/IPA servers as their identity provider.

In addition, the problem only affects AD accounts, not native IDM accounts.

The issue manifests itself as either failed logins or the 'id' command 
returning user unknown.
 
All of our IDM servers are RHEL 8.  Clients are various mixes of RHEL 7 and 
RHEL 8, all exhibiting the same issue.

We have a P2 open with Red Hat, and it feels like they are having a problem 
pinpointing the issue.

Red Hat support seems to be indicating our AD environment is to blame, at least 
partially, as most our of AD groups don't have GIDs.  We have 80K + users in 
our AD  (not all of them assigned a Unix UID in AD as most of them have no need 
to log in to Unix).  However, the users that are logging in via SSSD obviously 
have UIDs and many groups attached to them, most of which may not have Possix 
GIDs as many of those groups will never need to touch Unix. (ie, email groups, 
Windows only access groups, etc, etc, etc)

Red Hat seems to indicate this is a highly unusual configuration for AD, where 
not all groups have Possix GIDs assigned.

I'm curious to know if those who have large AD environments like this with a 
mix of Unix and non-Unix uses, truly assign a Possix GID to each and every 
group, even if that group will never be utilized by Unix.

Also curious to know if anyone else is experiencing intermittent loging 
problems like this, and if you were able to solve it, and how?

Thank you...
___
FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org
To unsubscribe send an email to freeipa-users-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-users@lists.fedorahosted.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Koha] Catalog Error 500

2022-08-30 Thread MASTeR Library
*Good Morning All**started getting an error when selecting a title. If
I search the catalog** and then select the title link I get the
following error:
**An Error has Occurred!*

* Error 500*

*Error attaching this link. *https://i.ibb.co/PhLwVm7/Capture.png

 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


initialize `background-image` with a resource file

2022-08-23 Thread Master via gtkmm-list
in my gtkmm app i have a label that has a background image thanks to css
provider. like this:
```
MainWindow::MainWindow():
Mylabel(Hello)
{
provider = Gtk::CssProvider::create();
provider->load_from_data(
"#LogoLabel{"
//"color:#80;"
//"color:#5485ae;"
"color:#0075ff;"
"}"
"#PleaseHitKeyLbl{"
"background-color:#337a;"
"font-size:20px;"
"}"
"#BackgroundImage{"
"background-image:url(\"file:///home/ali/Desktop/sonbg.jpg\");"
"background-size:100% 100%;"
"opacity:0.3;"
"}"
);
MyLabel.set_name("BackgroundImage");
MyLabel.get_style_context()->add_provider(provider, 1);
}
```
The problem is that I dont know how to tell the `background-image` inside
the style provider to "get the image from resource" instead of "file"
please help me.
Regards.
___
gtkmm-list mailing list
gtkmm-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtkmm-list


[Koha] Koha 21.11.10 version, New Patrons email notice sending problem.

2022-08-11 Thread MASTeR Library
Good morning, I'm looking for tips to solve a New patron email notice
sending problem. I noticed that Koha 21.11.10 version, New Patrons email
notice only does not send, But book check-in, check-out, book renewal
notification etc are working properly.
-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Freeipa-users] Re: Auto cleanup old enrolled hosts

2022-08-05 Thread Master Blaster via FreeIPA-users
The best way to handle this is via a CloudWatch event that triggers a Lambda 
when the EC2 is terminated to call the IPA REST API to remove the host.

No need for all the rigamorale you are doing.
___
FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org
To unsubscribe send an email to freeipa-users-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-users@lists.fedorahosted.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [Koha] to import bulk book details - please advise

2022-07-12 Thread MASTeR Library
How to Book Bibliography Data Convert Excel to MARC format
https://www.youtube.com/watch?v=92bdWN054R0

On Tue, Jul 12, 2022 at 7:13 PM Bruns, Anke  wrote:

> Hi Edward,
>
> could you please explain your request a bit more?
>
> Do you explicitly want to import 5000 title records as duplicates of 5000
> existing records, so as a result there are 1 records? Or did you mean
> import the same data with deduplication in the process, so that the 5000
> existing records are overwritten?
>
> What exactly would you like to know about Excel import?
>
> Best regards,
> Anke
>
>
> > -Ursprüngliche Nachricht-
> > Von: Koha  Im Auftrag von edward durai
> > Gesendet: Dienstag, 12. Juli 2022 13:27
> > An: koha@lists.katipo.co.nz
> > Betreff: [Koha] to import bulk book details - please advise
> >
> > Hi Koha Team,
> > We Organization has 5000 books. I just wanted to import duplicate entry
> for
> > 5000 books using import excel.
> >
> > is it possible? so that we can edit and update whenever we have time.
> >
> > is there any other possibility to enter 5000 books quickly?
> >
> > thanks,
> > edward
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha Sql Report Help

2022-06-25 Thread MASTeR Library
Fine Paid for Library Patrons (Koha SQL Reports Queries) Koha v 18 and
above
https://libpowertech.blogspot.com/2019/05/fine-paid-for-library-patrons-sql.html?m=1

On Sun, 26 Jun 2022, 7:36 am Shafrizan Affendi,  wrote:

> Hi,
>
> Recently I upgraded my Koha from ver 18 to 22.05. Some of my sql report are
> not working anymore. For example to show a fine collection by staff id.
> Here is my previous sql.
>
> SELECT
>  @rownum:=@rownum+1 No,
>   student.borrowernumber,
>   student.cardnumber AS Student_ID,
>   student.surname AS Student_Name,
>   format(db.amount,2) As Amount,
>   accounttype,
>   date(db.timestamp) as Date,
>   time(db.timestamp) As Time,
>   db.manager_id AS Staff_ID,
>   staff.surname  AS Staff_Name,
>   db.note As Nota
> FROM
>   (SELECT @rownum:=0) r,
>   action_logs a, accountlines db
> INNER JOIN borrowers student ON db.borrowernumber =
> student.borrowernumber
> INNER JOIN borrowers staff ON db.manager_id =
> staff.borrowernumber
> WHERE
>date(db.timestamp)  BETWEEN <> AND
> <>
>AND module='fines' AND accounttype='pay'
> GROUP BY
> db.timestamp
> ORDER BY
>   db.timestamp
>
> I did read about the changes regarding table accountype but still not quite
> understand. Anyone can help me to correct this sql?
>
> Really appreciate your help
>
> Thanks in advance
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] Coin Master - Happy to Help

2022-06-20 Thread Coin Master Support
##- Please type your reply above this line -##

Your request (16804133) has been updated. To add additional comments, reply to 
this email.
--

Aine, Jun 20, 2022, 17:52 UTC

Hello there, Coin Master!
My name is Aine, it's nice to meet you!
Thanks for reaching out.

I’ll be happy to look into this for you. In order for me to be able to locate 
your account and assist you further, please follow the steps below:


1. Open the game
2. Tap 
![](https://lh3.googleusercontent.com/pw/AM-JKLUAvIq7hNeGz_TalnAQWekngve1u3F0JgbmHKijZdgVGTwcOvmLNOvLJzb9zoGdLRHbgdVnVtRr_k2wxVh4tAupFtppSg9nwfrFGv40N7p2Qa-24ehWbpFFhYv1IrZ2IL_em3pfV5pPTdHBUBUXypI=s25-no?authuser=0)
 on the upper-right corner of the screen
3. Tap 
![](https://lh3.googleusercontent.com/pw/AM-JKLVZ-YISYOK99VH8PGgYcYfWk-JfV6C4qXnxjfv8Zdle2AgmMS9KJiOR9lJJsHgYx8MHZFabApBvJnZOWqJbyTwRGHQ0skB2SB2dEE17oRVPDqEjcOKjfHVxvefUZxgnUGi0i5j29BDB_wsd091C13o=s25-no?authuser=0)
 on the upper-left corner of the menu screen
4. Tap **Support** to be redirected to our Help Center, where you can find 
great information about Coin Master and may find the answer to your question
5. If not, you can reach out to us by tapping **Send us a message** at the 
bottom of any article

Please include a detailed description of the issue you’re facing and attach 
screenshots and videos if possible.

Thank you,
Aine - Coin Master Support Team

![Facebook](https://lh3.googleusercontent.com/pw/AM-JKLVMDghmSs0nq-5wIICCWRCt_ej0oZi55vpDYTOCEplR7j3IwAtE7Fe4l-cE3f6nAqcpU53cCneyL0QowuWZWxUA-We5gcxeCDyKbE3Elcaaa9RBEWXS61FoAZLya3NSyTtI8b1UoB9Sj_8vgcDXJe10=w42-h40-no?authuser=0)
 
![Twitter](https://lh3.googleusercontent.com/pw/AM-JKLWJo-9zTNGPftuL-NKmqqUgKS_f-14BOlxLrJX0ijNz5KLXpNIfUCGs1sDkNkhUhpEmdFHn1T8q9hASHG94feWDkEzzTbuheJJ8B1fn7iHfc6WYdMPEl1O8a_rDNLgAZvvZbnnnSW4SbqzvaaVGTc7j=w42-h40-no?authuser=0)
 
![Instagram](https://lh3.googleusercontent.com/pw/AM-JKLXRfiKZANGfrjG0VCa33oChXlCaYkafhEv6y7ObGsg4molKLsrGeP2lzL2OSVY32VlkyRn6ssvXTfG2IB-EYRDeJCl9ltj4PW3x5nEbjXvbRhO3Ur7xe2EpnT7mQ5dP4oCh5Htd8TBVz2QHJz5GtzGI=w42-h40-no?authuser=0)
 
![YouTube](https://lh3.googleusercontent.com/pw/AM-JKLXrlY95Ma8ZsJoo4s5SS6iQiqmrjy8U-sEJvfeFzFPfcHBHT_2KbAU8COsK78p0t7LJJl73TPc58vcyTfGeLC3xoVNsXyrtpppzotUgQvAuTwDXOtJHSixAg46xuGNHoyVXGYFpzWivHLR8CppGLdMO=w42-h40-no?authuser=0)
 ![Trading 
Group](https://lh3.googleusercontent.com/pw/AM-JKLXGMFR8klRQyMMqywQeTWtpaHYas2t0mZMPxWY_lq8ujJzcrmnxn4ryPU52n6K4c-00e-BeXuAPZeWgmr7dtcXKiBPPMKQryc6STkaf9kIxoiDlhiINbVra9EUv-BVrnEplGE7JCzaDKvWT6PbFda4G=w42-h40-no?authuser=0)
 ![Help 
Center](https://lh3.googleusercontent.com/pw/AM-JKLWflu9WtHbtAB0_Kx3fOiSGUGeD6nNd36Yicf0xnL8kjFh5aYqHkWqg-tWubzM4ZaZtn90J4Ce4uriR8ljb8wohZuKHKd9hJ-_pgC1Kh4HtPyJl4Ljwx0-rosF9YXo1H-RFROcpOWGnULPq-PaICf2X=w42-h40-no?authuser=0)

--

Users, Jun 18, 2022, 13:15 UTC

users Digest 18 Jun 2022 13:15:16 - Issue 6307

Topics (messages 121914 through 121923)

Coin Master - Support is on the way!
121914 by: Coin Master Support

Re: Online page not affected by css
121915 by: Konstantin Kolinko
121916 by: Deepak Goel
121918 by: Tom Browder
121919 by: Tom Browder

Re: Strange 400 response codes
121917 by: Herbert Burnswell

[SOLVED] Re: Online page not affected by css
121920 by: Tom Browder

alias having trouble again
121921 by: freebsd.videotron.eu
121922 by: Eric Covener

setting up a new site?
121923 by: gene heskett

Administrivia:

-
To post to the list, e-mail: users@httpd.apache.org
To unsubscribe, e-mail: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-digest-h...@httpd.apache.org

--

Attachment(s):
users_121914.eml - 
https://support.coinmastergame.com/attachments/token/bmWzaOw9kga0Z9OJOkCfV4qrW/?name=users_121914.emlusers_121915.eml
 - 
https://support.coinmastergame.com/attachments/token/YAIRpJqlx3zPKFGWefKLTZ8Oj/?name=users_121915.emlusers_121920.eml
 - 
https://support.coinmastergame.com/attachments/token/3A9kF9o0h6jTCXAZmAGrNMJVG/?name=users_121920.emlusers_121921.eml
 - 
https://support.coinmastergame.com/attachments/token/rdl0tuTBe631FvJM2tvtTbk19/?name=users_121921.emlusers_121922.eml
 - 
https://support.coinmastergame.com/attachments/token/HnaqtCk2o7HEfndkKSK6G60wi/?name=users_121922.emlusers_121916.eml
 - 
https://support.coinmastergame.com/attachments/token/MFj5gqIGccK5pbfVn9L6knanb/?name=users_121916.emlusers_121918.eml
 - 
https://support.coinmastergame.com/attachments/token/8spQG5qI5MRK53r1k7IJ03hSL/?name=users_121918.emlusers_121919.eml
 - 
https://support.coinmastergame.com/attachments/token/aNY3uDwJz1mGRG89qGWWcEIpL/?name=users_121919.emlusers_121917.eml
 - 
https://support.coinmastergame.com/attachments/token/UnEO6CMlSnt2K9XL3T1w7uKB2/?name=users_121917

[users@httpd] Coin Master - Support is on the way!

2022-06-18 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=auto_reply;>Help
 Center, where all the information about Coin Master is available right at 
your fingertips!

Thanks for playing,
Coin Master Support Team


This email is a service from Moon Active.









[V8V39E-6Z4G4]

OpenOffice for Windows

2022-06-17 Thread Chess Master
Hello, I would like to download your OpenOffice. But I'm interested in the
privacy policy.Can you tell me where you transfer my personal data? And
what exactly.

Kacper


[users@httpd] Coin Master - Support is on the way!

2022-06-16 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=auto_reply;>Help
 Center, where all the information about Coin Master is available right at 
your fingertips!

Thanks for playing,
Coin Master Support Team


This email is a service from Moon Active.









[QEKR0R-2LQ0P]

[Koha] koha gmail sending problem (Google no longer supports the use of third-party apps or devices )

2022-06-16 Thread MASTeR Library
Hello Team,
Due to the below reason koha gmail getting problem (Problem in sending mail
kindly rectify the problem as soon as possible, If it is getting late to
solve the problem as soon as possible. Aiter some other solutions for koha
sending mail )
Less secure apps & your Google Account

To help keep your account secure, from May 30, 2022, Google no longer
supports the use of third-party apps or devices which ask you to sign in to
your Google Account using only your username and password.

Important: This deadline does not apply to Google Workspace or Google Cloud
Identity customers. The enforcement date for these customers will be
announced on the Workspace blog at a later date.


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] Coin Master - Support is on the way!

2022-06-14 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=auto_reply;>Help
 Center, where all the information about Coin Master is available right at 
your fingertips!

Thanks for playing,
Coin Master Support Team


This email is a service from Moon Active.









[QEKM4Q-LPX7E]

Bug#1012236: mirror submission for mirror.01link.hk

2022-06-01 Thread Host Master
Package: mirrors
Severity: wishlist
User: mirr...@packages.debian.org
Usertags: mirror-submission

Submission-Type: new
Site: mirror.01link.hk
Type: leaf
Archive-architecture: amd64 i386
Archive-http: /debian/
Maintainer: Host Master 
Country: AF Afghanistan
Location: Hong Kong
Sponsor: 01Link Network Services Ltd https://www.01link.net




Trace Url: http://mirror.01link.hk/debian/project/trace/
Trace Url: http://mirror.01link.hk/debian/project/trace/ftp-master.debian.org
Trace Url: http://mirror.01link.hk/debian/project/trace/mirror.01link.hk



Bug#1012237: mirror submission for mirror.01link.hk

2022-06-01 Thread Host Master
Package: mirrors
Severity: wishlist
User: mirr...@packages.debian.org
Usertags: mirror-submission

Submission-Type: new
Site: mirror.01link.hk
Type: leaf
Archive-architecture: amd64 i386
Archive-http: /debian/
Maintainer: Host Master 
Country: HK Hong Kong
Location: Hong Kong
Sponsor: 01Link Network Services Ltd https://www.01link.net




Trace Url: http://mirror.01link.hk/debian/project/trace/
Trace Url: http://mirror.01link.hk/debian/project/trace/ftp-master.debian.org
Trace Url: http://mirror.01link.hk/debian/project/trace/mirror.01link.hk



[users@httpd] Coin Master - Support is on the way!

2022-06-01 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=auto_reply;>Help
 Center, where all the information about Coin Master is available right at 
your fingertips!

Thanks for playing,
Coin Master Support Team


This email is a service from Moon Active.









[V85ZX8-P9EZ8]

PS5 の OS

2022-05-26 Thread master

PS4, Switch のカーネルが FreeBSD ベースという話は
よく聞きますが、PS5 は明確な情報がないですね。。。

実際どうなんでしょ。



Re: RFR: 8287200: Test java/lang/management/ThreadMXBean/VirtualThreadDeadlocks.java timed out after JDK-8287103

2022-05-25 Thread master-code-java
On Tue, 24 May 2022 19:52:57 GMT, Leonid Mesnik  wrote:

> Need to use proper synchronization.
> 
> The CyclicBarriers might move the thread to WAITING state but not BLOCKED. So 
> it should not confuse existing checks.

test/jdk/java/lang/management/ThreadMXBean/VirtualThreadDeadlocks.java line 98:

> 96: 
> 97: private static void awaitBlocked(Thread thread) throws 
> InterruptedException {
> 98: while (thread.getState() != Thread.State.BLOCKED) {

Thread.State.BLOCKED == thread.getState(). Does it make sense?

test/jdk/java/lang/management/ThreadMXBean/VirtualThreadDeadlocks.java line 100:

> 98: while (thread.getState() != Thread.State.BLOCKED) {
> 99: Thread.sleep(10);
> 100: if (thread.getState() == Thread.State.TERMINATED) {

Thread.State.TERMINATED == thread.getState(). Does it make sense?

-

PR: https://git.openjdk.java.net/jdk/pull/8874


[Koha] How to upload Bulk local cover images of books.

2022-04-27 Thread MASTeR Library
Hi
Is it possible to  bulk upload  local cover images of books in koha. or
any plugins tool available bulk local book cover image upload.

-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] How to Create Top 10 Circulation book with ISBN report

2022-04-26 Thread MASTeR Library
Thanks a lot.

On Tue, 26 Apr 2022, 9:09 pm Josh Barnes, 
wrote:

> Hello!
>
> You're on the right track with adding the bi.isbn. The extra part you
> missed is to tell your query which table the isbn is coming from. You can
> do that by using another left join to add the biblioitems table. Try
> something like this:
>
> SELECT count(s.datetime) AS circs, b.title, b.author, i.ccode, bi.isbn
> FROM statistics s
> JOIN items i ON (i.itemnumber=s.itemnumber)
> LEFT JOIN biblio b ON (b.biblionumber=i.biblionumber)
> LEFT JOIN biblioitems bi on (i.biblionumber=bi.biblionumber)
> WHERE DATE(s.datetime) > DATE_SUB(CURRENT_DATE(),INTERVAL 6 MONTH) AND
> DATE(s.datetime)<=CURRENT_DATE() AND s.itemnumber IS NOT NULL AND s.type IN
> ('issue','renew')
> GROUP BY b.biblionumber
> ORDER BY circs DESC
> LIMIT 10
>
> Cheers!
> Josh Barnes
> Portneuf Library
>
> On Tue, Apr 26, 2022 at 3:07 AM MASTeR Library 
> wrote:
>
>> Hi
>> Is it possible to Create  Top 10 Circulation book  with ISBN  number in
>> SQL
>> report,
>> it is Available for Top Circulation book  report:
>>
>> https://wiki.koha-community.org/wiki/SQL_Reports_Circulation#Top_10_Circulating_Books
>> , but ISBN number missing.
>>
>> How to Add the ISBN Number in the report. i try to "bi.isbn" but not
>> working
>>
>> SELECT count(s.datetime) AS circs, b.title, b.author,
>>i.ccode FROM statistics sJOIN items i ON
>> (i.itemnumber=s.itemnumber) LEFT JOIN biblio b ON
>> (b.biblionumber=i.biblionumber) WHERE DATE(s.datetime) >
>> DATE_SUB(CURRENT_DATE(),INTERVAL 6 MONTH)
>>   AND DATE(s.datetime)<=CURRENT_DATE() AND
>>   s.itemnumber IS NOT NULL AND s.type IN ('issue','renew')GROUP BY
>> b.biblionumber ORDER BY circs DESC LIMIT 10
>>
>>
>>
>> --
>>  Thanking you..
>>
>> Librarian,
>> MAMCET <http://mamcet.com/>
>> Trichy-Chennai Trunk Road,
>> Siruganur, Tiruchirappalli-621 105.
>> ___
>>
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>>
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] How to Create Top 10 Circulation book with ISBN report

2022-04-26 Thread MASTeR Library
Hi
Is it possible to Create  Top 10 Circulation book  with ISBN  number in SQL
report,
it is Available for Top Circulation book  report:
https://wiki.koha-community.org/wiki/SQL_Reports_Circulation#Top_10_Circulating_Books
, but ISBN number missing.

How to Add the ISBN Number in the report. i try to "bi.isbn" but not working

SELECT count(s.datetime) AS circs, b.title, b.author,
   i.ccode FROM statistics sJOIN items i ON
(i.itemnumber=s.itemnumber) LEFT JOIN biblio b ON
(b.biblionumber=i.biblionumber) WHERE DATE(s.datetime) >
DATE_SUB(CURRENT_DATE(),INTERVAL 6 MONTH)
  AND DATE(s.datetime)<=CURRENT_DATE() AND
  s.itemnumber IS NOT NULL AND s.type IN ('issue','renew')GROUP BY
b.biblionumber ORDER BY circs DESC LIMIT 10



-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha online bill copy format

2022-03-17 Thread MASTeR Library
How to Create an Email Receipt Template for Payment in Koha (Online Bill
Copy)
https://youtu.be/ARFcSJ_l76I
https://libpowertech.blogspot.com/2022/03/how-to-create-email-receipt-template.html?m=1
-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] Coin Master - Support is on the way!

2022-03-14 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=auto_reply;>Help
 Center, where all the information about Coin Master is available right at 
your fingertips!

Thanks for playing,
Coin Master Support Team


This email is a service from Moon Active.









[VX98VP-WKLZ8]

[Koha] Koha OPAC Login to gmail ID (API)

2022-03-10 Thread MASTeR Library
Dear all koha fans.

Anybody know how we can use email address, add password as opac userid and
p/w in koha ( eg- opac userid-( ***@gmail.com p/w
gmail account pw).

-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Bug #68230 [Com]: OpenSSL tests spawn PHP processes without preserving the test environment

2022-02-15 Thread master dot training365 at gmail dot com
Edit report at https://bugs.php.net/bug.php?id=68230=1

 ID: 68230
 Comment by: master dot training365 at gmail dot com
 Reported by:gm dot outside+php at gmail dot com
 Summary:OpenSSL tests spawn PHP processes without preserving
 the test environment
 Status: Open
 Type:   Bug
 Package:Testing related
 Operating System:   Linux
 PHP Version:5.6.1
 Block user comment: N
 Private report: N

 New Comment:

http://logterm.ning.com/profile/AddyCripson?xg_source=profiles_memberList
https://pastelink.net/sg2v7bcz
http://glintpost.pbworks.com/w/page/148002696/anas07
http://git.province.namur.be/glintpost2022/anas01/wiki/news567


Previous Comments:

[2019-07-29 09:50:44] c...@php.net

Related To: Bug #78345


[2015-12-06 16:26:42] rainer dot jung at kippdata dot de

This worked for me (and was needed) for PHP 7. I also had to add 

$custom_ini .= " -d 'extension=openssl.so'";

to load the openssl extension (which I had build as a dynamically loadable one).


[2014-10-15 08:15:16] gm dot outside+php at gmail dot com

I've just added a patch that partially fixes the test suite.  My patch extracts 
the name of the configuration file and/or additional configuration files 
provided to testsuite's PHP binary and executes the spawned PHP binary with the 
same set of files.  It also extracts the extension_dir and supplies it to the 
spawned process.

NOTE: This patch is just to fix our build environment so we can build PHP.  
This patch does NOT address the real issue of picking up the system-wide 
configuration files and it misses any custom configuration supplied to the test 
suite.

To properly solve the issue a new mechanism needs to be invented to ensure that 
the tests which require spawned children get the proper environment inherited 
from the primary test suite process.


[2014-10-15 07:38:04] gm dot outside+php at gmail dot com

Description:

In the test suite for the OpenSSL extension (ext/openssl) some tests require 
the server/client architecture.  Therefore they spawn two processes (a server 
and a client) to perform the tests.

Unfortunately, the way it's currently implemented does not provide reliable 
testing environment since the spawned instances are not preserving the 
environment the original test suite was launched in.

In the ext/openssl/tests/ServerClientTestCase.inc file there is a function 
called "spawnWorkerProcess()" and it simply executes the PHP binary followed by 
the script file name and script's arguments.  This picks up the system-wide PHP 
configuration files and can mess the testing up a lot, especially if the 
system-wide PHP is much older or configured significantly different than the 
one we are trying to build and test.

For example, this is how the PHP test suite is executed in our package builder:
===
export REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
export TEST_PHP_SRCDIR=..
unset TZ LANG LC_ALL
sapi/cli/php -n -c ./php-tests.ini -d extension_dir=modules \
../run-tests.php -p "$PWD/sapi/cli/php" -q --offline \
-n -c "$PWD/php-tests.ini" -d "extension_dir=$PWD/modules"
===

As you can see, "-n" ensures that we are not picking up any default 
configuration files, followed by "-c" that specifies explicitly which 
configuration file to use for the test purposes.  Then we define the location 
of modules.  This is done for both the PHP/CLI executing the test suite and as 
the arguments to the test suite script itself.

The latter ensures that when the test suite generates test scripts it produces 
something like the following:
===
/php-5.6.1/ext/openssl/tests $ cat bug48182.sh
#!/bin/sh

/php-5.6.1/build-cgi/sapi/cli/php  -n -c '/php-5.6.1/build-cgi/php-tests.ini'  
-d "output_handler=" -d "open_basedir=" -d "safe_mode=0" -d 
"disable_functions=" -d "output_buffering=Off" -d "error_reporting=32767" -d 
"display_errors=1" -d "display_startup_errors=1" -d "log_errors=0" -d 
"html_errors=0" -d "track_errors=1" -d "report_memleaks=1" -d 
"report_zend_debug=0" -d "docref_root=" -d "docref_ext=.html" -d 
"error_prepend_string=" -d "error_append_string=" -d "auto_prepend_file=" -d 
"auto_append_file=" -d "magic_quotes_runtime=0" -d "ignore_repeated_errors=0" 
-d "precision=14" -d "memory_limit=128M" -d "opcache.fast_shutdown=0" -d 
"opcache.file_update_

Re: [Koha] Importing encrypted patron passwords

2022-02-06 Thread MASTeR Library
https://libpowertech.blogspot.com/2022/02/installing-multiple-instances-of-koha.html

On Sun, 6 Feb 2022, 7:26 am Tomas Cohen Arazi,  wrote:

> You will create a new instance, say 'name' like this:
>
> $ koha-create --create-db name
>
> You will then load your backup on the empty db that was created:
>
> $ koha-mysql name < backup.sql
>
> About step 3, you just need to try. It should work, and we can help with
> the data errors.
>
> Looking forward to your comments.
>
>
>
> El sáb., 5 feb. 2022 22:13, Mark Alexander  escribió:
>
> > Excerpts from Alvaro Cornejo's message of 2022-02-05 19:40:08 -0500:
> > > I'll however suggest you do the backup load/upgrade before configuring
> > the
> > > server since some of the data uses DB indexes to be identified.
> >
> > Let me see if I understand this.  Is this the order of steps you're
> > recommending?
> >
> > 0. install Debian 10 on new server
> > 1. apt-get install koha-common
> > 2. copy database from the old server (mysqldump args >dump.sql)
> >and load it on new server (mysql args  > 3. run updatedatabase.pl
> > 4. run Koha's web installer
> >
> > I worry about step 3 because I don't understand how updatedatabase.pl
> > knows how to access the old database.  In the 3.16 installation I'm
> > working on, the database is called "koha", but in the latest Koha, the
> > database is normally called "koha_INSTANCE".  Is this a problem, and if
> so,
> > what do I do about?
> >
> > --
> > I work very hard.  Please don't expect me
> > to think as well. --Ashleigh Brilliant
> > ___
> >
> > Koha mailing list  http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> >
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha Staff Login Issue Please help me.

2022-01-31 Thread MASTeR Library
I am encountered with error " Autolocation is switched on and you are
logging in with an IP address that doesn't match your library". If any body
knows the trouble shoot please help me.
Enclosed Errr: https://i.ibb.co/YyDBnrB/koha-loing.png

1. Login into your staff client using a superlibrarian account.

2. Go to Home -> Koha Administration -> Global system preferences

3. Search for the system preference "AutoLocation"  and set it to
"Yes/No" (I changed this option.)

4. Save the change and logout and then login back in.  face the
problem anymore. Please hope this helps.

-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] Coin Master - Support is on the way!

2022-01-15 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us;>Help Center, where all the 
information about Coin Master is available right at your fingertips!

Thanks for playing,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[XY8LWD-QKVW]

Please i need your urgent help

2021-12-23 Thread Master Koffi Solomon
-- 
Hello dear beloved,

I am Master Solomon, a 22 years old and the only child of
late Mr. and Mrs. Aka David. My father was a businessman in the cocoa
and gold business here in Abidjan, the economic capital of the Ivory
Coast. My father was on a business trip with one of his business
partners who poisoned him to death on that business trip.

Before my father died in the private hospital where he was treated, he
had a sum of five million and five hundred thousand dollars ($
5,500,000) in one of the leading banks here in Abidjan, where he
deposited it and uses my name as the closest relative, since he has no
other child, and recommended me to choose a foreign partner who will
help me move the money abroad for investment  so that my evil
relatives don't kill me and take away what he left for me.

I want you to transfer this to your investment account there in your country.

I would like to ask for your support in the following areas:

(1) To provide a bank account to which this money is transferred.

(2) Act as my guardian to secure this fund as I am only 22 years old
and have little experience.

(3) To help me get to your country after the transaction is complete
so that I can continue my studies and invest under your care.

I am ready to give you 30% of the total amount realized as
compensation for your effort after completion.

Thank you as I am waiting for your reply.

Godd bless you.

Koffi Solomon
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[users@httpd] [Request received] users Digest 20 Dec 2021 00:26:58 -0000 Issue 6224

2021-12-19 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Season’s Greetings from Coin Master Support!

We received your message and we’ll get back to you as soon as possible. 

This holiday season we’re experiencing a higher volume of requests than usual, 
so it may take us a bit longer to respond. We appreciate your patience!

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=holiday_reply;>Help
 Center for answers to all your Coin Master questions.

Happy Holidays,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[QY76WO-X5RQ]

[users@httpd] [Request received] users Digest 19 Dec 2021 21:37:09 -0000 Issue 6223

2021-12-19 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Season’s Greetings from Coin Master Support!

We received your message and we’ll get back to you as soon as possible. 

This holiday season we’re experiencing a higher volume of requests than usual, 
so it may take us a bit longer to respond. We appreciate your patience!

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=holiday_reply;>Help
 Center for answers to all your Coin Master questions.

Happy Holidays,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[2MWDV4-Y7XW]

[users@httpd] [Request received] users Digest 14 Dec 2021 11:45:17 -0000 Issue 6221

2021-12-14 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Season’s Greetings from Coin Master Support!

We received your message and we’ll get back to you as soon as possible. 

This holiday season we’re experiencing a higher volume of requests than usual, 
so it may take us a bit longer to respond. We appreciate your patience!

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us?utm_source=support_medium=email_campaign=holiday_reply;>Help
 Center for answers to all your Coin Master questions.

Happy Holidays,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[YDXW5K-YOO7]

Re: [apache/incubator-teaclave] How about provide a live demo API to experience? (#466)

2021-11-30 Thread master-davidlee
Closed #466.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/466#event-5696153071

[coreboot] Re: Personal challenge | Ramp up on coreboot : Trials on aftermarket X58 motherboards.

2021-11-27 Thread Master
Hi Angel,

I hope you're doing fine!

Thanks for your answer!

Ouch, hum, okay, understood...
So RAM init is more easy on already supported hardware?
What would be the effort to reach at least serialICE?

Thanks in advance,
Have a nice day,
Best Regards,
Mickaël.


De : Angel Pons 
Envoyé : mercredi 24 novembre 2021 00:50
À : Master
Cc : coreboot@coreboot.org
Objet : Re: [coreboot] Personal challenge | Ramp up on coreboot : Trials on 
aftermarket X58 motherboards.

Hi Mickaël,

On Tue, Nov 23, 2021 at 11:29 AM Master  wrote:
>
> Hello everyone,
>
> I hope you're doing fine
>
> I would like to do some trials to see if I may be able to support few boards 
> I have cause they are aftermarket withoout EFI and without firmware updates 
> and not working as I would like them to.
> (https://askubuntu.com/questions/1370496/cant-boot-latests-lives-for-install-without-kernel-option-noapic-would-like)
> I really would not like to throw them...
>
> They are X58 chipset with ICH10  with Xeon Westmere on socket 1366 and 
> SuperIO NCT5532D.
> (https://www.intel.com/content/dam/doc/datasheet/x58-express-chipset-datasheet.pdf)
> (https://www.intel.com/content/dam/doc/datasheet/io-controller-hub-10-family-datasheet.pdf)
> (https://datasheetspdf.com/pdf-file/1042365/novoTon/NCT5532D/1)

Only the ICH10 southbridge (southbridge/intel/i82801jx) is currently
supported. Neither the CPU nor the X58 IOH are supported. Most of the
complexity is RAM initialization, especially because Intel does not
publicly document the relevant registers. It would likely take years
for an experienced developer to implement RAM init in coreboot.

The NCT5532D Super I/O isn't supported either, but it's easy to add
support for it using the datasheet.

> I have the tooling to backup and restore the flash and already done that few 
> time.
> I have built latest coreboot (4.14 using lenovo x201 config) with EDK2 
> firmware as payload (edk2-stable202108 NOOPT) successfully but nothing is 
> happening after flash swap and power on.

Flashing a firmware image for a different board is a bad idea. In
extreme cases, incompatible GPIO configuration can result in
short-circuits. It's unlikely, though.

> I have RS232 debug working at ttyS0 (at I/O 0x3f8 (irq = 4, base_baud = 
> 115200) is a 16550A)
> From the original firmware, just after power on, even before any bip or 
> display or keyboard light I see "Socket = 0" on serial, so the the original 
> firmware is able to output to this serial very early.
>
> I read quite a lot of literature about coreboot, but still, I am not sure how 
> to pursue now.

It's hard. I can give you general ideas on how to proceed (I'm pretty
sure we can get coreboot to print something over RS232), but RAM init
is still a major roadblock. Once serial output is working, it's
possible to use SerialICE to gather useful information to reimplement
RAM init.

> Thanks in advance,
> Have a nice day,
> Best Regards,
> Mickaël.
> ___
> coreboot mailing list -- coreboot@coreboot.org
> To unsubscribe send an email to coreboot-le...@coreboot.org

Best regards,
Angel
___
coreboot mailing list -- coreboot@coreboot.org
To unsubscribe send an email to coreboot-le...@coreboot.org


[coreboot] Personal challenge | Ramp up on coreboot : Trials on aftermarket X58 motherboards.

2021-11-23 Thread Master
Hello everyone,

I hope you're doing fine

I would like to do some trials to see if I may be able to support few boards I 
have cause they are aftermarket withoout EFI and without firmware updates and 
not working as I would like them to.
(https://askubuntu.com/questions/1370496/cant-boot-latests-lives-for-install-without-kernel-option-noapic-would-like)
I really would not like to throw them...

They are X58 chipset with ICH10  with Xeon Westmere on socket 1366 and SuperIO 
NCT5532D.
(https://www.intel.com/content/dam/doc/datasheet/x58-express-chipset-datasheet.pdf)
(https://www.intel.com/content/dam/doc/datasheet/io-controller-hub-10-family-datasheet.pdf)
(https://datasheetspdf.com/pdf-file/1042365/novoTon/NCT5532D/1)

I have the tooling to backup and restore the flash and already done that few 
time.
I have built latest coreboot (4.14 using lenovo x201 config) with EDK2 firmware 
as payload (edk2-stable202108 NOOPT) successfully but nothing is happening 
after flash swap and power on.

I have RS232 debug working at ttyS0 (at I/O 0x3f8 (irq = 4, base_baud = 115200) 
is a 16550A)
>From the original firmware, just after power on, even before any bip or 
>display or keyboard light I see "Socket = 0" on serial, so the the original 
>firmware is able to output to this serial very early.

I read quite a lot of literature about coreboot, but still, I am not sure how 
to pursue now.

Thanks in advance,
Have a nice day,
Best Regards,
Mickaël.
___
coreboot mailing list -- coreboot@coreboot.org
To unsubscribe send an email to coreboot-le...@coreboot.org


[users@httpd] [Request received] users Digest 20 Nov 2021 08:46:53 -0000 Issue 6216

2021-11-22 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us;>Help Center, where all the 
information about Coin Master is available right at your fingertips!

Thanks for playing,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[DO8Y2Y-2YR7]

[Koha] How to bulk change in item type

2021-11-21 Thread MASTeR Library
Hi
How to change bulk item types in koha. for example item type for Book and
change to Book bank  item.

-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] [Request received] users Digest 17 Nov 2021 20:24:32 -0000 Issue 6215

2021-11-17 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,

Thanks for contacting Coin Master Support!

We received your message and our Support team will get back to you as soon as 
possible. If there’s any additional information that can help us assist you, 
please send it in a reply to this email.

In the meantime, feel free to check out our https://moonactive.zendesk.com/hc/en-us;>Help Center, where all the 
information about Coin Master is available right at your fingertips!

Thanks for playing,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/;>Official Trading 
Group
https://www.youtube.com/c/CoinMasterOfficial;>YouTube
https://www.instagram.com/coinmasterofficial/;>Instagram
https://twitter.com/CoinMasterGame/;>Twitter


This email is a service from Moon Active.









[GDX35O-DR52]

Re: [Koha] KOHA INTERGRATION

2021-11-01 Thread MASTeR Library
KOHA ALL SQL REPORTS Visit: https://youtu.be/scuXS7wVFdM

On Mon, 1 Nov 2021, 10:36 pm Lennon Mazonde,  wrote:

> Hi Steve,
>
> Koha has two fields where you can store an item's value - 952$g
> (purchase price) and 952$v (replacement price). You can create an SQL
> report in the reports module to total the value of these fields, which
> would give you the total value of your collection (assuming that you
> added the required field data to all of your items). Here's an SQL
> statement you could try - you can modify it better suit your needs (I
> recommend using the Guided Reports module unless you're comfortable with
> writing SQL statements):
>
> SELECT sum(items.replacementprice),sum(items.price),
>
> items.itemnumber,items.barcode,items.itemcallnumber,biblioitems.isbn,biblio.title,items.replacementprice,items.price
>
>
> FROM items LEFT JOIN biblioitems on
> (items.biblioitemnumber=biblioitems.biblioitemnumber) LEFT JOIN
> biblio on (biblioitems.biblionumber=biblio.biblionumber)
>
> GROUP BY items.replacementprice,items.price
>
> ORDER BY biblio.title asc
>
> Now, the more difficult question is what to do with your board? I don't
> have any magic answers for that but perhaps you could start by creating
> a list of pros/cons for/against Koha or integrated school management
> system (it would be helpful to know the name). It may even turn out that
> the board is right  - I have my doubts, in my experience bundled systems
> tend to be Jacks of all trades and masters of none, but it's better if
> you do the research.
>
> I hope this helps and all the best with your board!
>
> Lennon Mazonde
> www.kohasupport.com
> len...@kohasupport.com
> WhatsApp @ (+1) 717.489.0195
>
> On 11/1/21 5:27 PM, Steve Austin wrote:
> > Hi team..
> >
> > I am having a challenge. Am in a school library using KOHA but the
> > directors want to have an integrated school management system including a
> > library module. They are specifically concerned with being able to know
> the
> > total value of the resources in the library.
> >
> > Is there a way I can defend myself and still have KOHA give them the
> > opportunity to view to total value of library collection integrated into
> > their school managememt system?
> >
> > Or are there ways of generating reports giving the total value of our
> > library collection?
> >
> > Regards
> > Steve.
> > ___
> >
> > Koha mailing listhttp://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe:https://lists.katipo.co.nz/mailman/listinfo/koha
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


[users@httpd] [Request received] users Digest 22 Oct 2021 09:53:00 -0000 Issue 6202

2021-10-23 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,
Thanks for reaching out to Coin Master Support.

We received your message and it is being reviewed by our support team. We will 
get back to you as soon as possible. If you have any additional information 
that would help us assist you, please send it in a reply to this email.

In the meantime, take a look at our https://moonactive.zendesk.com/hc/en-us;>Help Center to answer any 
other questions you may have about the game.

Regards,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/%22%3E;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/%22%3E;>Official 
Trading Group
https://www.youtube.com/channel/UC7O5Lj5A2ZRV8j2zrgf7oPA?%22%3E;>YouTube
https://www.instagram.com/coinmasterofficial/%22%3E;>Instagram
https://twitter.com/CoinMasterGame%22%3E;>Twitter


This email is a service from Moon Active.









[VYZGK8-Z8O8]

[users@httpd] [Request received] users Digest 22 Oct 2021 16:16:04 -0000 Issue 6203

2021-10-23 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,
Thanks for reaching out to Coin Master Support.

We received your message and it is being reviewed by our support team. We will 
get back to you as soon as possible. If you have any additional information 
that would help us assist you, please send it in a reply to this email.

In the meantime, take a look at our https://moonactive.zendesk.com/hc/en-us;>Help Center to answer any 
other questions you may have about the game.

Regards,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/%22%3E;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/%22%3E;>Official 
Trading Group
https://www.youtube.com/channel/UC7O5Lj5A2ZRV8j2zrgf7oPA?%22%3E;>YouTube
https://www.instagram.com/coinmasterofficial/%22%3E;>Instagram
https://twitter.com/CoinMasterGame%22%3E;>Twitter


This email is a service from Moon Active.









[O6PKQ9-P943]

[users@httpd] [Request received] users Digest 22 Oct 2021 09:35:01 -0000 Issue 6201

2021-10-23 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,
Thanks for reaching out to Coin Master Support.

We received your message and it is being reviewed by our support team. We will 
get back to you as soon as possible. If you have any additional information 
that would help us assist you, please send it in a reply to this email.

In the meantime, take a look at our https://moonactive.zendesk.com/hc/en-us;>Help Center to answer any 
other questions you may have about the game.

Regards,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/%22%3E;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/%22%3E;>Official 
Trading Group
https://www.youtube.com/channel/UC7O5Lj5A2ZRV8j2zrgf7oPA?%22%3E;>YouTube
https://www.instagram.com/coinmasterofficial/%22%3E;>Instagram
https://twitter.com/CoinMasterGame%22%3E;>Twitter


This email is a service from Moon Active.









[QY7G9E-7EK4]

[users@httpd] [Request received] users Digest 21 Oct 2021 13:17:27 -0000 Issue 6200

2021-10-23 Thread Coin Master Support
##- Please type your reply above this line -##

Hi Users,
Thanks for reaching out to Coin Master Support.

We received your message and it is being reviewed by our support team. We will 
get back to you as soon as possible. If you have any additional information 
that would help us assist you, please send it in a reply to this email.

In the meantime, take a look at our https://moonactive.zendesk.com/hc/en-us;>Help Center to answer any 
other questions you may have about the game.

Regards,
Coin Master Support Team

Follow us on Social Media!
https://www.facebook.com/coinmaster/%22%3E;>Facebook Fan Page
https://www.facebook.com/groups/654305044707245/%22%3E;>Official 
Trading Group
https://www.youtube.com/channel/UC7O5Lj5A2ZRV8j2zrgf7oPA?%22%3E;>YouTube
https://www.instagram.com/coinmasterofficial/%22%3E;>Instagram
https://twitter.com/CoinMasterGame%22%3E;>Twitter


This email is a service from Moon Active.









[VYZGK8-ZX74]

[krita] [Bug 442859] Krita não reconhecer o ffmpeg.exe na hora de exportar uma gravação (Krita does not recognize ffmpeg.exe when exporting a recording)

2021-09-24 Thread Keno Master
https://bugs.kde.org/show_bug.cgi?id=442859

--- Comment #3 from Keno Master  ---
I use windows, but thanks so much for answering

Em sex., 24 de set. de 2021 às 06:18, Ahab Greybeard <
bugzilla_nore...@kde.org> escreveu:

> https://bugs.kde.org/show_bug.cgi?id=442859
>
> Ahab Greybeard  changed:
>
>What|Removed |Added
>
> 
>  Resolution|--- |DUPLICATE
>  Status|REPORTED|RESOLVED
>  CC|
> |ahab.greybe...@hotmail.co.u
>||k
>
> --- Comment #2 from Ahab Greybeard  ---
> This was a problem on Windows (not on Linux).
> It has been fixed in the nightly builds and will be fixed in the
> 5.0.0-beta2
> which is due to be released 'soon'.
>
> *** This bug has been marked as a duplicate of bug 441435 ***
>
> --
> You are receiving this mail because:
> You reported the bug.

-- 
You are receiving this mail because:
You are watching all bug changes.

[krita] [Bug 442859] Krita não reconhecer o ffmpeg.exe na hora de exportar uma gravação (Krita does not recognize ffmpeg.exe when exporting a recording)

2021-09-23 Thread Keno Master
https://bugs.kde.org/show_bug.cgi?id=442859

--- Comment #1 from Keno Master  ---
Krita

 Version: 5.0.0-beta1
 Languages: pt_BR, pt, en_US, en
 Hidpi: true

Qt

  Version (compiled): 5.12.11
  Version (loaded): 5.12.11

OS Information

  Build ABI: x86_64-little_endian-llp64
  Build CPU: x86_64
  CPU: x86_64
  Kernel Type: winnt
  Kernel Version: 10.0.19043
  Pretty Productname: Windows 10 (10.0)
  Product Type: windows
  Product Version: 10

OpenGL Info

  Vendor:  "Google Inc." 
  Renderer:  "ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)" 
  Version:  "OpenGL ES 3.0 (ANGLE 2.1.0.57ea533f79a7)" 
  Shading language:  "OpenGL ES GLSL ES 3.00 (ANGLE 2.1.0.57ea533f79a7)" 
  Requested format:  QSurfaceFormat(version 3.0, options
QFlags(DeprecatedFunctions), depthBufferSize 24,
redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8,
stencilBufferSize 8, samples -1, swapBehavior QSurfaceFormat::DoubleBuffer,
swapInterval 0, colorSpace QSurfaceFormat::DefaultColorSpace, profile 
QSurfaceFormat::CompatibilityProfile) 
  Current format:QSurfaceFormat(version 3.0, options
QFlags(), depthBufferSize 24, redBufferSize 8,
greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8, stencilBufferSize 8,
samples 0, swapBehavior QSurfaceFormat::DefaultSwapBehavior, swapInterval 0,
colorSpace QSurfaceFormat::DefaultColorSpace, profile 
QSurfaceFormat::NoProfile) 
 Version: 3.0
 Supports deprecated functions false 
 is OpenGL ES: true 

QPA OpenGL Detection Info 
  supportsDesktopGL: true 
  supportsAngleD3D11: true 
  isQtPreferAngle: true 

Hardware Information

  GPU Acceleration: auto
  Memory: 8080 Mb
  Number of Cores: 4
  Swap Location: F:/Imagem/Ilustração etc/Backup Krita

Current Settings

  Current Swap Location: F:/Imagem/Ilustração etc/Backup Krita
  Current Swap Location writable: true
  Undo Enabled: true
  Undo Stack Limit: 30
  Use OpenGL: true
  Use OpenGL Texture Buffer: true
  Disable Vector Optimizations: false
  Disable AVX Optimizations: false
  Canvas State: OPENGL_SUCCESS
  Autosave Interval: 300
  Use Backup Files: true
  Number of Backups Kept: 1
  Backup File Suffix: ~
  Backup Location: Same Folder as the File
  Backup Location writable: false
  Use Win8 Pointer Input: false
  Use RightMiddleTabletButton Workaround: false
  Levels of Detail Enabled: false
  Use Zip64: false


Display Information
Number of screens: 1
Screen: 0
Name: \\.\DISPLAY1
Depth: 32
Scale: 1
Resolution in pixels: 1366x768
Manufacturer: 
Model: 
Refresh Rate: 60

-- 
You are receiving this mail because:
You are watching all bug changes.

[krita] [Bug 442859] Krita não reconhecer o ffmpeg.exe na hora de exportar uma gravação (Krita does not recognize ffmpeg.exe when exporting a recording)

2021-09-23 Thread Keno Master
https://bugs.kde.org/show_bug.cgi?id=442859

Keno Master  changed:

   What|Removed |Added

Summary|Krita não reconhecer o  |Krita não reconhecer o
   |ffmpeg.exe na hora de   |ffmpeg.exe na hora de
   |exportar uma gravação   |exportar uma gravação
   ||(Krita does not recognize
   ||ffmpeg.exe when exporting a
   ||recording)

-- 
You are receiving this mail because:
You are watching all bug changes.

[krita] [Bug 442859] New: Krita não reconhecer o ffmpeg.exe na hora de exportar uma gravação

2021-09-23 Thread Keno Master
https://bugs.kde.org/show_bug.cgi?id=442859

Bug ID: 442859
   Summary: Krita não reconhecer o ffmpeg.exe na hora de exportar
uma gravação
   Product: krita
   Version: 5.0.0-beta1
  Platform: Compiled Sources
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Dockers/Recorder
  Assignee: krita-bugs-n...@kde.org
  Reporter: joaoapas...@gmail.com
  Target Milestone: ---

O krita não consegue exportar uma gravação, por causa que ele não reconhece o
FFMpeg.exe, já testei de tudo, procurar na internet como resolver, até baixar
outros tipos de FFMpeg que estão disponíveis, tentei até desinstalar e
reinstalar o krita 5, mas não deu em nada, com isso fui testar se o problema
era totalmente do meu pc ou totalmente só do krita, então tentei rederizar uma
animação e o krita conseguiu reconhecer o FFMpeg.exe tranquilamente, acredito
eu que possa ser um erro que só esteja acontecendo comigo, já que meu setup não
é o mais atual, no caso vi outra pessoa utilizando o mesmo recurso e
funcionou... Esperou muito que vocês possa resolver isso, muito obrigado pela
atenção.

Krita can't export a recording, because it doesn't recognize FFMpeg.exe, I've
tested everything, search the internet for how to solve it, even download other
types of FFMpeg that are available, I even tried to uninstall and reinstall
krita 5, but nothing came of it, so I went to test if the problem was totally
my pc or totally just krita's, so I tried to rederize an animation and krita
was able to recognize the FFMpeg.exe calmly, I believe it might be an error
that is just happening with me, since my setup is not the most current, in this
case I saw another person using the same feature and it worked... Waited a lot
for you to solve this, thank you very much for your attention.



SUMMARY


STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 
(available in About System)
KDE Plasma Version: 
KDE Frameworks Version: 
Qt Version: 

ADDITIONAL INFORMATION

-- 
You are receiving this mail because:
You are watching all bug changes.

Re: [Koha] Unable to login in Web Installer 21.5

2021-09-14 Thread MASTeR Library
Koha installation
https://libpowertech.blogspot.com/2021/03/how-to-install-koha-on-ubuntu-mate-2004.html?m=1

On Tue, 14 Sep 2021, 12:52 pm Sebastian Krieg, <
sebastian.kr...@tuz-eisenach.de> wrote:

> Hello Sanjay,
>
> there are two ways:
>
> 1. Please login in a shell at your koha server, change to the superuser
> 'root' and execute 'koha-passwd [libraryname]' where [libraryname] is the
> given instance name during the installation. You will get the database
> password for the instance user. Note, that the command will make a 'clear'
> with next click.
>
> 2. Look into the file '/etc/koha/sites/[libraryname]/koha-conf.xml'. You
> will get the informations about the instance user in line 270 and the
> password in line 271.
>
> These are the login informations.
>
> Greets
>
> Sebastian
>
>
>
> ---
> mailto: sebastian.kr...@tuz-eisenach.de
>
> 13. September 2021 19:06, "Sanjay Uchcharia" 
> schrieb:
>
> > Sir,
> >
> > I've installed Koha on Ubuntu 20.04 but I'm unable to login in Web
> > Installer 21.5 with the username & password.
> > ___
> >
> > Koha mailing list http://koha-community.org
> > Koha@lists.katipo.co.nz
> > Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [EXTERNAL] install koha

2021-09-08 Thread MASTeR Library
Visit the link Koha Full tutorial.  basic koha installation and koha
customization etc..
https://www.youtube.com/c/LibPowerTech

On Wed, Sep 8, 2021 at 8:48 PM King, Fred  wrote:

> This won't tell you everything you need to know, but I did a video that
> takes you from the Ubuntu command line through a complete Koha system,
> ready to go, in half an hour. See https://youtu.be/plzFqqy1iPs. I'm
> working on part 2, where I set up the library, item types, OPAC home page,
> etc., which I hope to have ready in time for the koha-US conference,
> starting on September 21st. Free registration if you attend online! See
> https://koha-us.org/.
>
> As for koha-sites.conf, I'd recommend setting intraport to 8080 and
> opacport to 80. Then you can get to your staff interface as
> 123.123.123.123:8080 (assuming your IP address is 123.123.123.123) and
> the catalog as 123.123.123.123. You don't need an actual domain name for
> Koha, though it does make things easier.
>
> NOTE: Some of you might be rather alarmed at my barebones approach to
> setting up Koha. No, my directions don't produce something pretty looking.
> My intended audience is libraries that don't have a lot of money to hire
> someone to design and set up their ILS. You'll end up with something that
> works, but look like something designed in somebody's basement.
>
> And if you find any errors in my video, please tell me!
>
> Fred King, MSLS, AHIP
> Medical Librarian, MedStar Washington Hospital Center
> fred.k...@medstar.net
> 202-877-6670
> ORCID -0001-5266-0279
> MedStar Authors Catalog: http://medstarauthors.org
>
> All right, but apart from sanitation, medicine, education, wine, public
> order, irrigation, roads, the fresh water system and public health, what
> have the Romans ever done for us?
> --John Cleese
>
> -Original Message-
> From: Koha  On Behalf Of stefan
> Sent: Wednesday, September 08, 2021 10:55 AM
> To: koha 
> Subject: [EXTERNAL] [Koha] install koha
>
>
>
> **ATTENTION: This email originated from outside the MedStar Health network.
>  ** DO NOT CLICK links or attachments unless you recognize the sender and
> know the content is safe.
>
>
>
> Hi,
>
> I'm from Romania, I'm a librarian and I want to install koha on the
> library computer. I tried using the instructions at
> https://urldefense.com/v3/__https://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages*Install_Ubuntu__;Iw!!D7IIWT94AA!r8Im6_gLUsp-6SdXI2zDtDwSvLDj2no5iuW9d1zDfvYQB-zL1TCtaBcbg4EROE1Dlw$
> but without success.
>
>   On the computer i have ubuntu 20.04.3.
>
> I want to install koha and then get in the system all the books in the
> library and all the students that come to the library. I want to get koha
> up and running individually on this local computer.
>
> I don't have a system admin at the school.
>
> The computer is connected to the internet.
>
> Can somebody explain to me how i configure /etc/koha/koha-sites.conf?
> Also, what is the difference between web install and IP install. What
> would be best form me? I don't know about domain names and INTRAPORT AND
> OPACPORT...
>
> ___
>
> Koha mailing list
> https://urldefense.com/v3/__http://koha-community.org__;!!D7IIWT94AA!r8Im6_gLUsp-6SdXI2zDtDwSvLDj2no5iuW9d1zDfvYQB-zL1TCtaBcbg4FEEZLGOg$
> Koha@lists.katipo.co.nz
> Unsubscribe:
> https://urldefense.com/v3/__https://lists.katipo.co.nz/mailman/listinfo/koha__;!!D7IIWT94AA!r8Im6_gLUsp-6SdXI2zDtDwSvLDj2no5iuW9d1zDfvYQB-zL1TCtaBcbg4FV8B4UYg$
>
> --
> MedStar Health is a not-for-profit, integrated healthcare delivery system,
> the largest in Maryland and the Washington, D.C., region. Nationally
> recognized for clinical quality in heart, orthopedics, cancer and GI.
>
> IMPORTANT: This e-mail (including any attachments) may contain information
> that is private, confidential, or protected by attorney-client or other
> privilege. If you received this e-mail in error, please delete it from your
> system without copying it and notify sender by reply e-mail, so that our
> records can be corrected... Thank you.
>
> Help conserve valuable resources - only print this email if necessary.
>
>
> ___
>
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 
 Thanking you..

Librarian,
MAMCET 
Trichy-Chennai Trunk Road,
Siruganur, Tiruchirappalli-621 105.
___

Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha


  1   2   3   4   5   6   7   8   9   10   >