delete row from a database table in symfonySymfony 2 : multiple and dynamic database connectionHow to get current route in Symfony 2?Should everything really be a bundle in Symfony 2.x?AuthenticationSuccessHandler, redirect after login and refererDelete record from database symfonyDelete from database in Symfony 2Symfony 3 - delete rows on intermediate table manyToManyDelete row with joinTable SymfonySymfony deleteaction multi table deleteSymfony 3/4 : delete a table row from a database through AJAX
Why do all the teams that I have worked with always finish a sprint without completion of all the stories?
When to remove insignificant variables?
How does a pilot select the correct ILS when the airport has parallel runways?
Greeting with "Ho"
Really Old Stock Valuation
Does this Wild Magic result affect the sorcerer or just other creatures?
What does the hyphen "-" mean in "tar xzf -"?
Run specific apex tests during "sfdx force:source:deploy"
How do I professionally let my manager know I'll quit over smoking in the office?
Interaction between Leyline of Anticipation and Teferi, Time Raveler
Helping ease my back pain when I'm studying 13 hours everyday, even weekends
Suggested order for Amazon Prime Doctor Who series
Are all instances of trolls turning to stone ultimately references back to Tolkien?
Swapping rooks in a 4x4 board
How to remove this component from PCB
Relationship between woodwinds and brass in a marching band?
Would it be a copyright violation if I made a character’s full name refer to a song?
Do I have to explain the mechanical superiority of the player-character within the fiction of the game?
Is it illegal to withhold someone's passport and green card in California?
Impossible darts scores
Why does the Saturn V have standalone inter-stage rings?
How to get cool night-vision without lame drawbacks?
Output of "$OSTYPE:6" on old releases of Mac OS X
Employer wants to use my work email account after I quit
delete row from a database table in symfony
Symfony 2 : multiple and dynamic database connectionHow to get current route in Symfony 2?Should everything really be a bundle in Symfony 2.x?AuthenticationSuccessHandler, redirect after login and refererDelete record from database symfonyDelete from database in Symfony 2Symfony 3 - delete rows on intermediate table manyToManyDelete row with joinTable SymfonySymfony deleteaction multi table deleteSymfony 3/4 : delete a table row from a database through AJAX
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
i want to delete the selected row from an html table that displays the orders list . this is the table code :
% for reservation in ListeDesReservations %
<tr>
//columns ... //
<td class="text-center text-lg text-medium"> reservation.seat</td>
<td class="text-center text-lg text-medium"> reservation.getEvent().getPrix()</td>
% if is_granted("IS_AUTHENTICATED_REMEMBERED") %
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
% else %
% set url = "OTHER_URL" %
% endif %
<td class="text-center"><a href="url" ></a></td>
</tr>
% endfor %
</tbody>
</table>
this my delete method in the controller :
public function SupprimerReservationAction($idReservation)
$em = $this->getDoctrine()->getEntityManager();
$entite = $em->getRepository('techeventBundle:reservation')->find($idReservation);
$em->remove($entite);
$em->persist($entite);
$em->flush();
//Affichage
$iduser = $this->getUser()->getId();
return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
//Affichage
this is my routing file :
affichage:
path: /afficherPanier/iduser
defaults: _controller: reservationBundle:Default:afficherPanier
supprimerReservation:
path: /supprimerReservation/idReservation
defaults: _controller: reservationBundle:Default:SupprimerReservation
the problem is when i click on the remove link it redirects me to the same link
(app_dev.php/afficherPanier/2) while it's supposed to redirect me to the delete route (app_dev.php/supprimerReservation/27)
symfony
|
show 3 more comments
i want to delete the selected row from an html table that displays the orders list . this is the table code :
% for reservation in ListeDesReservations %
<tr>
//columns ... //
<td class="text-center text-lg text-medium"> reservation.seat</td>
<td class="text-center text-lg text-medium"> reservation.getEvent().getPrix()</td>
% if is_granted("IS_AUTHENTICATED_REMEMBERED") %
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
% else %
% set url = "OTHER_URL" %
% endif %
<td class="text-center"><a href="url" ></a></td>
</tr>
% endfor %
</tbody>
</table>
this my delete method in the controller :
public function SupprimerReservationAction($idReservation)
$em = $this->getDoctrine()->getEntityManager();
$entite = $em->getRepository('techeventBundle:reservation')->find($idReservation);
$em->remove($entite);
$em->persist($entite);
$em->flush();
//Affichage
$iduser = $this->getUser()->getId();
return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
//Affichage
this is my routing file :
affichage:
path: /afficherPanier/iduser
defaults: _controller: reservationBundle:Default:afficherPanier
supprimerReservation:
path: /supprimerReservation/idReservation
defaults: _controller: reservationBundle:Default:SupprimerReservation
the problem is when i click on the remove link it redirects me to the same link
(app_dev.php/afficherPanier/2) while it's supposed to redirect me to the delete route (app_dev.php/supprimerReservation/27)
symfony
Why doing :% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write :% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?
– Cid
Mar 25 at 9:03
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04
|
show 3 more comments
i want to delete the selected row from an html table that displays the orders list . this is the table code :
% for reservation in ListeDesReservations %
<tr>
//columns ... //
<td class="text-center text-lg text-medium"> reservation.seat</td>
<td class="text-center text-lg text-medium"> reservation.getEvent().getPrix()</td>
% if is_granted("IS_AUTHENTICATED_REMEMBERED") %
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
% else %
% set url = "OTHER_URL" %
% endif %
<td class="text-center"><a href="url" ></a></td>
</tr>
% endfor %
</tbody>
</table>
this my delete method in the controller :
public function SupprimerReservationAction($idReservation)
$em = $this->getDoctrine()->getEntityManager();
$entite = $em->getRepository('techeventBundle:reservation')->find($idReservation);
$em->remove($entite);
$em->persist($entite);
$em->flush();
//Affichage
$iduser = $this->getUser()->getId();
return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
//Affichage
this is my routing file :
affichage:
path: /afficherPanier/iduser
defaults: _controller: reservationBundle:Default:afficherPanier
supprimerReservation:
path: /supprimerReservation/idReservation
defaults: _controller: reservationBundle:Default:SupprimerReservation
the problem is when i click on the remove link it redirects me to the same link
(app_dev.php/afficherPanier/2) while it's supposed to redirect me to the delete route (app_dev.php/supprimerReservation/27)
symfony
i want to delete the selected row from an html table that displays the orders list . this is the table code :
% for reservation in ListeDesReservations %
<tr>
//columns ... //
<td class="text-center text-lg text-medium"> reservation.seat</td>
<td class="text-center text-lg text-medium"> reservation.getEvent().getPrix()</td>
% if is_granted("IS_AUTHENTICATED_REMEMBERED") %
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
% else %
% set url = "OTHER_URL" %
% endif %
<td class="text-center"><a href="url" ></a></td>
</tr>
% endfor %
</tbody>
</table>
this my delete method in the controller :
public function SupprimerReservationAction($idReservation)
$em = $this->getDoctrine()->getEntityManager();
$entite = $em->getRepository('techeventBundle:reservation')->find($idReservation);
$em->remove($entite);
$em->persist($entite);
$em->flush();
//Affichage
$iduser = $this->getUser()->getId();
return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
//Affichage
this is my routing file :
affichage:
path: /afficherPanier/iduser
defaults: _controller: reservationBundle:Default:afficherPanier
supprimerReservation:
path: /supprimerReservation/idReservation
defaults: _controller: reservationBundle:Default:SupprimerReservation
the problem is when i click on the remove link it redirects me to the same link
(app_dev.php/afficherPanier/2) while it's supposed to redirect me to the delete route (app_dev.php/supprimerReservation/27)
symfony
symfony
edited Mar 25 at 9:00
YassinovTrabajaa
asked Mar 25 at 8:43
YassinovTrabajaaYassinovTrabajaa
238
238
Why doing :% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write :% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?
– Cid
Mar 25 at 9:03
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04
|
show 3 more comments
Why doing :% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write :% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?
– Cid
Mar 25 at 9:03
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04
Why doing :
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write : % set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
Why doing :
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write : % set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->
return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?– Cid
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->
return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?– Cid
Mar 25 at 9:03
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04
|
show 3 more comments
2 Answers
2
active
oldest
votes
In your controller action you are doing :
$em->remove($entite);
$em->persist($entite);
You are removing then saving the entity. Remove the $em->persist($entite);
line.
Your redirection is a normal behaviour since you are requesting it in your controller action return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
Note : This is not how is supposed to be build a path % set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
Twig has a method named path
that allows you to build URLs based on the route name
% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
add a comment |
I would suggest to work with annotations for routes. Makes things easier.
What you're doing is far from being the proper way to go about it.
Your delete fonction will not work properly either...
You're deleting with $em->remove($entite)
, then creating with $em->persist($entite)
.
Doing this won't ends well for sure.
Your twig is a mess...
We don't create URLs the way you did. There is the twig extension path
to do it.
I would suggest to start reading about Symfony :
Creating a Simple Form
Persist/Fetch/Update/Delete an Object in the Database
Controllers
The links above are for Symfony 3.4.
Make sure to change the version with the dropdown select on the page to your corresponding Symfony version if you're not using Symfony 3.4
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333980%2fdelete-row-from-a-database-table-in-symfony%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In your controller action you are doing :
$em->remove($entite);
$em->persist($entite);
You are removing then saving the entity. Remove the $em->persist($entite);
line.
Your redirection is a normal behaviour since you are requesting it in your controller action return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
Note : This is not how is supposed to be build a path % set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
Twig has a method named path
that allows you to build URLs based on the route name
% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
add a comment |
In your controller action you are doing :
$em->remove($entite);
$em->persist($entite);
You are removing then saving the entity. Remove the $em->persist($entite);
line.
Your redirection is a normal behaviour since you are requesting it in your controller action return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
Note : This is not how is supposed to be build a path % set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
Twig has a method named path
that allows you to build URLs based on the route name
% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
add a comment |
In your controller action you are doing :
$em->remove($entite);
$em->persist($entite);
You are removing then saving the entity. Remove the $em->persist($entite);
line.
Your redirection is a normal behaviour since you are requesting it in your controller action return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
Note : This is not how is supposed to be build a path % set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
Twig has a method named path
that allows you to build URLs based on the route name
% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
In your controller action you are doing :
$em->remove($entite);
$em->persist($entite);
You are removing then saving the entity. Remove the $em->persist($entite);
line.
Your redirection is a normal behaviour since you are requesting it in your controller action return $this->redirectToRoute('affichage', ['iduser' => $iduser]);
Note : This is not how is supposed to be build a path % set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
Twig has a method named path
that allows you to build URLs based on the route name
% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
answered Mar 25 at 9:13
CidCid
6,77921329
6,77921329
add a comment |
add a comment |
I would suggest to work with annotations for routes. Makes things easier.
What you're doing is far from being the proper way to go about it.
Your delete fonction will not work properly either...
You're deleting with $em->remove($entite)
, then creating with $em->persist($entite)
.
Doing this won't ends well for sure.
Your twig is a mess...
We don't create URLs the way you did. There is the twig extension path
to do it.
I would suggest to start reading about Symfony :
Creating a Simple Form
Persist/Fetch/Update/Delete an Object in the Database
Controllers
The links above are for Symfony 3.4.
Make sure to change the version with the dropdown select on the page to your corresponding Symfony version if you're not using Symfony 3.4
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
add a comment |
I would suggest to work with annotations for routes. Makes things easier.
What you're doing is far from being the proper way to go about it.
Your delete fonction will not work properly either...
You're deleting with $em->remove($entite)
, then creating with $em->persist($entite)
.
Doing this won't ends well for sure.
Your twig is a mess...
We don't create URLs the way you did. There is the twig extension path
to do it.
I would suggest to start reading about Symfony :
Creating a Simple Form
Persist/Fetch/Update/Delete an Object in the Database
Controllers
The links above are for Symfony 3.4.
Make sure to change the version with the dropdown select on the page to your corresponding Symfony version if you're not using Symfony 3.4
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
add a comment |
I would suggest to work with annotations for routes. Makes things easier.
What you're doing is far from being the proper way to go about it.
Your delete fonction will not work properly either...
You're deleting with $em->remove($entite)
, then creating with $em->persist($entite)
.
Doing this won't ends well for sure.
Your twig is a mess...
We don't create URLs the way you did. There is the twig extension path
to do it.
I would suggest to start reading about Symfony :
Creating a Simple Form
Persist/Fetch/Update/Delete an Object in the Database
Controllers
The links above are for Symfony 3.4.
Make sure to change the version with the dropdown select on the page to your corresponding Symfony version if you're not using Symfony 3.4
I would suggest to work with annotations for routes. Makes things easier.
What you're doing is far from being the proper way to go about it.
Your delete fonction will not work properly either...
You're deleting with $em->remove($entite)
, then creating with $em->persist($entite)
.
Doing this won't ends well for sure.
Your twig is a mess...
We don't create URLs the way you did. There is the twig extension path
to do it.
I would suggest to start reading about Symfony :
Creating a Simple Form
Persist/Fetch/Update/Delete an Object in the Database
Controllers
The links above are for Symfony 3.4.
Make sure to change the version with the dropdown select on the page to your corresponding Symfony version if you're not using Symfony 3.4
edited Mar 25 at 9:30
answered Mar 25 at 9:13
PrecielPreciel
9581522
9581522
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
add a comment |
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
i agree i am still learning , i will try to improve my code thanks for you answer .
– YassinovTrabajaa
Mar 25 at 10:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55333980%2fdelete-row-from-a-database-table-in-symfony%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Why doing :
% set url = absolute_url(asset('')) ~ 'app_dev.php/supprimerReservation/' ~ reservation.id %
(that might not work) when you can simply write :% set url = path('supprimerReservation', 'idReservation': reservation.id ) %
– Cid
Mar 25 at 9:00
@Cid yeah i am wrong , it's supposed to be not commented ! i copied the wrong code
– YassinovTrabajaa
Mar 25 at 9:02
@Cid when i remove ( redirect to url ) it redirects me to the right url /supprimer/27 ! i think the problem comes from it ! that's why i have commented it
– YassinovTrabajaa
Mar 25 at 9:03
This is a normal behaviour. "it redirects me to the same link" ->
return $this->redirectToRoute('affichage' ... );
You are doing the redirection in the action. Was the deletion done succesfully ?– Cid
Mar 25 at 9:03
You should check the profiler to notice what's going, what have been done, what are the redirections and so on
– Cid
Mar 25 at 9:04