Search found 68 matches

by francisco
Sat Mar 02, 2024 10:13 am
Forum: Newbies questions
Topic: Please respond to this
Replies: 15
Views: 15352

Re: Please respond to this

At first is wasn't even showing anything at all and then I tried to edit some part of the code and It started saying (Primary key relation error) each time a user tries to comment This error indicates that the PID and Category are not being set correctly. Let's say you have a link that goes to the ...
by francisco
Fri Mar 01, 2024 11:43 pm
Forum: Problems
Topic: How can I make a user not to see him/her self in list of users?
Replies: 8
Views: 8374

Re: How can I make a user not to see him/her self in list of users?

I noticed now that you are trying to use the User Lister function, I thought it was the Online User, sorry about that. Try this: Enter Codes: <li>%id% - %username% - %regdate%</li> Enter Config: <LIMIT>30</LIMIT> <ORDER>new</ORDER> <ID_NOT>{{VAR(USER_ID)}}</ID_NOT> Header: <h2>Welcome, {{VAR(USER_NA...
by francisco
Fri Mar 01, 2024 10:53 pm
Forum: Problems
Topic: How can I make a user not to see him/her self in list of users?
Replies: 8
Views: 8374

Re: How can I make a user not to see him/her self in list of users?

If you are the only user online of course nothing will be displayed
by francisco
Fri Mar 01, 2024 1:30 pm
Forum: Wapka REST API
Topic: REST API will be disabled soon
Replies: 5
Views: 101967

Re: REST API will be disabled soon

i understand the problem but it will be instantly removed when lua api is updated and documented i am doing work slowly that's why you have to wait a but more Oh that's great, please take your time to make everything perfect. This post was meant especially to poke at website owners who are storing ...
by francisco
Fri Mar 01, 2024 10:34 am
Forum: Wapka REST API
Topic: REST API will be disabled soon
Replies: 5
Views: 101967

Re: REST API will be disabled soon

Will the API endpoint never be disabled? Some website owners have gotten into the really bad habit of storing user passwords in variables (why!???) and the API ends up exposing this data to the whole world. https://res.cloudinary.com/fchagas97/image/upload/v1709289183/others/IMG_20240301_072321.jpg ...
by francisco
Thu Feb 29, 2024 12:13 am
Forum: Newbies questions
Topic: Please respond to this
Replies: 15
Views: 15352

Re: Please respond to this

Hariph wrote: Wed Feb 28, 2024 11:22 pm I tried this but it's isn't working it keeps showing error
Although I have api data for other purposes, what could be the problem
What error are you getting?
by francisco
Wed Feb 28, 2024 4:57 am
Forum: Promote your site
Topic: Download DJ Remix Songs
Replies: 2
Views: 3509

Re: Download DJ Remix Songs

I suggest changing the text font, the one being used makes the site look a bit amateurish and makes it a little difficult to read the content.
I recommend a sans serif font like Noto Sans, Roboto, Helvetica or the good ol' Arial.
by francisco
Tue Feb 27, 2024 6:21 am
Forum: Newbies questions
Topic: Please respond to this
Replies: 15
Views: 15352

Re: Please respond to this

(Please use more descriptive titles for your posts!)
Creating a Comment System with Wapka Data API
by francisco
Mon Feb 26, 2024 5:52 pm
Forum: Ask any question
Topic: How to create Paging using Lua?
Replies: 4
Views: 6060

Re: How to create Paging using Lua?

try something like this local post_ok, -- Checks whether the API query was successful post_list, -- List the result of the API query post_info, -- Contains information about the API query, useful for pagination! [Note 1] post_error -- Message returned in case of error = api.post_info(post_params) p...
by francisco
Mon Feb 26, 2024 3:18 pm
Forum: Ask any question
Topic: How to create Paging using Lua?
Replies: 4
Views: 6060

Re: How to create Paging using Lua?

Hello! The api.post_info method has 4 returns (as far as I know), namely¹: ok (boolean, 1 if success or nothing if error), result (list of records returned by the API query, or nothing if error), resultInfo (contains data about the pagination of the returned records!, or error code in case of an err...