Search Result:
NayanX NayanX
Email:
Owner: https://nayanx.com
User ID: 166547
phlamez phlamez
Email:
Owner: https://www.phlamez9ja.com.ng
User ID: 166626
Evansp Evansp
Email:
Owner: https://minichat.wapka.co
User ID: 166682
Yogzone Yogzone
Email:
Owner: https://Google
User ID: 166743
komangsgh komangsgh
Email:
Owner: https://
User ID: 166910
News Feed
ramadan22 · Published on 2022-07-18 10:13:29 (2 years ago )
question for admin.

the script you use to upload images in (imgur), where is the images go in imgur?.
what i mean is imgur is use this images as publick or its private? if public, where is the page to view? 
comment
How to build different page pattern url structure
mario · Published on 2022-07-18 07:37:58 (2 years ago )
Look it is very case sensitive...

/(?<token>[0-9]+)/* - link /index/123456 - :VAR(token);

/(?<token>[a-z]+[0-9]+)/* - link /index/abcdtoz0123456789 - :VAR(token);

/(?<token>[A-Z]+[a-z]+[0-9]+)/* - link /index/ABCabc01239 - :VAR(token);

/(?<token>[a-z-0-9]+)/* - link /index/a1b2c3d4 - :VAR(token);

if multiple then url must be sensitive
/(?<token>[a-z]+)/*/(?<session>[0-9]+)/* - link /index/abcd/012349 - token is: :VAR(token); and session: :VAR(session);

if tripple then url also must be sensitive
/(?<token>[a-z]+)/*/(?<session>[A-Z]+)/*/(?<apikey>[0-9]+)/* - link /index/abcd/ABCDE/012349

if want to reject some number
/(?<token>[0-5]+)/* - link /index/0123456789 - :VAR(token); 6789 will not show

if want start Capital
/(?<token>[A-z]+)/* - link /index/Wapka /index/wapka
comment
Why i should not use any file url thats is not uploaded in wapka
mario · Published on 2022-07-18 05:57:03 (2 years ago )
All you need to do is to upload the file into wapka filemanager or import the file into wapka filemanager by coping the url. check if the file is image and have a watermark website link do not use it dear developers. also see effect http://forum.wapka.org/view/34257/do-not-upload-copyrighted-content-to-wapka?q=do-not-upload-copyrighted-content-to-wapka&id=34257&uid=135624
comment
How to set file upload variable
mario · Published on 2022-07-18 05:43:50 (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>
comment
Credit user 10point when added comment to post
mario · Published on 2022-07-18 05:06:03 (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.
comment
Remove wapka bottom footer ads - wapka popup ads remove
hridoymini · Published on 2022-07-18 04:29:25 (2 years ago )
Wanna remove wapka ads?
See this post
How to remove wapka Popup ads - Wapka Bottom ads Remove code
comment
News Feed
hridoymini · Published on 2022-07-18 03:42:54 (2 years ago )
User post a comment to get point... How can i add this?
comment
News Feed
Userdeleted · Published on 2022-07-17 21:58:51 (2 years ago )
The other pictures don't work?
comment
News Feed
mario · Published on 2022-07-17 11:19:04 (2 years ago )
Hello Developers,You know that message inbox(group) doesn't bring the newest received message to top. i suggest we will also use api to do those stuff possible... am coming let me create example to share.
comment
How to get wapka user info by code without user lister
mario · Published on 2022-07-16 14:00:43 (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--!!>
comment