.htaccess how to make more than one variable to a simple url [closed] - apache

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Hello i want to make a friendly url from the url which is really complex.
My current url is:
mydomain.net/?t=status&b=iid&ref=7007&ty=comment
When a user go on the url I wanna to make it as:
http://mydomain.net/status/comment
is it possible?
Is not. I would need as: mydomain.net/t/b/ref/comment

Visit Apache document
Here you will find how to rewrite .htaccess mod rewrite.

Related

CEFSharp browser status in VB.net [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I am trying to get the cefbrowser to show browser status for example like vb.net web browser you can call Label1.Text = WebBrowser1.StatusText.ToString to receive the loading URL and when mousing over links/hyperlinks will show the URL path.
any help will be great.
In cefsharp you can use the ChromiumWebBrowser.StatusMessage event to get this information.
Have a look in the documentation ;-)

File Transfer over ip in vb [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?
You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.

Prestashop custom product fields [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am trying to add some custom fields on my prestashop backend and, when filled, to show up in frontend. Here are some examples of what I want to implement:
And here is the frontpage:
Searched everywhere but no results. I just need an idea or an example. Thank you!

Apache - Rewrite /#!/ back to URL [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm hoping this is possible with htaccess rewrite. I googled around but had no luck.
Apache receives this request:
http://example.com/item/foo/bar/
Everytime it receives a link with 'http://example.com/item/', I need it to rewrite to look like this.
http://example.com/#!/item/foo/bar/
What's the best way to achieve this with apache? Thanks!
That is not possible the hash is normally not transmitted to the server so you cannot handle this on the server side.
The hash or anchor is used only on the client side to jump to a position in place of the document or for some old JavaScript/Flash applications.

How to clear the username and password in login form when they are wrong [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I have a question
When an user type a wrong username and/or password and joomla display a message about this error and I would like to clean both fields, how can I do that ?
thank you for you help
Go to your Joomla root folder, from there:
go to: /templates/[your template]/html/mod_login
Backup default.php: cp default.php default.php.org
Edit default.php: vi default.php
And here's the tricky part, the thing you have to changes is different for each template, for example, in atomic template you should look for the line:
So the id of this field in this case is: "modlgn_username". Now you can use jQuery / Javascript and "clean" the value.