Search:
Type: Posts; User: XeroSiS
Search :
Search took 0.02 seconds.
I have a two tables called
- space (id, title, type, created_on)
- space_counter (id, space_id, imp_count, clk_count, created_on)
basically space is an advertising space and counter is a...
I have raised this question before in another way but please see below:
In a nutshell for those who don't want to read all of below:
I have given a website owner a PHP script and I am searching...
The JS encrypt is amazing but a new problem is that I generate JS on the fly and it is dynamic, something like this (a php file)
var AdCounter = AdCounter || 0;
if (AdCounter++ < 4) {...
Thank you.
There is also another problem:
please load these pages:
http://www.edoramedia.com/aauae
and
http://www.edoraemdia.com/aauae/test.php
notice how slow the first one becomes when we...
OK. So I was able to figure this part out. Now there is a new problem.
Basically the first JS checks and if all is OK allows the second JS. My issue is that the user can easily go to source code,...
Basically what I am trying to say is I need to pass a variable from adcheck.js to ad.js but the variable needs t come from somewhere within the URL.
bionoid I have a question using this script, if you could please help me.
The thing is I need to also pass a string for example "abcd1234" which is different for each advertiser, and basically...
This is wonderful! I am sure it will work.
Thanks a million!
Hi,
I was wondering if it is possible to write a query that gets the result of 3 counts?
For example I have a table called "boxes" that has the following:
- id
- name
- color
Thanks.
Actually I can not do this as it will make it a bit complicated for the users who mainly have very little logic.
But this brought up a very interesting issue, I also noticed that Google...
Thank you for the idea. This could work in most cases up until user navigating through pages quickly, also another issue could be that every ad that displays will require us to have to do an sql...
Yeah that could work but if someone wants to mess with the system then they can use this method and I need to stop it.
Thanks.
Yes! This could work, but the problem is that people could still abuse the system by for example posting the script 200,000 times (just an example) and running it, this will create a lot of...
I have a JS code that users use on their site in order to display an advertisement.
The code is something like this:
<script type="text/javascript"...
We have a bunch of videos in a table:
video_id
title
...
views_count
posted_on
Generally 10-20 videos are posted every day.
Now I need to write 1 query that gives me the most viewed...
So are you basically saying:
Make a SELECT query with all the filters and only get ID's, place them in an array, random one array and get the info from there?
Basically make an index using...
Yes! That is perfect, great idea.
Thanks.
Basically I have a small ad network and would like to stop click bombing (meaning not allow a user to click on an ad over and over again in order to drain the advertiser's budget in a few minutes).
...
Figured it out!!! After hours of checking ... I had to call my hosting and have them sync the server time!
That easy!
I am using codeigniter and the S3 library.
Recently I have come upon a strange problem when using the below:
$this->s3->putObject(S3::inputFile('uploads/ad.jpg'), 'adp-asset',...
excellent information guys, I will review them tomorrow and update you on how I finally approach this.
I have a table with for example the following columns:
- id
- title
- body
- type (image, swf, text)
- posted_on
Lets say there are over 3 million rows in this table.
I need to get 1 random...
Thanks, that sounds best.
I was wondering when I want to save an image location on my database is better to save only the image name or save the full URL?
For example I upload: cat.jpg
In database should I save...
WOW!! It worked ... thank you so much!