Questions tagged [server-side]

The term "server-side" refers to the portion of an application run on a server. The counterpart of "server-side" is "client-side", meaning the part of an application running locally on the user's own machine, such as in a Web browser.

Server-side refers to operations that are performed by the server in a client–server relationship in computer networking.

Typically, a server is a computer program, such as a web server, that runs on a remote server, reachable from a user's local computer or workstation. Operations may be performed server-side because they require access to information or functionality that is not available on the client, or require typical behavior that is unreliable when it is done .

Server-side operations also include processing and storage of data from a client to a server, which can be viewed by a group of clients. Advantage: This lightens the work of your client. This also protects your SAMP server from crackers.

Examples of server-side processing include the creation & adaptation of a database using MySQL.

There are many and techniques used commonly to write scripts or apps on the server-side such as the following:

2610 questions
0
votes
0 answers

Error when sorting some Datatable columns but It's normal when I commented the "ServerSide" Code (CodeIgniter 4)

I tried to sort some columns but I got this error : Ajax error. For more information about this error, please see http://datatables.net/tn/7 This is my Controller : public function show_all_issues() { $project_model = new…
0
votes
1 answer

Get tweet update in miliseconds?

I am using twitter api with to get tweet when someone posts. It takes around 3-4 seconds to update. How can i make that faster to less then a second... What are the recommendations regarding 1: Which server to use (Would it matter in this case) 2:…
user11446958
0
votes
0 answers

How can i prevent theft of javscript code

i know that there is'nt a way to completely prevent code theft but i saw this online, so it just kept me wondering if you go to https://docs.mobiscroll.com/javascript/getting-started and inspect element you will see this
user13782016
0
votes
0 answers

Why, when I try to access the value of a runat="server" input tag from the code behind, am I getting the original value instead of the latest value?

I have a hidden input that holds the value of a nonce used for payment processing. When the page first loads, the value called from the server side is obviously the empty string. But there is…
Chelynn
  • 1
  • 1
0
votes
0 answers

Get User Agent In Laravel and Serve The User With The Correct domain

I have a situation at hand. Got a domain covid19zim.online and recently developed a dedicated mobile web version to be served on m.covid19zim.online. So my question is how to I get user agent and direct the user based on the device they are visiting…
Loyd Tafireyi
  • 87
  • 1
  • 5
0
votes
1 answer

Flotr & Server Side Processing

Is there any way to send object / image content type created by Flotr (http://code.google.com/p/flotr/) to server side scripting. For comparison, with protovis () we can send SVG generated to server side servlet to have PNG / JPG result with Apache…
Dino
  • 781
  • 3
  • 14
  • 32
0
votes
1 answer

Listening to updates to activities in serverside C# code

I'm experimenting with the getstream.io service, and evaluating if it fits our use case. Basically what I would like to to is for one server side service to add activity to a feed, and then for another server side code to subscribe to changes to…
dabs
  • 727
  • 1
  • 7
  • 23
0
votes
0 answers

Apostrophe’s are not searchable with server side datatable individual column search

I am using a server-side data table with laravel and I am trying to search Apostrophe’s value (Fran'k) but it's not working with individual column search. Please help me I am using below code for column search $('input', this ).on( 'keyup change',…
0
votes
2 answers

paragraph and anchor as a button / how add server side event click

hi my dear firends : i have a button like below :

and css : …
SilverLight
  • 19,668
  • 65
  • 192
  • 300
0
votes
1 answer

What is the Proper way to Poll for Client Connections -- Apache Thrift Server

I have very little experience with server-side programming, and I am taking on a task where I need to implement part of a Back-end Server using Apache thrift. Right now, my application consists of a "Front-End" server and a "Back-End" server. The…
0
votes
1 answer

How would I ago about creating an application that runs 24/7 and sends emails?

I have created this console script with python3 that uses the requests module to pull information from the website https://api.warframestat.us/ps4/fissures but I want to run this 24/7 and not on my computer is it possible to do this computation…
0
votes
1 answer

Blazor server side role or claim based authorization when using windows login

I am new to working with Blazor and Authorization. Background is desktop apps in Vb.Net, so I have been reading everything I can on it, but it still is very confusing when I only want a specific subset of the options out there. I have a very simple…
Brisley
  • 1
  • 1
0
votes
1 answer

Error: Netprobe failed to start. Logfile for netprobe could not be created

I am setting up the netprobe on the company servers. I was successful in installing and starting netprobe on other servers but only one server showing the following error. The only difference was someone already tried installing it before me but…
0
votes
1 answer

How can I modify a .JSON file stored on server from client side?

I'm working on a webapp that is currently running on a server, where there are also some .JSON files, which I would like the user to be able to type some information and press enter where it will be stored to the .JSON file. The webapp is written in…
0
votes
1 answer

How to create [HttpPost] that can receive an object?

I want to send an object via HttpResponseMessage from my client side code and read that object on the server side and save userId alongside. My client side looks like this: public async Task Add(Car car) { Car c; using…
1 2 3
99
100