You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For any of you trying to parse site with CSS large enough (1MB+) and not getting any results make sure you set ini_set('pcre.backtrack_limit', 1000000); to higher value than 1mil.
I was parsing 3MB CSS and spent whole day debugging till found this is default config limiting preg_replace function.
Just letting you know.. Peace 👍
The text was updated successfully, but these errors were encountered:
Hello guys.
For any of you trying to parse site with CSS large enough (1MB+) and not getting any results make sure you set
ini_set('pcre.backtrack_limit', 1000000);
to higher value than 1mil.I was parsing 3MB CSS and spent whole day debugging till found this is default config limiting preg_replace function.
Just letting you know.. Peace 👍
The text was updated successfully, but these errors were encountered: