Recent content by marlosoft

  1. 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...
  2. M

    IPTV FREE IPTV M3U LINK (UNLIMITED)

    salamat sir
  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 cøøkíés. ang dapat na match mo is ung value nung hidden input with "_RequestVerificationToken" name.. possible na makuha mo dito is session cøøkíés 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.
  11. M

    Closed Html css pwd kana ba pumasok sa mga it company using this skill

    if you want to be a web designer, probably pwde na yung basic to intermediate knowledge in html5, css3, AND javascript for entry level. But if you have knowledge using css pre-processors like sass/less (for stylesheets) and ES6/Typescript (for modern javascript), malaking advantage un. But if...
  12. M

    Closed Github vs azure

    ung Github is a web-based hosting for git (git is ung mismong version control, github is where your versioned source code is hosted) and ung Azure is an IaaS (infrastracture as a service) kung saan ka pwdeng gumawa at mag setup ng vps mo. If you are a developer/programmer, much better kung...
Back
Top