Search Result:
9jabits 9jabits
Email:
Owner: https://9jabits.wapka.co
User ID: 169351
Platini Platini
Email:
Owner: https://
User ID: 169403
firdaus firdaus
Email:
Owner: https://
User ID: 169475
Ridoyahmed Ridoyahmed
Email:
Owner: https://Ridoyahmed.cks
User ID: 169607
STARCHAT STARCHAT
Email:
Owner: https://starchat.wapka.co
User ID: 169692
News Feed
t1quan · Published on 2022-07-19 10:38:06 (4 years ago )
i had the youtube api key and enabled it and also saw the json page code that youtube sent.
i went to wapka.org to create a youtube video playlist api key with wapka's code. But it doesn't show anything =( 

comment
News Feed
mario · Published on 2022-07-19 09:40:07 (4 years ago )
Hello Developers,if you have any work note coding you have been trying to build but not responding to your desire ask!
comment
News Feed
mkhossainx · Published on 2022-07-19 08:42:47 (4 years ago )
How to create custom 404 page in wapka????
comment
How to let post visible to people who followed you.
mario · Published on 2022-07-18 18:24:10 (4 years ago )
These time no one will even see the post trash half. here we go.


create page called "followers.js"

/statement.js
--Api Data Lister
---configuration
<pid>:GET(owner);</pid>
<key1>followers</key1>
<key2>:VAR(USER_ID);</key2>
---code
document.getElementById(":GET(status);").style.display = "block";
---code(default)
document.getElementById(":GET(status);").style.display = "none";

Now create new page called "private.js"
--New Tag Code
document.getElementById(":GET(status);").style.display = ":GET(owner).IFNE.VAR(USER_ID).THEN(none).ELSE(block);";

we are true now go to newsfeed.html
<div><div id="%id%">news code here</div><script src=":VALUE(%key3%).REPLACE([["private","followers","public"],["/private/?owner=%userid%&status=%id%","/followers/?owner=%userid%&status=%id%","#index"]]);"></script></div>
comment
News Feed
itzdaniel · Published on 2022-07-18 15:46:41 (4 years ago )
Hey guys can anyone tell me code for putting status post for user 
comment
News Feed
ramadan22 · Published on 2022-07-18 10:13:29 (4 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 (4 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 (4 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 (4 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 (4 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