Hi, guest!
More
Chat
If you get an error during the chat, please Reload the page !
News Feed
"मंज़िलें उन्हीं को मिलती हैं, जो अपने हौसलों से डरते नहीं। वैकेंसी न आने से हताश न हों, यह समय अपनी कमजोरी को ताकत बनाने का है, ताकि जब वैकेंसी आए, तो पहली बार में ही बाजी मार सकें।" "जब वैकेंसी न आए, तो समझो सरकार तुम्हें और भी बेहतर बनने का मौका दे रही है। तैयारी इतनी खामोशी से करो कि तुम्हारी सफलता शोर मचा दे।" "याद रखो, जो आज छोड़ देगा, वो कल वैकेंसी आने पर भी पीछे रह जाएगा। यह तैयारी का नहीं, तपस्या का समय है।"
comment
Media Post - Mobile Friendly
Happy Christmas1735089624
Salmonvikash Published on 2024-12-25 01:20:24 2 years ago
comment
Media Post - Mobile Friendly
UnitedMuslim Published on 2024-12-09 11:52:40 2 years ago
The Arabic word munāfiq (منافق) means "hypocrite" or "false Muslim". In Islam, it refers to someone who appears to be Muslim but is actually non-Muslim and seeks to undermine the Muslim community. The Quran's 63rd chapter, Al-Munafiqun (المنافقون), is about hypocrites and has 11 verses. Islamic tradition has labeled Abd Allah ibn Ubayy as a munāfiq and the "leader of the munāfiqun". Although he appeared to convert to Islam when the Islamic prophet Muhammad arrived, he remained treacherous to Islam until his death.
comment
Mobile Friendly Post Widget
Dua for entering in Washroom or toilet
<br><b> Read this dua when u enter in any washroom or toilet. It will blind the male jinn and female jinn's eyes they will not able to see you or harm you whenever you read this dua before enter in any washroom or toilet. Kindly share this dua to your family and friends. Jazakallah :) </b>
comment
Mobile Friendly Post Widget
Aytal Kurshi
<br> Read this duaa before sunrise and before sunset<br> Also read this dua and blow urself when you are going on journey or step outside of your home 🏡. Jazakallah :-)
comment
Mobile Friendly Post Widget
What is Sadaqa Jariyah in Islam ?
Sadaqa Jariyah is an Islamic practice of ongoing charity that continues to benefit others even after the donor's death. It's considered one of the most rewarding deeds in Islam, and the donor is believed to receive ongoing rewards from Allah.
comment
Mobile Friendly Post Widget
News Feed
please how to display site name and page link in lua
comment
Mobile Friendly Post Widget
Simple login page code using Lua scripting
<div class="content">Hello! I would like to share a simple code for a login page using Lua scripting. You are free to style the HTML codes however you want.<br> The code can be a little challenging to understand at first, but feel free to ask if you don't understand any part.<br> See also: <a href="https://forum.wapka.org/viewtopic.php?t=2057" class="postlink">Simple register page code using Lua scripting</a><br> <br> How to use it: <ol style="list-style-type:decimal"> <li>Log in to the Wapka Dashboard (<a href="https://web.wapka.org/dashboard" class="postlink">https://web.wapka.org/dashboard</a>);</li> <li>Select your website from the "Your services" list;</li> <li>Now create a new page called "login" (Basic Function &gt; New Page) - you can skip this step if you already have a login page and want to use it.</li> <li>Now open the login page we created and go to Advanced function &gt; Script, and finally paste the following Lua code into the textarea:</li> </ol> <div class="codebox"><p>Code: <a href="#" onclick="selectCode(this); return false;">Select all</a></p><pre><code>if (env.userid ~= 0) then -- Check if the user is already logged in

url.redirect("/") -- If yes, redirect to the main page end if (req.method == "POST") then -- Checks if the login form has been submitted

error_message = nil -- Starts error message as null

username = req.post.username -- Gets the username from the POST request

password = req.post.password -- Gets the password from the POST request

continue = req.get.continue -- Useful if the user came from another page

if continue == nil then continue = "/" end -- Checks if a continue URL has been defined, if not, it is defined as the home page

if (username == "" and password == "") then -- Checks if the username and password are empty



error_message = "You must enter your username and password."

elseif (username == "") then -- Checks if username is empty



error_message = "You must enter your username."

elseif (password == "") then -- Checks if password is empty



error_message = "You must enter your password."

else -- Continue with login if username and password have been filled in



local param = { -- Sets the parameters for the API login method





username = username,





password = password



}



local is_ok, login, info, error_login = api.user_login(param)



if (is_ok) then -- Username and password are correct and login was successful





url.redirect(continue) -- Redirects to the destination defined in continue



else -- An error occurred while trying to login





error_message = error_login -- defines the error message as the one received in the login method



end

end

if (error_message) then -- Checks if any errors occurred and sets an error message div to display on the page



html_error = [=[&lt;div class="error-message"&gt;%s&lt;/div&gt;]=]



error_message = string.format(html_error, error_message)

end end local html_code = [=[ &lt;h2&gt;Log-in to your account&lt;/h2&gt; %s &lt;!-- This is where the error message will be --&gt; &lt;form method="post"&gt; &lt;div class="input"&gt; &lt;label for="username"&gt;Username:&lt;/label&gt;&lt;br&gt; &lt;input type="text" name="username" value="%s" placeholder="Username" id="username"&gt; &lt;/div&gt; &lt;div class="input"&gt; &lt;label for="password"&gt;Password:&lt;/label&gt;&lt;br&gt; &lt;input type="password" name="password" value="%s" placeholder="Password" id="password"&gt; &lt;/div&gt; &lt;div class="input-button"&gt; &lt;input type="submit" class="input-button" value="Login"&gt; &lt;/div&gt; &lt;/form&gt; &lt;div class="register-message"&gt; Not registered yet? &lt;a href="/register"&gt;Register&lt;/a&gt; &lt;/div&gt; ]=] print(string.format(html_code, error_message or "", username or "", password or "")) </code></pre></div></div> <div class="notice"> Credit - <a href="/view/135624?q=francisco&id=135624&uid=135624" class="username">francisco</a> </div>
comment
Mobile Friendly Post Widget
Wapka code block ip address
Rule: :VAR(USER_AGENT).IFEQ(Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36).THEN(#DISABLE#);
comment
Mobile Friendly Post Widget
https://forum.wapka.org
https://forum.wapka.org Wapka forum codes and Real updates about Wapka.org are available here. <br> <br> <br> <div><a href="/"><div style="text-align: center; color: black; font-size: 25px;">WAPKA</div></a></div> <div><strong>Create your own WAP site simple and fast!</strong></div> <div class="bar1">

<div class="bar1top">What is WAPKA?</div>



<div class="info">





Wapka is a platform which provides free service for users to create websites.<br/> With Wapka you can create own professional looks WAP site simply and fast without knowledge of any programming language.<br/> You can use many commands and pseudotags, which help you to create dynamic website.<br/> You can use html, text, css, JavaScript, xml or JSON to make your website attractive.<br/> If you don't know how to use tags & function you can just use default themes.<br/> We are committed to help more users to have their own websites.<br/> Creating website in Wapka, it does not require professional skills and server space.<br/> We can be very easy to create our own website.<br/> Using services on Wapka.org is absolute free, so start building your website just right now :)



</div>







<a href="/login"><button class="button">Login &rarr;</button></a>



<a href="https://wapka.org/register"><button class="button">New Account</button></a>

</div>
comment
Mobile Friendly Post Widget
Wapka Official Forum
<div class="postbody"> <div id="post_content2860"> <h3 class="first"> <a href="./viewtopic.php?p=2860&amp;sid=c17b740bdb4363bad25d051a36ebca91#p2860">https://forumm.wapka.co</a> </h3> <div class="content">Hey Wapka developers our first old Wapka forum site forum.wapka.co was restricted and down by the Wapka administration.<br> Whenever you search on google you will get most results from froum.wapka.co not from forum.wapka.io i think this is reason he let down the forum.wapka.co <br> today I am giving full authority to Wapka admin to control the link forum.wapka.co I have no objection thank you. i am going to replace the Domin name with <a href="https://forumm.wapka.co" class="postlink">https://forumm.wapka.co</a> thank you<br> <br> Important notice:<br> Due to Some reason<br> Real ChaTLook has been Removed <br> Real Dschat has been Removed<br> <a href="https://Forumm.wapka.co" class="postlink">https://Forumm.wapka.co</a> don't owe These Domin name anymore</div> </div> </div>
comment
Mobile Friendly Post Widget
News Feed
I need blog theme like as worldprss theme blogsite ( blogsite ) on wapka can anyone provide me these type theme ?
comment
Mobile Friendly Post Widget
News Feed
Hello! Good day, I hope everyone is doing well
comment
News Feed News Feed [ ] (UnitedMuslim)
Category
Statistics
Total posts 839 •Total Files 172 •Total members 393 •Our newest member weefewfwe4w