Jump to content

POWERPLAY27

Members
  • Posts

    77
  • Joined

  • Last visited

POWERPLAY27's Achievements

Newbie

Newbie (1/7)

5

Reputation

  1. Ok I installed another version of Apache with a different folder: httpd-2.4.4-win32.zip when I extract I have the folder Apache24 (and all the files within) I placed the folder in C:/Apache24 I configured the conf.httpd file to change the ports to be listened to (as mentioned before), I also added the following line to the bottom of the fileLoadModule php5_module "c:/php/php5apache2_4.dll"AddHandler application/x-httpd-php .php# configure the path to php.iniPHPIniDir "C:/php"As instructed. I also installed PHP 5.4.12, moved the folder to c:/php I went into my system environment variables and added this in path: ;c:\php;c:\apache24;c:\apache24\bin; Apache 2.4 now starts and at the bottom I see Apache/2.4.4(Win32)PHP/5.4.12, not sure if that means its working properly now, as when I go into the test configuration I'm now getting the same three errors I was initially getting, also when I try to test it having created a php file with phpinfo(); to display in browser, when I try it #http://localhost/info.php no information about PHP appears in my browser.
  2. Hi guys I'm now trying to install Apache 2 for the first time on my Windows 7 PC, I have installed it, but I got errors The Apache service named reported the following error:>>> Unable to open logs . The Apache service named reported the following error:>>> no listening sockets available, shutting down . The Apache service named reported the following error:>>> (OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80 I haven't got PHP or Mysql installed yet, but will do that after I get Apache 2 working properly or do I need to have PHP installed as well for it to work? EDIT: Ok I went into the configuration file httpd.conf and edited the file, I changed the listen port from 80 to 8888 and also Listen: 12.34.56.78:8888, also changed the serverName localhost: 8888Reason is because other services use the default 80 port, so I either needed to shutdown any programs or services using port 80 or just simply change the port range. That seems to have got rid of most of the previous error messages, but now I'm getting just one more and not sure how to correct it: Cannot Load C:/Apache2/modules/mod_access.so into server: The specified module could not be found.
  3. No there doesn't seem to be any errors, the webpage loads, but I can't see the animation, but I also created a html file and inserted the code, uploaded it to the server and it works, but this is asp file and the code doesn't respond, so I am guessing it is done somewhat differently in .asp?
  4. I have a website created in asp, which a friend of mine helped me to build, but I am having trouble putting an adobe edge animation to show on my webpage. I have uploaded all my files to the server and have made sure the paths to these files are correct, however the animation does not appear on my webpage. <%@ Page Title="SIGN Technologies - Welcome!" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"CodeBehind="DefaultTest.aspx.cs" CodeFile="DefaultTest.aspx.cs" Inherits="SignTech._DefaultTest" %><asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"><style type="text/css">.auto-style1 {font-size: large;}</style></asp:Content><asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <!--Adobe Edge Runtime--><script type="text/javascript" charset="utf-8" src="welcomeAnime_edgePreload.js"></script><style>.edgeLoad-EDGE-9779601 { visibility:hidden; }</style><!--Adobe Edge Runtime End--><div id="Stage" class="EDGE-9779601"></div> <img src="Images/Home.jpg" alt="Home" class="icon"/><h2>Welcome!</h2> </asp:Content> The code highlighted should in theory display the animation.This actually works in HTML, but for .ASP the animation does not appear.
  5. I want to animate text to go from the right side of the screen to the left side of the screen, that I can do, but where there is a problem is not being able to place an image near each text and group together, so both can move in the same direction aligned to each other.
  6. I am looking for a good GIF animator software, or even an animation program where GIF's can be created. At the moment the ones I've found have not been upto scratch, the best one I've found so far is Easy GIF Animator, but even that has its limitations and doesn't allow for me to do what I want to do.C What would one recommend?
  7. Thought I had another problem, thankfully resolved now.
  8. I will take your way into consideration, I didn't know I could do it that way per say, I just started now reading through a book on javascript, there is about 14 chapters and I'm now only on chapter 3 nearly on 4, lol. Haha just realised border-radius is a css property, haha still I didn't know I could do certain backgrounds this way!
  9. Maybe go to photoshop and adjust the size? It will only be good to do this if you have a bigger picture to reduce the size of otherwise it will look distorted. If you don't have photoshop even camera picture edit programs have features that can help you to do this.
  10. The clear both; is the best method to use right? I did it, its now working just as my flash file was.
  11. Ok now I'm having trouble lifting that text up. Text up now, trying to move to the left, but I'm stuck now. Fixed it, thanks, clear: both; helped me to do it with the overflow:hidden I was stuck with the margin-left positioning.
  12. If I do that doesn't work properly and also I put the span in css, but one of the block is marginally to the left of the other blocks. I can sort that out by inputing the span and the css properties individually in each line and adjusting the values, but of course would be easier to have just one line of css properties and all in line.
  13. dsonesuk your suggestions are the most accurate when you know what the user actually wants and I thank you for your time and knowledge its not the first time you got me out of a mess.
  14. Thanks for the swift response, I went to sleep just after writing that and woke up just now, its on my mind lol. I've done it, thank you very much , I actually did it the long way at first and inserted the code myself, but it didn't work so I just copied and pasted your code.With every new piece of coding I find I try to understand it, try to get the gist and feel for it thats why sometimes I just do it the long way. Now with the issue of bullet points, I am thinking maybe change the paragraphs into <li> list and have bullet points with the text, but then I won't be able to change the color of the bullet points themselves.So I want to create bullet poinst myself to go along with the text, you mentioned "just use span styled to be block element, define height:, width: background-color: and float left within paragraph" <span style="display:block; height: 50%; width: 50%; background-color: yellow; float:left;"> so basically something like this, shall I put this within each <p> element?
×
×
  • Create New...