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 8 years ago.
Improve this question
Scenario :I am trying to build a Mobile Entertainment Portal. It will enable users to download Music & Movies to their Cell Phones...
Problem Exp : Suppose I upload 100 folders of Songs, each folder is for one Album. I want a way to generate a page with all the folders name (Album Name) in it. If user click on the page, they should be taken to a page where they get list of all songs in the album. Clicking on any song name will let them download it.
Can it be done anyway or will I have to manually design each of the 3 pages for each album. If I do that, its time consuming and also will be difficult to change anything like footer, header...
Also I want to know if I can monitor Realtime Download Statistics.
You create a database
You create one or more template pages, each taking a relevant ID, such as AlbumID (which you might be calling FolderID) as a URL parameter
At runtime, the page logic fetches the data (by AlbumID) and lays it out nicely for the user.
This sort of thing is covered in every entry-level database programming text. A quick search turned up this and this.
Related
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 4 years ago.
Improve this question
I am a Quality Analyst. Performing testing on a web application. So in my web application, there is one button of "Import excel". Through which we can import some records of user like Email Id, Mobile No, Name, etc. So as I am a beginner I want test cases scenarios for testing that import excel feature.
You can try out the following scenarios:
Check different file (Other Then Excel)
Small/Large size file
Enter all the records Email id, Mobile, No and name and then leave one row empty and check the behavior of the system.
Make sure that on uploading empty file, error message should be displayed.
Make sure that multiple users can at a time perform the upload process.
Make sure that empty spaces in between the uploaded content is not displayed in the corresponding listing page.
Make sure that on trying to upload already existing data, proper notification message is displayed.
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 4 years ago.
Improve this question
I'm working on a webshop. And would like to add the feature to be able to post product images to the shops Instagram account when a new product is added.
The thing is that the Instagram API does not seems to allow to post images. Either does the official Instagram Website. And a Google Search gives me multiple SO QA which says the same.
But at the same time, there seems to be a ton of websites, applications, and services and other non-emulators who let you post to Instagram (to mention a few: http://techwiser.com/effectivly-use-instagram-on-pc-upload-pics-bluestacks/ and http://dskgrm.com/ is another one, there also seems to be some WordPress plugins who does it ex. https://github.com/roladn/wordpress-to-instagram but I'm not too good with eirhet PHP or WordPress to be able to tell how they have done it.).
And before anyone reports it as a duplicate. I do not consider this a duplicate since all other QA simply states that it is not possible via the API, but obviously, it is possible somehow, and I'm wondering how.
So I simply wondering how people are successfully implementing this feature when either the API or the official website allows it?
No official way to post media to Instagram doesn't mean that there is no way to do this.
If you are a developer you could simply reverse engineering the Instagram API and build some software to use that, otherwise you could just use some tools already developed.
PHP
mgp25/Instagram-API
Python
b3nab/instapy-cli
And if this don't fit your needs you can go to github and search some other softwares already developed.
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 6 years ago.
Improve this question
Given:
A list-based application with an advanced user-system based on two applications:
Main-Tool
Displays all Entrys with possible filters
Create entrys
Delete entrys
Edit entrys
Filter entrys to only see specific ones
...you get the point
Creation-Tool
Reads specific informations out of a file and opens the same mask as the Main-Tools creation function as a separated application.
The Problem:
So I have my Creation-Tool and the Main-Tools function to create entrys as well. So each time i am changing a thing on the creation mask, i have to do it in two applications.
The Solution:
There has to be a way to call functions of my application from the outside.
The Question:
How can i get rid of the second application? The Main-Application has more informations (Logged in user for example) than the Creation-Tool, so i want to get rid of the Creation-Tool. Having a second application that calls my main application is okay.
What you want to do is to move all of your functionality into a separate library. Using inter-process communication would require both programs to be running. Whereas if you had two programs that shared the same dll, that would solve your duplicate code issue and each program can be run independently. Once you have all your functionality separated from the user interface and moved into it's own dll, then consolidating the UI of both applications into one will be much easier.
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 3 years ago.
Improve this question
Stumbled across this: http://get.unbounce.com/dynamic-text-replacement/
Seems to be a wysiwg landing page creator. So I was just wondering if it's possible to do Dynamic Text replacement normally? Pretty much just need 1 Landing page that will have text (keywords) change depending on what the user searched from search engine. An dif possible also have images change out depending on what the user searched.
How can this be accomplished?
AdWords lets you use what is called "ValueTrack" in the click-through URLs for your ads. So you could have your clickthrough URL in AdWords as "http://www.example.com?keyword={keyword}" then when someone clicks on your ad, AdWords will replace {keyword} with the actual keyword from the search, or for display ads the best-match keyword.
You could then have some code on your site (could be client or server side - you could do it with Javascript) to look for the keyword query string parameter from the URL, extract the value of that parameter, then place it into a onto your site.
Hope that helps
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've created a website that connects stores with brands. Many stores can have the same brand.
You can search for a brand and see what stores sells this brand (picture).
www.mysite.com/?id=23&brand=my+brand+name
If you open a store, you can see what brands they have.
www.mysite.com/?id=235&store=my+store+name
When you open a brand, the entire store list is loaded but hidden. Through jQuery and drop down list I can change city and the map and store list will be updated dynamically.
But if I want to score higher on search engines, e.g. when users google for "dovre oslo"
, I would like the search engine to find all the stores
Since I'm trying to rank higher on search engines, would it be better if the entire page reloaded and adding city name in the URL?
And when opening a store page, should I add the city name in the URL?
After some discussions and thoughts, I've come to the conclusion that it doesn't matter if I use drop downs and jQuery.
All my pages are listed in my site maps and therefore visible to search engines.