Hello, Quest!
"Get Knowledge And Spread Knowledge"
Chat
If you get an error during the chat, please Refresh the page!
Wapka jump to page code
salamonvikkas · Published on 2024-12-09 17:17:02 (2 months ago )
salamonvikkas · Published on 2024-12-09 17:17:02 (2 months ago )
like | comment |
----------(1-File-Search)---------->
Related files
Admin
· Published on 2024-07-27 07:34:24 (6 months ago )
Visit http://finewap.tk
views(0) | comment |
----------(1-File-Search)---------->
Forum Creator
salamonvikkas
· Published on 2024-03-16 02:36:17 (11 months ago )
Visit http://finewap.tk
views(0) | comment |
How to remove or replace numbers from or of value
salamonvikkas · Published on 2022-12-05 18:32:36 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:32:36 (2 years ago )
To remove use :VALUE(12345).TRIM(4); finally 4 have been remove from 12345 what is left is 1235 To replace use :VALUE(12845).REPLACE(["8","3"]); finally 8 has been replace with 3 therefore output is now 12345
like | comment |
How to randomix text when page refresh (default Quotes)
salamonvikkas · Published on 2022-12-05 18:31:03 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:31:03 (2 years ago )
You dont know how to randomize text/div when people can be able to read your lovely quotes? then use :RANDOM(["Wapka is the easiest wap builder","Poptalk is created for chat and sharing with friends","Statusload is one of the best place to download videos","podyt is the famous wap were people like to watch movies of choice online","poptalk for music is a wap that enable you to play music online with 0.1Megabyte"]);
like | comment |
Setting a different time zone for the DATE function
salamonvikkas · Published on 2022-12-05 18:12:23 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:12:23 (2 years ago )
657 76 Home » Wapka Codes 2021 » Setting a different time zone for the DATE function fchagas97 fchagas97 1 year ago Due to an apparent bug, the DATE function always uses the UTC time zone, even if you have set a different time zone in your Site Settings. To display the date in a different time zone, use the following workaround as an example: :VALUE(+03:00).DATE(); And you will have the time displayed in the UTC-3:00 time zone (I can't explain why you use + to set a negative time zone o_o) If you want the time displayed in UTC+3:00, use the following example: :VALUE(-03:00).DATE(); Note: the function will not take into account whether it is daylight saving time or not in the time zone you chose, because technically the time zone is still UTC.
like | comment |
wapka clock/time/date codes
salamonvikkas · Published on 2022-12-05 18:09:51 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:09:51 (2 years ago )
:DATE(D); - to show todays day in name
:DATE(d); - to show todays day in number
:DATE(m); - to show todays month in number
:DATE(M); - to show todays month in name
:DATE(s); - seconds
:DATE(S); - to show todays day in 2digit name
:DATE(H); - hours
:DATE(mm); - minutes
:DATE(utc); - UTC
like | comment |
Wapka newsfeed personal like & unlike button code
salamonvikkas · Published on 2022-12-05 18:07:52 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:07:52 (2 years ago )
we know that api data is not only made for comment but can do more than what you think.... wapka api data can save people who like your post or unlikes. by using key1 to seperate comment from likes & unlikes go to your post comment page edit api data lister add <*key1>comment<*/key1> for comment lister. create another api data lister then add these <*key1>like<*/key1> for like lister. and create another api lister then <*key1>unlike<*/key1> we have succed seperating comment from likes an unlikes lister then read previous wapka on how to add the counts in newsfeed in index
like | comment |
Why all wapka developer must create register form that save user password
salamonvikkas · Published on 2022-12-05 18:05:05 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:05:05 (2 years ago )
657 76 Home » Wapka Codes 2021 » Why all wapka developer must create register form that save user password mario mario 1 year agois to let register member who forgot password recover it easily than you wasting time to visit api data lister of guest posted that they lost their password... i have two (2) idea for recovering the password of a user and the first one is security question & email recovery password pattern set var_password in register form which collect psw and store for login & sessionNote some people can use these to hacked users psw.Register config.<*password>:POST(password);<*/password> <*var_password>:POST(password);<*/var_password>
so these config can save user password at once for recovering password Read how to recovered psw when forgot it.
like | comment |
How to I add forgot password?
salamonvikkas · Published on 2022-12-05 18:00:32 (2 years ago )
salamonvikkas · Published on 2022-12-05 18:00:32 (2 years ago )
in register form set var_password and use default :POST(password); for both < password > and < var_password > it will save user password so then create a page forgot password then code user lister search form let user lister < search > be :REQUEST(account); < / search > when visitor forget password then search account to ask visitor is these your account? if click Yes btn then direct visitor to page were he will input email address of that specific search account and then login replace var(password) account login direct to change account.
like | comment |
How to delete Api Data file
salamonvikkas · Published on 2022-12-05 17:53:21 (2 years ago )
salamonvikkas · Published on 2022-12-05 17:53:21 (2 years ago )
its good to delete api using js auto submit button form method="post" when action="/data/delete/%id%" button id="autosubmit" think of using rule to disable code when data api file delete success <*script type="text/javascript"> function submit2() { document.submitForm2.submit2(); // Submits the form without the button } setTimeout(function submit2(){ document.getElementById("autosubmit").click() }, 0000); <*/script>
like | comment |
how to replace your name with any content in message lister
salamonvikkas · Published on 2022-12-05 17:50:48 (2 years ago )
salamonvikkas · Published on 2022-12-05 17:50:48 (2 years ago )
:VALUE(%sender_id%).IFEQ.VAR(USER_ID).THEN(your content here).ELSE(%sender_id%);
like | comment |
how to submit wapka login form without clicking the button
salamonvikkas · Published on 2022-12-05 17:47:44 (2 years ago )
salamonvikkas · Published on 2022-12-05 17:47:44 (2 years ago )
We have specific js for you already your form button should have id="autologin" Javascript: function submit2() { document.submitForm2.submit2(); // Submits the form without the button } setTimeout(function submit2(){ document.getElementById("autologin").click() }, 0000); make sure login url config. Redirect to any page else archieved denied
like | comment |
Update
File Upload User Login.jpg [ ] (241.15 KB)(salamonvikkas)
File Upload IMG-20220518-WA0000.jpg [ ] (113.29 KB)(salamonvikkas)
File Upload IMG-20220625-WA0000.jpg [ ] (111.48 KB)(salamonvikkas)
Wapka Codes 2022 What type of site wapka can create? [ ] (salamonvikkas)
Wapka Codes 2022 Wapka Basic function [ ] (salamonvikkas)
Wapka Codes 2021 resize message lister %msg% image bbcode direct [ ] (salamonvikkas)
Wapka Codes 2021 How to set wapka theme [ ] (salamonvikkas)
Wapka Codes 2021 delete post creator only code [ ] (salamonvikkas)
Wapka Codes 2021 New wapka code called (link target v1.0) [ ] (salamonvikkas)
Wapka Codes 2021 Check if logged user is an Admin [ ] (salamonvikkas)
Categorys
News Feed (25)
Wapka Codes 2021 (40)
Wapka Codes 2022 (20)
Wapka Codes 2023 (2)
Wapka api (5)
File Upload (4)
Wapka Images 2021 (15)
Statistics
Total posts 1148 •Total Files 42 •Total members 39 •Our newest member Priyanka