Search Result: wapka
----------(Post-Search)---------->
[HELP] Right Now Wapka Showing Unregistered User Uploading Files As Admin Uploading Files Fix This
sajeevscg 路 Published on 2021-11-29 11:13:40 (4 years ago )
sajeevscg 路 Published on 2021-11-29 11:13:40 (4 years ago )
#Now Unregistered user uploaded files shown as admin upload files,#So, i need change it to (GUST) Upload [Who upload files without register] #*Example Link[*Education Purpose*](http://statusload.wapka.xyz/download/243875/vid-20211111-wa0000) #i cant edit download page Becouse (*1.Lots of advanced tag used in download page. *2.its totaly wast my time. *3.use mobile to update site.) #im using difrent directores to upload files for users and admins. #right now i just creat a code馃憞 :VALUE(%dir%).IFIN(["00000","00000","00000",]).THEN(ADMIN_UPLOAD).ELSE(GUST_UPLOAD).OR.VALUE(%dir%).IFIN(["1111","1111","1111"]).THEN.DATA(#GET(username)#).ELSE.NONE; #All (0000) is Admin upload dir #All (1111) is user upload dir #iAm send user from download page to user file page via https-example.com/userfile?userid=%id%&username=%username% format *But its not wirking! *#Any one have a better mind,idea to solve ma problum!
| comment |
|
----------(Post-Search)---------->
wapka clock/time/date codes
mario 路 Published on 2021-11-20 10:56:59 (4 years ago )
mario 路 Published on 2021-11-20 10:56:59 (4 years ago )
<br><div class="list1" style="margin-left:10px;margin-right:10px;background:aliceblue;border-radius:15px;padding:10px;box-shadow:3px 3px 9px grey;">:DATE(D); - to show todays day in name<br>:DATE(d); - to show todays day in number<br>:DATE(m); - to show todays month in number<br>:DATE(M); - to show todays month in name<br>:DATE(s); - seconds<br>:DATE(S); - to show todays day in 2digit name<br>:DATE(H); - hours<br>:DATE(mm); - minutes<br>:DATE(utc); - UTC</div><br>
| comment |
|
----------(Post-Search)---------->
Wapka newsfeed personal like & unlike button code
mario 路 Published on 2021-11-20 10:15:29 (4 years ago )
mario 路 Published on 2021-11-20 10:15:29 (4 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
| comment |
|
----------(Post-Search)---------->
Why all wapka developer must create register form that save user password
mario 路 Published on 2021-11-19 15:23:10 (4 years ago )
mario 路 Published on 2021-11-19 15:23:10 (4 years ago )
<div class="list1" style="margin-left:10px;margin-right:10px;background:crimson;color:white;">is 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 & session </div><div class="list1" style="margin-left:10px;margin-right:10px;background:lightblue;"><div style="background:blue;color:white;text-align:center;">Note some people can use these to hacked users psw.</div>Register config. <code><*password>:POST(password);<*/password> <*var_password>:POST(password);<*/var_password></code> so these config can save user password at once for recovering password Read how to recovered psw when forgot it.</div>
| comment |
|
----------(Post-Search)---------->
how to submit wapka login form without clicking the button
mario 路 Published on 2021-11-18 13:01:41 (4 years ago )
mario 路 Published on 2021-11-18 13:01:41 (4 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
| comment |
|
----------(Post-Search)---------->
Wapka Helper function Tags
kritika 路 Published on 2021-11-15 14:17:22 (4 years ago )
kritika 路 Published on 2021-11-15 14:17:22 (4 years ago )
<div class="bar1">
<div class="bar1top">Helper function</div>
<div class="info">You can use helper function with tag codes. Helper function is very useful for data processing.
WAPKA function name is case sensitive. To make function chain use (.) dot</div>
<div class="bar13"><b>:GET(name);</b> - To get data from url</div>
<div class="bar14"><b>:POST(name);</b> - To get http post data</div>
<div class="bar13"><b>:COOKIE(name);</b> - To get http cookie</div>
<div class="bar14"><b>:REQUEST(name);</b> - Get combined data from get, post & cookie</div>
<div class="bar13"><b>:VALUE(data);</b> - This function is used to set function parameter.</div>
<div class="bar14"><b>:DATA(Function or tag or data);</b> - You can get data from many function like :DATA(Name: #GET(name)# ID: #VAR(USER_ID)#);</div>
<div class="bar13"><b>:SET(name);</b> - You can use this function to define variable. :VALUE(test data).SET(new_var); You can also call multiply function and make chain - :GET(id).INT.SET(ID); here we get data from url then make sure it number then set variable.</div>
<div class="bar14"><b>:SAVE(name);</b> - This is similar as SET but this will save data in server (session) and you can use this data later on any page</div>
<div class="bar13"><b>:VAR(name);</b> - To get data from variable use this function</div>
<div class="bar14"><b>:DATE();</b> - This function is for date and time. To format current date Use :DATE(formater); You can format any date from other function and also time ago like :VALUE(Dec 2020).DATE(AGO); to use with other function use :VALUE(%date%).DATE(Formater or AGO);</div>
<div class="bar13"><b>:SLUG(make url);</b> - Make SEO frendly url from any text. You can use with other function/tag like :SLUG(%title%);</div>
<div class="bar14"><b>:URL_ENCODE(url); , :HTML_ENCODE(html);, :BASE64_ENCODE(data);)</b> - To encode data</div>
<div class="bar13"><b>:URL_DECODE(url); , :HTML_DECODE(html);, :BASE64_DECODE(data);)</b> - decode encoded data</div>
<div class="bar14"><b>:REMOVE_TAG;</b> - to remove html tag from input. usage - :REMOVE_TAG(<tag>this is tag</tag>); To allow tag use like - :VALUE(<b>this is bold</b><i>this is italic</i>).REMOVE_TAG(<i>);</div>
<div class="bar13"><b>:LOWER(MAKE IT LOWER);</b> - convert all character to lower case.</div>
<div class="bar14"><b>:UPPER(lower to upper)</b> - convert all character to upper case</div>
<div class="bar13"><b>:TRIM( space );</b> - Remove whitespace from data. You can also remove other character like :VALUE(-----test--------).TRIM(-); this will remove all -</div>
<div class="bar14"><b>:CHOP(space );</b> - Same as TRIM but remove from at the end of string</div>
<div class="bar13"><b>:CUT(["start", "end"]);</b> - Get part of string from start to end you can also set starting and ending position like :VALUE(this is test).CUT([0, 10]); to get first 10 character</div>
<div class="bar14"><b>:LENGTH(data);</b> - length</div>
<div class="bar13"><b>:INT(1234abcd);</b> - To make sure data is numeric</div>
<div class="bar14"><b>:NULL(nothing);</b> - If you want to call a function and hide result use this at the end. :GET(data).SET(var).NULL; set variable and display nothing</div>
<div class="bar13"><b>:REPLACE(["search", "replace"]);</b> - This function is used to search and replace you can pass json array or string as parameter. Usage :VALUE(test_data).REPLACE("_data");</div>
<div class="bar14"><b>:RANDOM(["one", "two", "three", "More");</b> - Get random value form JSON array or string. To generate random number use like :RANDOM("123456790");</div>
<div class="bar13"><b>:PLUS(numeric value);</b> - Math function.</div>
<div class="bar14"><b>:MINUS(numeric value);</b> - Math function.</div>
<div class="bar13"><b>:DIVIDE(numeric value);</b> - Math function.</div>
<div class="bar14"><b>:MULTIPLY(numeric value);</b> - Math function.</div>
<div class="bar13"><b>Math function usage:</b> - To calculate data you can use math function. Example usage: :GET(id).PLUS(100); , :VALUE(100).PLUS(100).DIVIDE(2);, :VAR(number).PlUS.GET(number);</div> </div>
| comment |
|
----------(Post-Search)---------->
what is wapka code RULE means?
mario 路 Published on 2021-11-14 07:52:31 (4 years ago )
mario 路 Published on 2021-11-14 07:52:31 (4 years ago )
anytime i add code i see RULE under the code.... code rule is the easy way to detect and ban or command what will happen to the code when success not archeived.
| comment |
|
----------(Post-Search)---------->
Can we Create Pishing or hacking site on wapka ?
sapna 路 Published on 2021-11-12 17:25:53 (4 years ago )
sapna 路 Published on 2021-11-12 17:25:53 (4 years ago )
Ans No, Now we cannot create any Pishing or hacking sites on wapka. It violates rule of wapka and your account will be permanently blocked as well as your site from wapka admins forever. So in my suggestion don't try to create any phishing or hacking site on wapka.Have fun ! :-)
| comment |
|
----------(Post-Search)---------->
Wapka Tag codes
aishwarya 路 Published on 2021-11-11 14:43:37 (4 years ago )
aishwarya 路 Published on 2021-11-11 14:43:37 (4 years ago )
<div class="bar1top">Tags</div> <div class="info">Tag code is useful for dynamic website. You can use this tag in any wapka function.</div> <div class="bar13"><b>:VAR(SITE_NAME);</b> - To get your website name.</div> <div class="bar14"><b>:VAR(PAGE_NAME);</b> - To get page name</div> <div class="bar13"><b>:VAR(PAGE_ID);</b> - To get page id</div> <div class="bar14"><b>:VAR(PAGE_TYPE);</b> - To get page content type (default = text/html)</div> <div class="bar13"><b>:VAR(USER_NAME);</b> - To get user name</div> <div class="bar14"><b>:VAR(USER_ROLE);</b> - To get user role</div> <div class="bar13"><b>:VAR(USER_ID);</b> - To get logged user id</div> <div class="bar14"><b>:VAR(USER_EMAIL);</b> - To get logged user email</div> <div class="bar13"><b>:VAR(USER_TYPE);</b> - To get user account type</div> <div class="bar14"><b>:VAR(IP);</b> - To get IP address</div> <div class="bar13"><b>:VAR(USER_AGENT);</b> - To get http user agent string</div> <div class="bar14"><b>:VAR(DEVICE);</b> - To get device type (Desktop or Mobile)</div> <div class="bar13"><b>:VAR(BROWSER);</b> - To get browser name</div> <div class="bar14"><b>:VAR(OS);</b> - To get user operating system name</div> <div class="bar13"><b>:VAR(PROTOCOL);</b> - To get url protocol e.g. http</div> <div class="bar14"><b>:VAR(HOST);</b> - To get http host</div> <div class="bar13"><b>:VAR(URL);</b> - To get full url or Uniform Resource Locator</div> <div class="bar14"><b>:VAR(URI);</b> - To get Uniform Resource Identifier</div> <div class="bar13"><b>:VAR(URL_PATH);</b> - To get path</div> <div class="bar14"><b>:VAR(URL_QUERY);</b> - To get query string</div> <div class="bar13"><b>:VAR(HTTP_METHOD);</b> - HTTP request method</div> <div class="bar14"><b>:VAR(HTTP_REFERER);</b> - To get http referer</div> </div>
| comment |
|
#So, i need change it to (GUST) Upload [Who upload files without register]
#*Example Link[*Education Purpose*](http://statusload.wapka.xyz/download/243875/vid-20211111-wa0000)
#i cant edit download page Becouse
(*1.Lots of advanced tag used in download page.
*2.its totaly wast my time.
*3.use mobile to update site.)
#im using difrent directores to upload files for users and admins.
#right now i just creat a code馃憞
:VALUE(%dir%).IFIN(["00000","00000","00000",]).THEN(ADMIN_UPLOAD).ELSE(GUST_UPLOAD).OR.VALUE(%dir%).IFIN(["1111","1111","1111"]).THEN.DATA(#GET(username)#).ELSE.NONE;
#All (0000) is Admin upload dir
#All (1111) is user upload dir
#iAm send user from download page to user file page via https-example.com/userfile?userid=%id%&username=%username% format
*But its not wirking!
*#Any one have a better mind,idea to solve ma problum!