Archive

Posts Tagged ‘probably’

Macro For Ms Word Required (visual Basic Probably)

November 15th, 2011 Comments off

I need a special Macro written for MS Word (should work in MS Word 2010, Word 2007 and Word 2003 ideally).

The macro will be used on large word documents of 8000 words+ and when run will activate the Spelling and Grammar module and then go through the whole document and ‘autocorrect’ all identified spelling and grammar errors by:

[1] Clicking on “Change All” when the Word Spelling & Grammar interface offers that option;

[2] If “Change All” is NOT presented as an option in the Word Spell…

Quick Issue (probably Take 3 Minutes)

May 11th, 2011 Comments off

Try to share this page on facebook http://bit.ly/kOJ3Qm go to facebook and update your status with just that link… and check the preview… it gives the wrong name of the site there in the top line… not sure why though because that isnt in any of the metadata on my site or in the facebook page for that url. You can see what im talking about in the attachment. that was the old name but since then it has been changed everywhere

Infusionsoft – Merchant – Api

November 13th, 2009 Comments off

Hi,

I need a professional person that has experience with Infusionsoft and API. This project is for integrating payment that will be done by Infusionsoft by the Merchant account that has been entered inside Infusionsoft. So the payment will be processed by Infusionsoft and generate a custom made invoice.

The reason I need a custom solution is because I need to charge/verify VAT id since I am european. Infusionsoft doesnt have this solution.

I believe this page is some kind of checker:
http://ec.europa.eu/taxation_customs/vies/api/checkVatPort?wsdl

Here is another link with info:
http://ec.europa.eu/taxation_customs/vies/faqvies.do#item16

Whenever I charge tax it will always be 25% added to the price of the product that is exclusive.

However I will probably also need some kind of center designed where I can login and for example create discount code/volume discount.

I will be selling software and the customer will be able to select how many serial numbers he wants from a drop down list, so it needs to fetch the desired amount and also process some actions.

Probably more details when I have decided which person I will work with.

This job is probably pretty easy for a professional and skilled person. If you are not professional and lack experience please do not bother. I will only reply to geniune replies. I am experienced in outsourcing. This job must be made with 100% quality!

Looking forward hearing from you.
When you contact me please being using the codeword: API.

If you don’t I will not reply to you, assuming that you have
not read the entire breif.

Html/php Site Design & Seo (2)

October 3rd, 2009 Comments off

*PLEASE READ* – I will be paying the programmer through Paypal ONLY and ONLY after project is complete and 100% I am satisfied.

I have 2 domains that are going to be for the exact thing, but I need 2 different designs.

Both domains are related to Michael Jackson’s (RIP) Captain EO 3D show that was at Disneyland. Here is a domain with a lot of info, http://captaineo.com/ .

1. .info domain – I will require the design and the whole site is probably 3 pages, but no more than 5.

2. .com domain – This one will be 2 pages only. If more pages needed, it will be no more than 5. The main page will consist of a video playing, while the 2nd page will be an about page.

The design will probably be one big image in the background of Michael Jackson with the site title and then info/video will be in the middle. It needs to be more into Web 2.0 or 3.0.

All other pages do not need a new design, but just requires the html/php coding. Full 100% SEO is required and there is no need for a script or backend of any sort. I can probably do the write up, but I’m not an SEO expert, so it probably needs to be adjusted.

This is a quick job, so $100 is the total budget for someone wanting a good feedback. If job is good, I have 2 more Michael Jackson domains that needs a site.

My Web Site

July 25th, 2009 Comments off

Are you looking to build up your resume/portfolio? I have a waiting Photo Sharing community in need of a good web site. And I like to have you help me on it. Now as for money I don’t have a lot of it. So what I like to offer is a % of the income that will be sure more then what you will be asking to make it. I will make money from the adds and the power ups for this web site. And I’m looking at about 30,000 members to start!
Mobog.com is what I’m looking for in a way but if you look at this link from a old web site called yafro.com the members will kill for a web site like that again.
I hope to hear from you
Thanks
Ray Rayfro

http://web.archive.org/web/*/http://yafro.com

This is what I was told you need to know hope to hear from you

The backend application is the most important part of the site you’re looking to create. The front end presentation is important, but it’s useless if you don’t ways of putting data into a database, pulling the data out, and then using the data to generate useful output.

Let’s take mobog.com as an example. When you create an account, it needs to store the information you posted into a database… Along with sanitizing the data, making sure it’s valid and of course making sure the username and email isn’t already used. So those requests come in and you need to write the code to handle that.

You also need to have code that handles when a user logs in. So you would once again run to the database(or maybe something else, like an LDAP server or an OpenID provider)… If authenticated, then you need to persist the identity across browser requests(HTTP is stateless). This usually involves cookies. You also need to be able to handle logging out he user and killing the session. Usually involves removing it from the session store(maybe a database, or something on the file system, perhaps even something like memcache), and also setting the user’s cookie to expire.

As for the uploads… You have to check to make sure the file uploaded is in fact a valid image. Then at it’s most simplest, you will want to probably resize the image to some size that won’t screw up your site’s layout… You should also create a thumbnail of the image. Next you would move it to some location, perhaps some sever you’re running, maybe even the same server you’re running your HTTP server on, or even better, to something like Amazon S3 or some other cloud storage service. If the file checks out and there were no errors during resizing and moving, then you’d have to add the information to the database. This might be something that is a “pics” table or whatever. That would have path information to the file, who uploaded it, when they uploaded it, text about the picture… You know, whatever… Oh, in the upload process, it might also make sense to put freshly upload images into a queue for processing. That way you don’t have to handle the resizing and move to cloud storage all within the users request. You would then have a program or script that monitors the queue and does the processing and uploads… That’s probably not really needed though.

Then the display of users profile involves figuring out what user’s page they requested(if any), and then pulling out the correct data from the database. You’d probably want to take into account if the user who is logged in wants to see “NSFW” images, and if they are “friends” with the requested user. This allows you to send query to the database that ensures that while at work they are not getting locked porn pictures from someone who doesn’t have them added as ‘friend’(or whatever). You should also take into account if they requested a specific page to shown… that affects the query to the database.

Web Site Help

July 24th, 2009 Comments off

I need help to make a web site like mobog.com this is what I was told I need someone to do to make it. If you can make it they will come a lot of members will jump it fast! You show me you can make it and you will get paid what you like to get payed please let me know I have more info on what I like to do but later thanks
Ray
The backend application is the most important part of the site you’re looking to create. The front end presentation is important, but it’s useless if you don’t ways of putting data into a database, pulling the data out, and then using the data to generate useful output.

Let’s take mobog.com as an example. When you create an account, it needs to store the information you posted into a database… Along with sanitizing the data, making sure it’s valid and of course making sure the username and email isn’t already used. So those requests come in and you need to write the code to handle that.

You also need to have code that handles when a user logs in. So you would once again run to the database(or maybe something else, like an LDAP server or an OpenID provider)… If authenticated, then you need to persist the identity across browser requests(HTTP is stateless). This usually involves cookies. You also need to be able to handle logging out he user and killing the session. Usually involves removing it from the session store(maybe a database, or something on the file system, perhaps even something like memcache), and also setting the user’s cookie to expire.

As for the uploads… You have to check to make sure the file uploaded is in fact a valid image. Then at it’s most simplest, you will want to probably resize the image to some size that won’t screw up your site’s layout… You should also create a thumbnail of the image. Next you would move it to some location, perhaps some sever you’re running, maybe even the same server you’re running your HTTP server on, or even better, to something like Amazon S3 or some other cloud storage service. If the file checks out and there were no errors during resizing and moving, then you’d have to add the information to the database. This might be something that is a “pics” table or whatever. That would have path information to the file, who uploaded it, when they uploaded it, text about the picture… You know, whatever… Oh, in the upload process, it might also make sense to put freshly upload images into a queue for processing. That way you don’t have to handle the resizing and move to cloud storage all within the users request. You would then have a program or script that monitors the queue and does the processing and uploads… That’s probably not really needed though.

Then the display of users profile involves figuring out what user’s page they requested(if any), and then pulling out the correct data from the database. You’d probably want to take into account if the user who is logged in wants to see “NSFW” images, and if they are “friends” with the requested user. This allows you to send query to the database that ensures that while at work they are not getting locked porn pictures from someone who doesn’t have them added as ‘friend’(or whatever). You should also take into account if they requested a specific page to shown… that affects the query to the database.

Cms (lightneasy) Tune Up

July 21st, 2009 Comments off

I have some fairly simple issues worked out with my CMS, lightneasy (lightneasy.org):
1) the forms that mail the admin (me) don’t work on my godaddy host for some reason:
get error Warning: mail() [function.mail]: Bad parameters to mail() function, mail not sent. in LightNEasy/common.php on line 522

2) I need to embed my survey script (isalient) into an iframe or as a wrapper into on the signup page (“signup”).
I can do this now, but the survey can’t get past the first page, probably because I’m overlooking something.
I would like the first page to be embedded in the site so the user can check out the site via navigation links before starting the survey. I would prefer the subesequent pages to not have have access to the navigation link, as it would probably lose any work done in the survey.

3) I also might moderate need some template editing, a few changes to the css file, probably less than 1 hour.

WordPress-zip Code Submit Box

June 25th, 2009 Comments off

I need help figuring out how to do something in WordPress. I think this is probably extremely simple, but I still can’t figure it out myself. I want you to do it this time so I can see how to do it myself in the future.

I have a banner ad (probably about 250 x 250) from a CPA network which includes a zip code submit box. If the reader is interested in the offer they enter their zip code, press go, and I get paid. The CPA network has provided the banner in three pieces, the top image, the zip code box, and a “go” image that goes next to the box. They also provided html code that should make it all work.

I want you to put the banner ad inside a wordpress post so that the zip code submit works, and I want you to set it up so that the text of that post wraps around the banner. I also want you to show me how to replicate it on future posts.

Like I said, I think this is probably really simple for someone who knows wordpress, and will probably only take a few minutes of their time.

Logo Needed

May 7th, 2009 Comments off

I would say blue and white backgroud will looks good : )

As you can see from my website, from home page, i will need my logo for the whole bar (top banner)

But please leave some space for the right side..
Example: bar size is 30cm x

the last 15-30cm (w) x 10cm (banner size probably will be 15cmW and 8cm H centered) is for future banner,

so my new logo should compromise the space for me to add it and wont affect the entire logo.

so basically focus on the logo name on the left.

so ..for www.theonemarketing.com

Name: The one marketing

and have nice slogan such as ” Connecting you to the world of success in marketing”

like have some of the graphic like mens holding each other… or may be with globe something like that.

second one www.investorpalace.com

slogan “Connecting you to the world of success in Investment” so the light backgroud probably will have light…. Stock & options, Forex, Internet Business, CFD, Commodity, Gold etc…like 45degree with repeat lettering..but that is light wording..probably for backgrond.

many thanks

NOTE: I NEED A MOCKUP PLEASE – :)

Bugs In Ims Service

April 19th, 2009 Comments off

There is windows 2003 and installed IMS (Lotuspond Interactive Media System) service on it. This is a system with extended chat with voice/video etc features. This service provides http server on 1995 port. So we can access and view pages visiting links such as:

http://192.168.1.2/{chatname}/

This is a link to the chat entry.

That was preface and this is a problem:
when someone requests something like

http://192.168.1.2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/xxxxxxxxxx//

then service crashes and returns message dialog box:

=================================================
=================================================
Microsoft Visual C++ Runtime Library
=================================================
Buffer overrun detected
Program: C:\binrunimg

A buffer overrun has been detected which has corrupted the program’s internal state. The program cannot safely continue execution and must now be terminated.
=================================================
=================================================

After that we cann’t get access to the login page but chat rooms still working!

So the problem is in a bad requests. I haven’t sources of IMS, so there is no way to change code and recompile it. But bad requests I (or you) should somehow filter and don’t allow to crash service.

Several developers and me have tried to resolve that problem before. But I’m not well experienced in windows administration and on programming under windows.

There is results of investigations, minds and some ideas:

1) There is no way change port number used by IMS. There is no configuration files which contain port number. Documentation which also present doesn’t contains any info related to the port number changing. 1995 port is hard coded.
2) We need create new service which will be filtering all bad requests
3) We need somehow put this new created service between requests and IMS. I hope we can use port forwarding or firewall. On linux there is way to configure rules for iptables so requests can be redirected to the different ports based on some rules. It will be good solution on windows. In such case we can catch all requests from EXTERNAL traffic redirect to the new created service and then redirect them to the IMS service as INTERNAL traffic. That solution probably will be working but I’m not sure. Probably port forwarding with filtering can be helpful for us but I’m not sure too.
4) New created service probably can just forward all traffic except traffic which contains GET requests with bad request uri. It should filter traffic and check http GET requests.

Seems ideas are right but should be approved (or rejected) and implemented by experienced man, experienced in windows administration and windows programming for network.

May be and probably there are another good ideas which will help us, but haven’t found it yet. Please, let us know about them.

This project is very urgent and very important. Please, bid if you have any ideas how to prevent service from bad requests or from crashing. You will get worthy payment.

Thank you!

Ims Service

April 19th, 2009 Comments off

There is windows 2003 and installed IMS (Lotuspond Interactive Media System) service on it. This is a system with extended chat with voice/video etc features. This service provides http server on 1995 port. So we can access and view pages visiting links such as:

http://192.168.1.2/{chatname}/

This is a link to the chat entry.

That was preface and this is a problem:
when someone requests something like

http://192.168.1.2/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/xxxxxxxxxx//

then service crashes and returns message dialog box:

=================================================
=================================================
Microsoft Visual C++ Runtime Library
=================================================
Buffer overrun detected
Program: C:\binrunimg

A buffer overrun has been detected which has corrupted the program’s internal state. The program cannot safely continue execution and must now be terminated.
=================================================
=================================================

After that we cann’t get access to the login page but chat rooms still working!

So the problem is in a bad requests. I haven’t sources of IMS, so there is no way to change code and recompile it. But bad requests I (or you) should somehow filter and don’t allow to crash service.

Several developers and me have tried to resolve that problem before. But I’m not well experienced in windows administration and on programming under windows.

There is results of investigations, minds and some ideas:

1) There is no way change port number used by IMS. There is no configuration files which contain port number. Documentation which also present doesn’t contains any info related to the port number changing. 1995 port is hard coded.
2) We need create new service which will be filtering all bad requests
3) We need somehow put this new created service between requests and IMS. I hope we can use port forwarding or firewall. On linux there is way to configure rules for iptables so requests can be redirected to the different ports based on some rules. It will be good solution on windows. In such case we can catch all requests from EXTERNAL traffic redirect to the new created service and then redirect them to the IMS service as INTERNAL traffic. That solution probably will be working but I’m not sure. Probably port forwarding with filtering can be helpful for us but I’m not sure too.
4) New created service probably can just forward all traffic except traffic which contains GET requests with bad request uri. It should filter traffic and check http GET requests.

Seems ideas are right but should be approved (or rejected) and implemented by experienced man, experienced in windows administration and windows programming for network.

May be and probably there are another good ideas which will help us, but haven’t found it yet. Please, let us know about them.

This project is very urgent and very important. Please, bid if you have any ideas how to prevent service from bad requests or from crashing. You will get worthy payment.

Thank you!

Bear