It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
After migrating a website I created from one host to another, the problem occured:
Facebook is unable to get the og:image when I go and share. This was not the case on the former host.
Some info about the site:
It's ran on Drupal 7.14
Both site are identical, .htaccess files
included.
Things I already found while looking for the problem
HTTPS problem
.htaccess: Options FollowSymLinks
Picture aspect ratio < 3:1
None of the above solutions have worked.
Running the website through Facebook linter i get the error:
Unable to download og:image: The image referenced by the url of og:image tag could not be downloaded.
I also ran it through OpenGraph checker, nothing wrong here!
http://ogp.spypixel.com/Pogo/checker/index.php?url=http%3A%2F%2Fwww.bikinicontest.be%2Fbabe%2Fjana-claus
You can find the page here: http://www.bikinicontest.be
According to Facebook's Debug Tool you have a circular redirect path on that page:
original http://www.bikinicontest.be/
og:url http://www.bikinicontest.be/home
301 http://www.bikinicontest.be/
Try fixing that first
If that doesn't fix it, it may be a problem with the image file itself , or a bug with Facebook's crawler - in which case you should file a bug report in the bug tracker
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm studying CakePHP and I have this question :
Why I dont see the Session ID in Cookie when I use Firebug ?
How can I force CakePHP to use a session ID ?
Pls help me out :D
Edit :
What I mean is :
Exp : in controller I user $this->Session->write(....);
As I know that will start the session() but when I use Firebug I don't see the SESSIONID.
My question is where is the SESSIONID in cakephp ?
I tried to session_start() in view but will get error that : "session already start".
You're probably looking for a PHPSESSID cookie but it isn't mandatory to give that name to the session cookie. It's very easy to change it and CakePHP indeed does it. You can also configure your own cookie name right in CakePHP.
Finally, don't use session_start() yourself. You are building an app on top a high-level framework that already takes care of such stuff.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i put a file name 'abc.apk' inside the "apk" 's folder and it shows
"404 - File or directory not found"
when i try to access it with my browser(tried on chrome, FF, and IE). I even try with jdownloader, and it keeps saying that the file is not found...
but it able to shows the picture if i put the picture file inside the "apk" folder. how can i solve this? i wanted the browser auto download the file after i key in the complete url.
i tried some solution from google but none of them works, they asked me to check for the url, move up 1 directory to check the available of the dir.. etc
If you are using hosting webserver, send a ticket to your hosting company and ask them to add the file extension into MIME, problem solved.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I already upgrade my cakephp in to the latest one. I also already make some changes due to the migration. But I have this error
Missing Plugin
Error: The application is trying to load a file from the forums plugin
Error: Make sure your plugin forums is in the app\Plugin directory and was loaded
someone please help me.
have you load the plugin from bootstrap.
CakePlugin::loadAll(); // Loads all plugins at once
CakePlugin::load('DebugKit'); //Loads a single plugin named DebugKit
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm working with the tipfy framework (tipfy.org) on app engine and am having some real problems. I've been trying to get an extention "auth-extention" to work all night. It allows users to sign in via facebook/twitter/openid etc..
The extention can be found at the link below, the code looks like pretty straight forward if your python ninja, but I'm new to all this and frankly its baffaling!
I've spent the last 24hours try to work it out, but I keep getting errors.
There seems to be around 1k downloads of the mod I'm trying to integrate and not many complaints so It must be something simple I'm doing wrong.
Heres a link to the multi auth plugin:
http://tipfy-auth.appspot.com/
http://code.google.com/p/tipfy-ext-auth/source/browse/#hg/examples/multi-auth
All I need is the login system above integrated, which according to the tipfy docs should be pretty straight forward, but for some reason.. it's bundled in a way that isn't straight out of the box use.
What I was really getting at was.. to ask if anyone could attach a working app with the login system above (the actual source of it seems to be provided) so I can try and understand where I've gone wrong.. it would be greatly appreciated andI'd be happy to send you a small reward.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how website checked that a request come from a browser or from a programs.
in javascript you may use navigator.userAgent. note that this may vary from browser to browser. a good example how to use it can be found at
quirksmode.
However be aware that you can edit the userAgentString at any time using the appropriate browser, script or code. so no absolute guarantee on the result - but at least a starting point.
cheers,
markus
If you would prefer to use server side code, and presuming you are using .net, the Request.Browser property will provide details of the agent making the request.