Search found 220 matches

by SparrowhawkMMU
Sat Sep 22, 2018 9:46 am
Forum: General Discussion
Topic: SpiderBasic 2.21 is available !
Replies: 20
Views: 18026

Re: SpiderBasic 2.21 beta 1 is available

Good to hear of activity again Fred! :) I don't use SB for mobile apps, so can't really test for you, bit still it's good to know SB is alive and well. Personally, I'm hoping for updated widgets, better access to headers and status codes in http responses, and native SQLite support. And easier theme...
by SparrowhawkMMU
Fri Aug 24, 2018 8:47 am
Forum: Tricks 'n' Tips
Topic: Tool: HtmlPreprocessor for SpiderBasic
Replies: 11
Views: 6377

Re: Tool: HtmlPreprocessor for SpiderBasic

Thanks Peter, great bit of code. Works great on Mac too.
by SparrowhawkMMU
Sat Jun 09, 2018 11:19 am
Forum: Coding Questions
Topic: Need help with #PB_HTTP_Pos
Replies: 3
Views: 2040

Re: Need help with #PB_HTTP_Pos

Re getting request headers in PHP, see: https://secure.php.net/manual/en/function.getallheaders.php Without seeing your SB code, it's hard to advise further. However, as it worked with GET, it sounds like you have a CORS issue. Search these forums for numerous examples of how to set the allow origin...
by SparrowhawkMMU
Sat Jun 09, 2018 11:10 am
Forum: Coding Questions
Topic: How can I send long WYSIWYG editor content in HTTPRequest?
Replies: 2
Views: 1550

Re: How can I send long WYSIWYG editor content in HTTPReques

One other thing. If you send long content using HTTP GET , you can fall foul of web server query string size limits.
by SparrowhawkMMU
Sat Jun 09, 2018 11:08 am
Forum: Coding Questions
Topic: How can I send long WYSIWYG editor content in HTTPRequest?
Replies: 2
Views: 1550

Re: How can I send long WYSIWYG editor content in HTTPReques

First, try sending headers to specify content-type and content-length . This can help, depending on the API. Also, be aware that some firewalls get very upset with wysiwyg content, and even certain words. For example the Azure cloud firewall recently introduced a new rule blocking requests with the ...
by SparrowhawkMMU
Mon Dec 18, 2017 8:50 am
Forum: Tricks 'n' Tips
Topic: BlockUI
Replies: 7
Views: 10516

Re: BlockUI

+1 very useful and cleaner than what I am currently using.
by SparrowhawkMMU
Tue Dec 12, 2017 10:41 am
Forum: Showcase
Topic: Zen Puzzle
Replies: 10
Views: 8043

Re: Zen Puzzle

Just played a game. Excellent! :)

One suggestion: as it is supposed to be a Zen game, an option to disable/hide the timer would be good.
by SparrowhawkMMU
Sun Dec 10, 2017 4:05 pm
Forum: Coding Questions
Topic: Material Design?
Replies: 2
Views: 2521

Re: Material Design?

Thanks Peter, I'll give that a go. I appreciate your help, as ever :)
by SparrowhawkMMU
Fri Dec 08, 2017 4:58 pm
Forum: Coding Questions
Topic: Material Design?
Replies: 2
Views: 2521

Material Design?

Is it possible to develop Android apps with SB that confirm to Google's Material Design? If so, does anyone have any examples of how to bring in the stylesheet, JS etc ? Just got a new phone which is running Nougat and I thought I'd try my hand at building a mobile app that looks native to see wheth...
by SparrowhawkMMU
Tue Oct 24, 2017 9:00 am
Forum: Coding Questions
Topic: [Solved]. Can comebody test the Http methods with 2.20?
Replies: 2
Views: 1743

Re: Can comebody test the Http methods with 2.20?

Scratch all that, it's me being an utter pillock. 1) Didn't spot that my NoScript extension was enabled for the page. Doh! 2) my backend test script is not handling the preflight OPTIONS method call. Despite the fact that I went through this exact same exercise for a previous project, I seem to have...