Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators Stomp has created two threads recently that can't be read Post 303029239 by stomp on Wednesday 23rd of January 2019 03:18:05 PM
Old 01-23-2019
I tried 2x to open a thread. At first I thought, there was a network error, so I tried again. Same outcome at the second post.

From console I get a redirect loop for those two threads:

Code:
wget --spider "https://www.unix.com/showthread.php?p=303029237#post303029237"
Spider mode enabled. Check if remote file exists.
--2019-01-23 21:17:14--  https://www.unix.com/showthread.php?p=303029237
Resolving www.unix.com (www.unix.com)... 209.126.104.117
Connecting to www.unix.com (www.unix.com)|209.126.104.117|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post.html#post303029237 [following]
Spider mode enabled. Check if remote file exists.
--2019-01-23 21:17:15--  https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post.html
Connecting to www.unix.com (www.unix.com)|209.126.104.117|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post-new-post.html [following]
Spider mode enabled. Check if remote file exists.
--2019-01-23 21:17:15--  https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post-new-post.html
Connecting to www.unix.com (www.unix.com)|209.126.104.117|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://www.unix.com/showthread.php?p=303029237#post303029237 [following]
Spider mode enabled. Check if remote file exists.
--2019-01-23 21:17:16--  https://www.unix.com/showthread.php?p=303029237
Connecting to www.unix.com (www.unix.com)|209.126.104.117|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post.html?#post303029237 [following]
Spider mode enabled. Check if remote file exists.
--2019-01-23 21:17:16--  https://www.unix.com/post-here-to-contact-site-administrators-and-moderators/280875-bug-empty-lines-get-sometimes-duplicated-new-post.html?
Connecting to www.unix.com (www.unix.com)|209.126.104.117|:443... connected.
...


Last edited by stomp; 01-23-2019 at 04:33 PM..
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Does WIN2K stomp on the boot record like NT?

My home PC is dual boot with Linux and Win98. I want to upgrade both to a newer version, and have the Linux CD's now. What I need to know is does Win2K Pro stomp (write over LiLo) on the boot record like NT (2 Replies)
Discussion started by: 98_1LE
2 Replies

2. UNIX for Advanced & Expert Users

Threads and Threads Count ?

Hi all, How can I get the list of all Threads and the Total count of threads under a particular process ? Do suggest !! Awaiting for the replies !! Thanks Varun:b: (2 Replies)
Discussion started by: varungupta
2 Replies

3. Programming

shared memory read/write using threads

I am looking for C program source code. Could you please help me in finding the source code required mentioned below. program to create multiple threads (one master thread and rest worker threads) and using the threads write into and read from shared memory Restrictions: Only one thread... (2 Replies)
Discussion started by: kumars
2 Replies

4. Shell Programming and Scripting

cron job issue..i hav read the basic threads already...

hi friends well m facing a different sort of issue in my cron. i hav set job like this 30 09 * * 1 /bin/backup14M 01 14 * * 1 /bin/backup14N 20 18 * * 1 /bin/backup14E that is for every Monday at three different times. but, first job executes well, later ones do not. I checked my... (13 Replies)
Discussion started by: oracle.test2
13 Replies

5. Shell Programming and Scripting

[Solved] Find Files Created Recently and Print

Hi, I'm looking to create a script which will find all the files created in the last 24h in a directory starting with a few different letters and send them to the printer. This would be run through the cron each morning to print the last 24 hours files. I have started with this to find all... (2 Replies)
Discussion started by: rab
2 Replies

6. Shell Programming and Scripting

How to read a file name that was recently edited when listed using ls command?

I was trying to write a script that will process recently creatd file. From below, the script should process input_20111230.dat file. sam:/top/work/data/input: ls -ltr input_*.dat -rw-rw-rw- 1 work edprod 455668 Dec 24 09:16 input_20111224.dat -rw-r--r-- 1 work edprod ... (7 Replies)
Discussion started by: siteregsam
7 Replies

7. Forum Support Area for Unregistered Users & Account Problems

Unable to read threads when logged in

I'm getting the following error (or something similar) whenever I try to view a thread when I'm logged in. That is, I login, hit "New Posts", get a list of theads, click on one (in this example is was the "Not allowed to post URLs" thread), then get the following HTML error page instead of the... (1 Reply)
Discussion started by: cnamejj
1 Replies
STOMP_ABORT(3)								 1							    STOMP_ABORT(3)

Stomp::abort - Rolls back a transaction in progress

       Object oriented style (method):

SYNOPSIS
public bool Stomp::abort (string $transaction_id, [array $headers]) DESCRIPTION
Procedural style: bool stomp_abort (resource $link, string $transaction_id, [array $headers]) Rolls back a transaction in progress. PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3). o $transaction_id - The transaction to abort. o $headers -Associative array containing the additional headers (example: receipt). RETURN VALUES
Returns TRUE on success or FALSE on failure. NOTES
Tip Stomp is inherently asynchronous. Synchronous communication can be implemented adding a receipt header. This will cause methods to not return anything until the server has acknowledged receipt of the message or until read timeout was reached. EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } /* begin a transaction */ $stomp->begin('t1'); /* send a message to the queue */ $stomp->send('/queue/foo', 'bar', array('transaction' => 't1')); /* rollback */ $stomp->abort('t1'); /* close connection */ unset($stomp); ?> Example #2 Procedural style <?php /* connection */ $link = stomp_connect('tcp://localhost:61613'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } /* begin a transaction */ stomp_begin($link, 't1'); /* send a message to the queue 'foo' */ stomp_send($link, '/queue/foo', 'bar', array('transaction' => 't1')); /* rollback */ stomp_abort($link, 't1'); /* close connection */ stomp_close($link); ?> PHP Documentation Group STOMP_ABORT(3)
All times are GMT -4. The time now is 08:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy