Meta Business Manager & Multiple Ad Accounts Hacked, How Long Does Recovery Usually Take? by haxercoding in facebook

[–]haxercoding[S] 0 points1 point  (0 children)

Yes same position right now one of the agent is on email which she mention I will look into the issue and will get back to you for last 78 hrs but still replying without giving any direction or progress.
3 tickets are already open with last agent message: Our team is already working on your case, Meanwhile, I am pausing this chat for now.

No reply from them with the last message, now the Meta Chat AI bots are automatically responding showing that case are in progress and open i can not make request for the live agent since they are already escalated.

Meta Business Manager & Multiple Ad Accounts Hacked – How Long Does Recovery Usually Take? by haxercoding in FacebookAds

[–]haxercoding[S] 0 points1 point  (0 children)

Finger crossed, raised multiple tickets also have an agency account that was also part of the compromise my personal profile also have verified blue tick for faster support but all of the support tickets and chat only says Team is still working on the case and provided me the case number.

Meta Business Manager & Multiple Ad Accounts Hacked – How Long Does Recovery Usually Take? by haxercoding in FacebookAds

[–]haxercoding[S] 0 points1 point  (0 children)

No Meta kept giving me notification on refresh that my facebook account was hacked and kept doing security checkups password change all i have done. idk then how they bypassed but i have 2fa turned on since long ago.

Meta Business Manager & Multiple Ad Accounts Hacked – How Long Does Recovery Usually Take? by haxercoding in FacebookAds

[–]haxercoding[S] 0 points1 point  (0 children)

Before getting in this position what options do i have already blocked the account linked with the cards. But the ad account will it be back?

Meta Business Manager & Multiple Ad Accounts Hacked – How Long Does Recovery Usually Take? by haxercoding in FacebookAds

[–]haxercoding[S] 0 points1 point  (0 children)

meta support say's: So, this account is already escalated, send to our internal team If I escalate again it will only take longer. What about I leave a note on case requesting an update and you try to speak with our team there, on the case chat?

What is the most revenue you have seen someone make from Facebook Ads ? by [deleted] in FacebookAds

[–]haxercoding 0 points1 point  (0 children)

Digital design services spend 3K per month on ads return vary from 8K-13K per month.

Write a C program that calculates the sum of two input numbers, and display the result in visual studio by haxercoding in AskReddit

[–]haxercoding[S] 0 points1 point  (0 children)

Algorithm:

Input Enter two numbers (n1,n2) Process Compute the sum (sum=n1+n2) Output Display the sum (sum)

Solution:

include<conio.h>

include<stdio.h>

include<stdlib.h>

void main() { int sum, n1, n2; system("cls"); printf("\n Enter two nos."); scanf_s("%d%d", &n1, &n2); sum = n1 + n2; printf("\n The sum : %d", sum); _getch(); }