Hello, Quest!
Chat
If you get an error during the chat, please Refresh the page!
----------(1-File-Search)---------->
Related files
Admin
· Published on 2024-07-27 07:34:24 (4 months ago )
Visit http://finewap.tk
views(0) | comment |
----------(1-File-Search)---------->
Forum Creator
salamonvikkas
· Published on 2024-03-16 02:36:17 (8 months ago )
Visit http://finewap.tk
views(0) | comment |
How to set file upload variable
salamonvikkas · Published on 2022-12-06 16:55:07 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:55:07 (2 years ago )
Very easy but is the only permission key for you to edit file. without adding variable in file upload,then it seams the file doen't belongs to you anymore <'set_var_width>...<'/set_var_width> <'set_var_height>...<'/set_var_height> <'set_var_description>...<'/set_var_description> <'set_var_meta_content>upload<'/set_var_meta_content> <'set_var_meta_type>...<'/set_var_meta_type>
like | comment |
Credit user 10point when added comment to post
salamonvikkas · Published on 2022-12-06 16:54:20 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:54:20 (2 years ago )
Yeah,these is how it works create page called "getpoint.html" --user editor ---configuration <'userid>:VAR(USER_ID);<'/userid><'set_point>:POST(pt);<'/set_point> ---code <'input type="hidden" name="pt" value=":VALUE(%point%).PLUS(10);"/><'button id=":VALUE(%notify%).IFEQ(Success).THEN().ELSE(add);">%notify%<'/button> <'script> function submit2() { document.submitForm2.submit2( // Submits the form without the button } setTimeout(function submit2(){ document.getElementById("add").click() }, 0000);); <'/script> Now in your post comment form just add <'embed src=":VALUE(%notify%).IFEQ(Success).THEN(/getpoint.html).ELSE();" style="width:0px;height:0px;border:0px;margin:0px;"/> When comment page refresh user will not be credited untill the %notify% says "Success" thats all.
like | comment |
How to get wapka user info by code without user lister
salamonvikkas · Published on 2022-12-06 16:53:13 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:53:13 (2 years ago )
Yes possible we are going to use angular js to make special and useful even when where we are going to display the user info is not a wapka site. here we go. Create page called "import.js". /import.js ---user lister ----configuration: <'id>:GET(userid);<'/id> ----code: var app = angular.module('User', []); app.controller('Information', function($scope) { $scope.Username= "%username%"; $scope.Id= "%id%"; $scope.Avatar= "%avatar%"; $scope.Logindate= "%logindate%"; $scope.Country= ":VALUE(%country%).OR(%var(country)%);"; }); you can add more scopes Now all is done. Any page or site just add <'script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"><'/script> <!!--box block--!!> <'div ng-app="User" ng-controller="Information">Hello {{Username}},you are welcome to my site and your info: Username: {{Username}} Id: {{Id}} more and more scope. <'/div>then under <'script src="http://mywapkasite.com/import/?userid=1234"><'/script> <!!--box block--!!>
like | comment |
list of browsers name in wapka database for :VAR(BROWSER)
salamonvikkas · Published on 2022-12-06 16:31:02 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:31:02 (2 years ago )
-:VAR(BROWSER); --Opera --Chrome --Safari --Firefox --Handheld --Ucweb
like | comment |
how to build real rating 5 star by %total% count
salamonvikkas · Published on 2022-12-06 16:29:51 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:29:51 (2 years ago )
657 76 Home » Wapka Codes 2022 » how to build real rating 5 star by %total% count mario mario 5 months ago Hello i heard you want to build a rating 5 star image for a content like post,musics,videos All you need are here. Step 1 build a page called "count.js" --/count.js ---Api Data Lister ----configuration: <'pid>:GET(postid);<'/pid><'limit>1<'/limit><'key1>rates<'/key1> ----code(header): document.getElementById(":GET(postid);star1).src = ":VALUE(%total%).IFGE(10).THEN(yellowstar.png).ELSE(greystar.png);" document.getElementById(":GET(postid);star2).src = ":VALUE(%total%).IFGE(20).THEN(yellowstar.png).ELSE(greystar.png);" document.getElementById(":GET(postid);star3).src = ":VALUE(%total%).IFGE(30).THEN(yellowstar.png).ELSE(greystar.png);" document.getElementById(":GET(postid);star4).src = ":VALUE(%total%).IFGE(40).THEN(yellowstar.png).ELSE(greystar.png);" document.getElementById(":GET(postid);star5).src = ":VALUE(%total%).IFGE(50).THEN(yellowstar.png).ELSE(greystar.png);" ----code: :NULL(); Now create new page called "newsfeed.html" etc. --/newsfeed.html ---api lister or any attach <!!postbox start!!>contents etc <img id="%id%star1"><img id="%id%star2"><img id="%id%star3"><img id="%id%star4"><img id="%id%star5"> then make sure these script is under <script src="/count.js/?postid=%id%"></script> <!!postbox closed!!> the box of the content you are listing ---attach key1-rates when adding comments,likes,etc pointed to the id api lister data.
like | comment |
How to display my full users lister in any website.
salamonvikkas · Published on 2022-12-06 16:25:36 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:25:36 (2 years ago )
is possible we need js experience user.js: var list = "html code here" document.getElemetById("userlist").innerHTML = list; mysite.com/index.html: <div id="userlist"></div> <script src="/user.js"></script> file js -userlister header code: var list = " code: html here footer code: " document.getElementById("userlist").innerHTML = list;
like | comment |
converts comma separated values to random
salamonvikkas · Published on 2022-12-06 16:15:07 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:15:07 (2 years ago )
value tags: pop, rock, metal, edm :URL_ENCODE(["%var(tags)%"]).REPLACE(["%2C%20", "%22%2C%20%22"]).URL_DECODE.RANDOM.SET(related).NULL; result var(related) : edm (one of the random var tags above)
like | comment |
how to create a shoutbox?
salamonvikkas · Published on 2022-12-06 16:12:24 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:12:24 (2 years ago )
Post creator: <*div class="list"><*b>What's On Your Mind?<*/b><*br/><*textarea type="text" name="shout"><*/textarea><*br/><*input type="submit" name="submit" value="Share" /> or <*img src="http://static.ak.fbcdn.net/rsrc.php/v1/yz/r/StEh3RhPvjk.gif"/> <*a href="/photo">Photo<*/a><*/div> Config:<*forumid>14630<*/forumid><*title>salamonvikkas<*/title><*content>:*POST(shout);<*/content> <*status>published<*/status> Post lister: <*a href="/profile">%username%<*/a><*br/>Says: %content%<*br/>:*VALUE(%delete%).IFEQ(/delete/post/%id%).THEN(<*a href="%delete%">Delete<*/a>).ELSE.NULL;<*br/> Config:<*limit>6<*/limit><*status>published<*/status><*order>new<*/order><*page>:*GET(page);<*/page><*url>?page=<*/url>
like | comment |
How many programe skill wapka accept?
salamonvikkas · Published on 2022-12-06 16:08:40 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:08:40 (2 years ago )
1. Tags & functions 2. Html 3. Javascript 4. Jquery 5. css 6. xml 7. wapka script (ws) [new]
like | comment |
What type of site wapka can create?
salamonvikkas · Published on 2022-12-06 16:07:09 (2 years ago )
salamonvikkas · Published on 2022-12-06 16:07:09 (2 years ago )
1. Chat site 100% 2. Video Share 100% 3. Music Share 100% 4. Graphic Work 100% 5. Blog site 100% 6. Additive Game 92% 7. Mailing to Gmail 25% 8. Map site 55% 9. Website builder 90% 10. Tech & science
like | comment |
Update
File Upload api data.jpg [ ] (297.07 KB)(salamonvikkas)
File Upload User Lister.jpg [ ] (194.53 KB)(salamonvikkas)
File Upload File Uploader.jpg [ ] (299.84 KB)(salamonvikkas)
Wapka Codes 2023 Long time login code [ ] (salamonvikkas)
Wapka Codes 2022 How to set api data & structure [ ] (salamonvikkas)
Wapka Codes 2022 How to let post visible to people who followed you. [ ] (salamonvikkas)
Wapka Codes 2022 How to build different page pattern url structure [ ] (salamonvikkas)
Wapka Codes 2022 How to set file upload variable [ ] (salamonvikkas)
Categorys
News Feed (25)
Wapka Codes 2021 (40)
Wapka Codes 2022 (19)
Wapka Codes 2023 (2)
File Upload (4)
Wapka Images 2021 (15)