Abdulbasit Rubeya

Results 11 comments of Abdulbasit Rubeya

with a fast check that I did, try to look at line 163 of your code, there is a typho it's `if tok.type ...` instead of `if tok.typw ...`

then there have to be a bunch of more other typos, please do attach the entire source code or provide a repository that I can reference from

am also receiving the same error, and the only way I can suppress the error is by turning off the E_WARNING every time I use the explore functionality which I...

> Couldn't the problem be the use of relative path? I.e. use for example `FileStorage(__DIR__ . '/cache/db')` I don't think that's the case because - with `FileStorage(__DIR__ . '/cache/db')` the...

I used `FileStorage(getcwd().'/cache/db');` everything works fine now, it also seems to be working fine with absolute path thanks @dg

Please find it from here: https://2wo4zm.csb.app/

From what I know traditional routes should also work fine, let say you have file feature.php in folder abc domain.com/abc/feature.php should also work

3 ways you can achieve that @unikoca 1. use of regexp: ^(?!.*(?:admin|other_word|yet_another)).*[a-zA-Z0-9-/]+.*$ (Recommended) ``` Route::add('/(^(?!.*(?:admin|other_word|yet_another)).*[a-zA-Z0-9-/]+.*$)', function() { return 'admin and some words not allowed'; }); ``` You can even go...

The sound wave preview kind of overflows to the left on the small screen. chrome: v107

I encountered this error specifically when handling incoming calls. Based on my experience, it was related to the **identity** parameter used while generating the access token. For example, consider a...