Search results

  1. L

    Decoding IONCUBE

    Splitice: http://www.wjunction.com/showthread.php?t=15443 Splitice PoC: http://www.wjunction.com/showthread.php?t=14818 Peace
  2. L

    Help with SolusVM Client:API...

    I would try a manual approach for the time being, if you use this form below to send the post request to the server and see if you get the response data, when you send the form make sure your logging the headers to see if the port is actually open and if your server is returning 200 Success Code...
  3. L

    PHP Scan dir for idetical files

    try now and report back.
  4. L

    Using H1 tags

    @Whoo When google refers to using separate content for search engines i dont think they mean like my example. Google will not mind me hiding a h1 tag because it refers directly to the element after so its purely for user interface.
  5. L

    PHP Scan dir for idetical files

    Well this would have to be done recursively. $storage = array(); function ScanForTextFiles($folder) { global $storage; $resource = opendir($folder); while(false != ($file = readdir($resource))) { $current = $folder . $file; if($file != '.' || $file != '..' &&...
  6. L

    [php] Compression | Output Buffer control

    Your welcome dood. Anything else you might need just let me know ill see what i can do.
  7. L

    [C#] Thread Safe in - How to?

    whats confusing me is the way you have to cross just lots of different classes. I c ant really do a flow chart but (Main Class) -> (Jabber Class) -> (Callbacks Class) -> (Main Class) -> [SetLoginStatus] I dont understand why it cant follow the following route (Main Class) -> (Jabber Class)...
  8. L

    Using H1 tags

    The reason i put he style="" attrubite is the fact the is just design and google removes all design factors anyway, by doing the display:none your viewers will not see the h2 but google will, and as its located neer an image with the same value "About Me", it should figure out that the image...
  9. L

    Using H1 tags

    h2 is For "Header Size 2" if search engines see a image within there it will not be treated the same as if it was content What you should do is <h1 style="display:none">About Me</h1> <p><img src="images/about_me.png" alt="About Me" /></p>
  10. L

    [C#] Thread Safe in - How to?

    OK that seemed to have fixed the errors but im confused about whats going on! Ok so i have this line: //From the main form:DoLogin() Jabber.OnError += new bedrock.ExceptionHandler(_JabberCallbacks.OnError); Witch then will run the following method: public void OnError(object sender...
  11. L

    [C#] Thread Safe in - How to?

    With your code i still get a few errors witch im unsure of: Error 1 Cannot convert lambda expression to type 'System.Delegate' because it is not a delegate type C:\Users\XXXX\documents\visual studio 2010\Projects\XXXX\XXXX\Login.cs Edit, I Also changed the Private to Public so i can call it...
  12. L

    What's your favourite quote?

    I Like WarezFreaks xD
  13. L

    [C#] Thread Safe in - How to?

    Okay. For your information heres wahts going on I have a library that's i use to contact a Jabber Server, and i Assign callbacks / events for Successful Connection, Login Failed etc etc... Its the methods that i tell it to call that has has problem. What ive done is create a separate class to...
  14. L

    [C#] Thread Safe in - How to?

    Ok so because its an event the event is being executed by another object from another name-space and therefore it cant cross thread ?
  15. L

    [C#] Thread Safe in - How to?

    heya guys Im working on a C# Application and im having some issues with the ThreadSafe thingimabob. When i try execute the a command i get the Thread not safe. heres my Code! using System; using System.Threading; using System.Collections.Generic; using System.ComponentModel...
  16. L

    Can echoed html in php page, use php function

    i loled.. PHP Is a server side language so no php code that is in your html will be executable. you will have to do a ajax callback system to run specific commands via html.
  17. L

    What's your favourite quote?

    Ok so just wondering what great quotes you stand by? One of my top 10 is: (Bob Marley)
  18. L

    [PHP] Random Number Problem

    Okee Dokey, thought it was but owell xD
  19. L

    [PHP] Random Number Problem

    Here you go Happy, Ive created a function that you insert any number and it will try bring you back a random with the chances leaning towards the lower integer. so heres the functions function Random($highest = 100,$strength = 2) { $r = round($highest/$strength); return...
  20. L

    Best way to run multiple scripts inside PHP

    have you got an example of the code, or even just describe in more detail what begin,end will be used for...
Back
Top