PHP Get URL Of Current Page, Not Script [closed] - javascript

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I realise this might look like a duplicate but I don't think it is. I've looked everywhere.
What I'm attempting to do is get the URL of the page the user is currently on, but I'm attempting to do this in a separately loaded page.
$('#siteStatus').load('/_backend/account/accountStatus.php');
I want to load a script into this div that works out the current page of the url.
At the moment I am doing $url = "{$_SERVER['REQUEST_URI']}"; but this just returns /_backend/account/ and I'm unsure why.
Any help is appreciated.

Thanks to #prasad using print_r($_SERVER); showed an array of what I could use and it turns out $_SERVER['HTTP_REFERER'] was what I needed.
Thanks.

Related

My email is forcibly change from .com.sg to .sg even if hardcoded [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
In my code I coded the email
<div class="infos">
bake#pastrymart.com.sg
</div>
But in front end of my website still shows bake#pastrymart.sg removing .com.
Things I've tried:
echoing it through php
tried javascript .innerHTML
I think there is a PHP string replace function in your back-end, which is looking for any aliases like pastrymart.com.sg and replaces them with pastrymart.sg, and PHP string, and those JS, because the JS is although a part of PHP string.
You can try to use %2E instead of . like this bake#pastrymart%2Ecom%2Esg. Not the most stable way, but you can try it.
Although you can figure out where is those PHP rewrite function is and try to deal with it. It can be on the hosting provider level, or in your template controller.

Javascript SVG with WordPress [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I'm trying to replicate this: https://tympanus.net/codrops/2014/01/07/shape-hover-effect-with-svg/
It works on my localhost but not on WordPress. Any advice is greatly appreciated.
Many Thanks!
When you say not on Wordpress could you clarify? Is this wordpress.com, your web hosted version of Wordpress or a localhost version?
The first thing to do is check the mime type if you have posted the svg to a web server.
Could you post a url so I can see what the issue is first off, then I can help you figure what to do next to fix it.

Nodejs http.get get end page [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I made my function
http://pastebin.com/xaE5Gpks
The problem starts when sometimes page returns header 302 and is tranfer page, but my function stops at this page. How to make that function continue to a new link which main link returned as transfer link?
Example
steamcommunity.com/profiles/23123123123123/inventory/json/570/2
Somtimes this url return user profile to their own id(name) now ID(number)
steamcommunity.com/id/ownid/inventory/json/570/2
In order to follow redirects you can use request library

Facebook like and Tweet counter issue due to query string [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have added Facebook & Twitter likes/tweet count button on products page. But it have observed quiet strange behavior. When there is no like it appears like in fig01.
When i like, its likes added to all products likes (From 0 changed to 6), while twitter count remains to '0' as shown in below fig02.
The possible issue i think is that its ignoring query string value i.e. fig03
I will be grateful if someone tells me possible solution. thanks.
Kindly go to this URL and enter your URL to check is their any issue with your URL.
https://developers.facebook.com/tools/debug/
I was getting the same issue, because my page was session dependent, so i have made my page session independent then my Facebook like works absolutely fine.
May be you are getting that kind of page Redirect issue.

Get eBay Suggestions For Search [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I'm trying to get eBay suggested values for searching purposes against the given keyword. A prototype can be found here. Can anyone help me to figure out the problem in code?
The problem is due to the Same Origin Policy - you cannot make an AJAX call to any domain other than the current, unless the format of the request is JSONP.
The workaround is to use a server-side proxy on your domain (such as in this example) to get the XML file, and then have your jQuery load that.

Categories

Resources