Recent content by marlosoft

  1. M

    ❓ Help Google messages RCS chat

    ask lang mga sir kung may official posts ba ung mga telco na idisable/iremove daw nila ung RCS support?
  2. M

    ❓ Help Globe Fiber IPv6 request

    Hi po, meron po bang nka Globe Fiber dito? Ask ko lang kung meron na bang nakapag request magpaenable ng IPv6? Everytime kasi na mag call ako sa customer support, they are always saying na kelangan ng technician visit pero I don't think na un ang need ko, kasi naka enable naman na ung IPv6 sa...
  3. M

    🔒 Closed HELPPPP Upload image in php

    make sure na may enctype na multipart ung html form tag mo sir. then pa double check narin tama ung input tag (like: type = file and name = image).. also, i don't think na necessary pa ung addslashes in line 50, since system's temp path na sya so once okay ung file upload then the $image...
  4. M

    🔒 Closed How to login to a website weith verification token ? using curl

    i think okay naman. pero much better kung isang pattern nalang gagamitin mo for preg match but it requires more knowledge about regex.. patry nalang sir kung gagana sayo.
  5. M

    🔒 Closed How to login to a website weith verification token ? using curl

    This is what you need to do: 1. Curl login page with GET method. 2. Extract hidden input with "_RequestVerificationToken" name from the HTML response 3. Curl login page with POST method and post data as the ff: array( 'UserName'=>'sample@gmail.com', 'Password'=>'samplesample '...
  6. M

    🔒 Closed How to login to a website weith verification token ? using curl

    This is for the response cookies. ang dapat na match mo is ung value nung hidden input with "_RequestVerificationToken" name.. possible na makuha mo dito is session cookies lang and not the CSRF token.
  7. M

    🔒 Closed How to login to a website weith verification token ? using curl

    much better sir kung i-echo mo ung mga curl_error para macheck mo kung anong mali.. refs: https://www.php.net/manual/en/function.curl-error.php also, mukang csrf token ung _RequestVerificationToken so you need to get it from the login page instead of using constants. dynamically generated kasi...
  8. M

    🔒 Closed Code to block sites

    I think need mo mag install or setup ng firewall sa vps mo. Then need to mo din iconfigure yung pag filter ng outbound requests. Each firewall may differ kung pano sya kino-configure. I'm not sure pero pwde mo rin siguro i add ung fqdn sa hosts file. Connect to VPS. Edit /etc/hosts file. Add...
  9. M

    🔒 Closed Javascript code textbox validation

    pwde mo po itry ung trim function ng javascript :) var txtval = document.getElementById('txt1').value.trim();
  10. M

    🔒 Closed Front end problems

    probably kasi nasa next row ung "Previous Day" mo? try mo ilagay mo ung div na naka bilog dun sa loob div kung saan nakalagay ung mga div ng "NPT".. i'm not that sure. much better kung maipost mo ung code snippet para madali makita kung paano sya maayos.
Back
Top